diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..1632129 Binary files /dev/null and b/.DS_Store differ diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml new file mode 100644 index 0000000..b452ea1 --- /dev/null +++ b/.github/workflows/CI.yml @@ -0,0 +1,38 @@ +name: CMake + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + build_Linux: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Adding gtest + run: git clone https://github.com/google/googletest.git third-party/gtest -b release-1.11.0 + + - name: Install lcov + run: sudo apt-get install -y lcov + + - name: Config banking with tests + run: cmake -H. -B ${{github.workspace}}/build -DBUILD_TESTS=ON + + - name: Build banking + run: cmake --build ${{github.workspace}}/build + + - name: Run tests + run: build/check + + - name: Do lcov stuff + run: lcov -c -d build/CMakeFiles/banking.dir/banking/ --include *.cpp --output-file ./coverage/lcov.info + + - name: Publish to coveralls.io + uses: coverallsapp/github-action@v1.1.2 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1c2fda5 --- /dev/null +++ b/.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/.gitmodules b/.gitmodules new file mode 100644 index 0000000..8fb7d98 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "third-party/gtest"] + path = third-party/gtest + url = https://github.com/google/googletest diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..e34b2ef --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,31 @@ +cmake_minimum_required(VERSION 3.4) + +set(CMAKE_CXX_STANDARD 11) +set(CMAKE_CXX_STANDARD_REQUIRED ON) + +#Добавляем опцию BUILD_TESTS. Если она включена, вместе с самой библиотекой собираются тесты +option(BUILD_TESTS "Build tests" OFF) + +if(BUILD_TESTS) # Если надо собрать тесты, добавляем опцию компилятора --coverage, + add_compile_options(--coverage) # которая оставляет после прогонки кода отчёт о покрытии +endif() + +project (banking) + +#Делаем библиотеку banking и добавляем директорию с заголовками +add_library(banking STATIC ${CMAKE_CURRENT_SOURCE_DIR}/banking/Transaction.cpp ${CMAKE_CURRENT_SOURCE_DIR}/banking/Account.cpp) +target_include_directories(banking PUBLIC +${CMAKE_CURRENT_SOURCE_DIR}/banking ) + +#Линкуем к библиотеке gcov - он нужен для отчётов о покрытии +target_link_libraries(banking gcov) + +#Собираем тесты из исходников, лежащих в директории tests +if(BUILD_TESTS) + enable_testing() + add_subdirectory(third-party/gtest) + file(GLOB BANKING_TEST_SOURCES tests/*.cpp) + add_executable(check ${BANKING_TEST_SOURCES}) + target_link_libraries(check banking gtest_main) + add_test(NAME check COMMAND check) +endif() diff --git a/README.md b/README.md index 9d90a25..894dc43 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,10 @@ ## Laboratory work V +[![Coverage Status](https://coveralls.io/repos/github/yourfavoriteself/labor5/badge.svg?branch=main)](https://coveralls.io/github/yourfavoriteself/labor5?branch=main) + + + + Данная лабораторная работа посвещена изучению фреймворков для тестирования на примере **GTest** ```sh diff --git a/_build/CMakeCache.txt b/_build/CMakeCache.txt new file mode 100644 index 0000000..9fdcf0d --- /dev/null +++ b/_build/CMakeCache.txt @@ -0,0 +1,566 @@ +# This is the CMakeCache file. +# For build in directory: /Users/ksenia55/labor5/_build +# It was generated by CMake: /usr/local/Cellar/cmake/3.25.2/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 +######################## + +//Build examples +BUILD_EXAMPLES:BOOL=OFF + +//Builds the googlemock subproject +BUILD_GMOCK:BOOL=ON + +//Build tests +BUILD_TESTS:BOOL=ON + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=CMAKE_ADDR2LINE-NOTFOUND + +//Path to a program. +CMAKE_AR:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/ar + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/c++ + +//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:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/cc + +//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=/Users/ksenia55/labor5/_build/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= + +//Path to a program. +CMAKE_INSTALL_NAME_TOOL:FILEPATH=/usr/bin/install_name_tool + +//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=/Library/Developer/CommandLineTools/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//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=/Library/Developer/CommandLineTools/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=CMAKE_OBJCOPY-NOTFOUND + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/objdump + +//Build architectures for OSX +CMAKE_OSX_ARCHITECTURES:STRING= + +//Minimum OS X version to target for deployment (at runtime); newer +// APIs weak linked. Set to empty string for default value. +CMAKE_OSX_DEPLOYMENT_TARGET:STRING=10.15 + +//The product will be built against the headers and libraries located +// inside the indicated SDK. +CMAKE_OSX_SYSROOT:PATH=/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk + +//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=banking + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=1.9.0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=9 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=CMAKE_READELF-NOTFOUND + +//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=/Library/Developer/CommandLineTools/usr/bin/strip + +//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 + +//Enable installation of googletest. (Projects embedding googletest +// may want to turn this OFF.) +INSTALL_GTEST:BOOL=ON + +//Path to a program. +PYTHON_EXECUTABLE:FILEPATH=/usr/bin/python + +//Value Computed by CMake +banking_BINARY_DIR:STATIC=/Users/ksenia55/labor5/_build + +//Value Computed by CMake +banking_IS_TOP_LEVEL:STATIC=ON + +//Dependencies for the target +banking_LIB_DEPENDS:STATIC=general;gcov; + +//Value Computed by CMake +banking_SOURCE_DIR:STATIC=/Users/ksenia55/labor5 + +//Value Computed by CMake +gmock_BINARY_DIR:STATIC=/Users/ksenia55/labor5/_build/third-party/gtest/googlemock + +//Value Computed by CMake +gmock_IS_TOP_LEVEL:STATIC=OFF + +//Dependencies for the target +gmock_LIB_DEPENDS:STATIC=general;gtest; + +//Value Computed by CMake +gmock_SOURCE_DIR:STATIC=/Users/ksenia55/labor5/third-party/gtest/googlemock + +//Build all of Google Mock's own tests. +gmock_build_tests:BOOL=OFF + +//Dependencies for the target +gmock_main_LIB_DEPENDS:STATIC=general;gmock; + +//Value Computed by CMake +googletest-distribution_BINARY_DIR:STATIC=/Users/ksenia55/labor5/_build/third-party/gtest + +//Value Computed by CMake +googletest-distribution_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +googletest-distribution_SOURCE_DIR:STATIC=/Users/ksenia55/labor5/third-party/gtest + +//Value Computed by CMake +gtest_BINARY_DIR:STATIC=/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest + +//Value Computed by CMake +gtest_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +gtest_SOURCE_DIR:STATIC=/Users/ksenia55/labor5/third-party/gtest/googletest + +//Build gtest's sample programs. +gtest_build_samples:BOOL=OFF + +//Build all of gtest's own tests. +gtest_build_tests:BOOL=OFF + +//Disable uses of pthreads in gtest. +gtest_disable_pthreads:BOOL=OFF + +//Use shared (DLL) run-time lib even when Google Test is built +// as static lib. +gtest_force_shared_crt:BOOL=OFF + +//Build gtest with internal symbols hidden in shared libraries. +gtest_hide_internal_symbols:BOOL=OFF + +//Dependencies for the target +gtest_main_LIB_DEPENDS:STATIC=general;gtest; + +//Value Computed by CMake +print_BINARY_DIR:STATIC=/Users/ksenia55/labor5/_build + +//Value Computed by CMake +print_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +print_SOURCE_DIR:STATIC=/Users/ksenia55/labor5 + + +######################## +# 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=/Users/ksenia55/labor5/_build +//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=25 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/local/Cellar/cmake/3.25.2/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/local/Cellar/cmake/3.25.2/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/local/Cellar/cmake/3.25.2/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=/usr/local/Cellar/cmake/3.25.2/bin/ccmake +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=MACHO +//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=/Users/ksenia55/labor5 +//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_NAME_TOOL +CMAKE_INSTALL_NAME_TOOL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR +CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR +CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR +CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR +CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR +CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=4 +//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=/usr/local/Cellar/cmake/3.25.2/share/cmake +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding PythonInterp +FIND_PACKAGE_MESSAGE_DETAILS_PythonInterp:INTERNAL=[/usr/bin/python][v2.7.16()] +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +//ADVANCED property for variable: PYTHON_EXECUTABLE +PYTHON_EXECUTABLE-ADVANCED:INTERNAL=1 +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/usr/local +generated_dir:INTERNAL=/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/generated +//ADVANCED property for variable: gmock_build_tests +gmock_build_tests-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: gtest_build_samples +gtest_build_samples-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: gtest_build_tests +gtest_build_tests-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: gtest_disable_pthreads +gtest_disable_pthreads-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: gtest_force_shared_crt +gtest_force_shared_crt-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: gtest_hide_internal_symbols +gtest_hide_internal_symbols-ADVANCED:INTERNAL=1 +targets_export_name:INTERNAL=GTestTargets + diff --git a/_build/CMakeFiles/3.25.2/CMakeCCompiler.cmake b/_build/CMakeFiles/3.25.2/CMakeCCompiler.cmake new file mode 100644 index 0000000..e636fb9 --- /dev/null +++ b/_build/CMakeFiles/3.25.2/CMakeCCompiler.cmake @@ -0,0 +1,72 @@ +set(CMAKE_C_COMPILER "/Library/Developer/CommandLineTools/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "AppleClang") +set(CMAKE_C_COMPILER_VERSION "12.0.0.12000032") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11") +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 "Darwin") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/Library/Developer/CommandLineTools/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "") +set(CMAKE_RANLIB "/Library/Developer/CommandLineTools/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "") +set(CMAKE_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC ) +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 "") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +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 "") +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 "/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include;/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks") diff --git a/_build/CMakeFiles/3.25.2/CMakeCXXCompiler.cmake b/_build/CMakeFiles/3.25.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..702cd72 --- /dev/null +++ b/_build/CMakeFiles/3.25.2/CMakeCXXCompiler.cmake @@ -0,0 +1,83 @@ +set(CMAKE_CXX_COMPILER "/Library/Developer/CommandLineTools/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "AppleClang") +set(CMAKE_CXX_COMPILER_VERSION "12.0.0.12000032") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98") +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") +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 "") + +set(CMAKE_CXX_PLATFORM_ID "Darwin") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "/Library/Developer/CommandLineTools/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "") +set(CMAKE_RANLIB "/Library/Developer/CommandLineTools/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "") +set(CMAKE_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCXX ) +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 "") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +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 "") +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 "/Library/Developer/CommandLineTools/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include;/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks") diff --git a/_build/CMakeFiles/3.25.2/CMakeDetermineCompilerABI_C.bin b/_build/CMakeFiles/3.25.2/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000..fd3c22a Binary files /dev/null and b/_build/CMakeFiles/3.25.2/CMakeDetermineCompilerABI_C.bin differ diff --git a/_build/CMakeFiles/3.25.2/CMakeDetermineCompilerABI_CXX.bin b/_build/CMakeFiles/3.25.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000..1ead2ce Binary files /dev/null and b/_build/CMakeFiles/3.25.2/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/_build/CMakeFiles/3.25.2/CMakeSystem.cmake b/_build/CMakeFiles/3.25.2/CMakeSystem.cmake new file mode 100644 index 0000000..f4feaf1 --- /dev/null +++ b/_build/CMakeFiles/3.25.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Darwin-19.6.0") +set(CMAKE_HOST_SYSTEM_NAME "Darwin") +set(CMAKE_HOST_SYSTEM_VERSION "19.6.0") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Darwin-19.6.0") +set(CMAKE_SYSTEM_NAME "Darwin") +set(CMAKE_SYSTEM_VERSION "19.6.0") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/_build/CMakeFiles/3.25.2/CompilerIdC/CMakeCCompilerId.c b/_build/CMakeFiles/3.25.2/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..a83e378 --- /dev/null +++ b/_build/CMakeFiles/3.25.2/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,868 @@ +#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(1) +# if defined(__LCC__) +# define COMPILER_VERSION_MINOR DEC(__LCC__- 100) +# endif +# 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/_build/CMakeFiles/3.25.2/CompilerIdC/a.out b/_build/CMakeFiles/3.25.2/CompilerIdC/a.out new file mode 100755 index 0000000..90d17a0 Binary files /dev/null and b/_build/CMakeFiles/3.25.2/CompilerIdC/a.out differ diff --git a/_build/CMakeFiles/3.25.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/_build/CMakeFiles/3.25.2/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..c9ba632 --- /dev/null +++ b/_build/CMakeFiles/3.25.2/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,857 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_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(1) +# if defined(__LCC__) +# define COMPILER_VERSION_MINOR DEC(__LCC__- 100) +# endif +# 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/_build/CMakeFiles/3.25.2/CompilerIdCXX/a.out b/_build/CMakeFiles/3.25.2/CompilerIdCXX/a.out new file mode 100755 index 0000000..3b07a75 Binary files /dev/null and b/_build/CMakeFiles/3.25.2/CompilerIdCXX/a.out differ diff --git a/_build/CMakeFiles/CMakeDirectoryInformation.cmake b/_build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..6803666 --- /dev/null +++ b/_build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/ksenia55/labor5") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/ksenia55/labor5/_build") + +# 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/_build/CMakeFiles/CMakeOutput.log b/_build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..028af80 --- /dev/null +++ b/_build/CMakeFiles/CMakeOutput.log @@ -0,0 +1,301 @@ +The system is: Darwin - 19.6.0 - x86_64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /Library/Developer/CommandLineTools/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 AppleClang, found in "/Users/ksenia55/labor5/_build/CMakeFiles/3.25.2/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /Library/Developer/CommandLineTools/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 AppleClang, found in "/Users/ksenia55/labor5/_build/CMakeFiles/3.25.2/CompilerIdCXX/a.out" + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /Users/ksenia55/labor5/_build/CMakeFiles/CMakeScratch/TryCompile-XwTBSu + +Run Build Command(s):/usr/bin/make -f Makefile cmTC_bb3bc/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_bb3bc.dir/build.make CMakeFiles/cmTC_bb3bc.dir/build +Building C object CMakeFiles/cmTC_bb3bc.dir/CMakeCCompilerABI.c.o +/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.15 -v -Wl,-v -MD -MT CMakeFiles/cmTC_bb3bc.dir/CMakeCCompilerABI.c.o -MF CMakeFiles/cmTC_bb3bc.dir/CMakeCCompilerABI.c.o.d -o CMakeFiles/cmTC_bb3bc.dir/CMakeCCompilerABI.c.o -c /usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CMakeCCompilerABI.c +Apple clang version 12.0.0 (clang-1200.0.32.29) +Target: x86_64-apple-darwin19.6.0 +Thread model: posix +InstalledDir: /Library/Developer/CommandLineTools/usr/bin +clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument] + "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mthread-model posix -mframe-pointer=all -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=11.1 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -target-linker-version 609.8 -v -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0 -dependency-file CMakeFiles/cmTC_bb3bc.dir/CMakeCCompilerABI.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_bb3bc.dir/CMakeCCompilerABI.c.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -fdebug-compilation-dir /Users/ksenia55/labor5/_build/CMakeFiles/CMakeScratch/TryCompile-XwTBSu -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fobjc-runtime=macosx-10.15.0 -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_bb3bc.dir/CMakeCCompilerABI.c.o -x c /usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CMakeCCompilerABI.c +clang -cc1 version 12.0.0 (clang-1200.0.32.29) default target x86_64-apple-darwin19.6.0 +ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/local/include" +ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/Library/Frameworks" +#include "..." search starts here: +#include <...> search starts here: + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include + /Library/Developer/CommandLineTools/usr/include + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks (framework directory) +End of search list. +Linking C executable cmTC_bb3bc +/usr/local/Cellar/cmake/3.25.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bb3bc.dir/link.txt --verbose=1 +/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.15 -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_bb3bc.dir/CMakeCCompilerABI.c.o -o cmTC_bb3bc +Apple clang version 12.0.0 (clang-1200.0.32.29) +Target: x86_64-apple-darwin19.6.0 +Thread model: posix +InstalledDir: /Library/Developer/CommandLineTools/usr/bin + "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -platform_version macos 10.15.0 11.1 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -o cmTC_bb3bc -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_bb3bc.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/lib/darwin/libclang_rt.osx.a +@(#)PROGRAM:ld PROJECT:ld64-609.8 +BUILD 15:07:46 Dec 18 2020 +configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em +Library search paths: + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/lib +Framework search paths: + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks/ + + + +Parsed C implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include] + add: [/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include] + add: [/Library/Developer/CommandLineTools/usr/include] + end of search list found + collapse include dir [/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include] + collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include] + collapse include dir [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/usr/include] + implicit include dirs: [/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include;/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include] + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /Users/ksenia55/labor5/_build/CMakeFiles/CMakeScratch/TryCompile-XwTBSu] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/make -f Makefile cmTC_bb3bc/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_bb3bc.dir/build.make CMakeFiles/cmTC_bb3bc.dir/build] + ignore line: [Building C object CMakeFiles/cmTC_bb3bc.dir/CMakeCCompilerABI.c.o] + ignore line: [/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.15 -v -Wl -v -MD -MT CMakeFiles/cmTC_bb3bc.dir/CMakeCCompilerABI.c.o -MF CMakeFiles/cmTC_bb3bc.dir/CMakeCCompilerABI.c.o.d -o CMakeFiles/cmTC_bb3bc.dir/CMakeCCompilerABI.c.o -c /usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CMakeCCompilerABI.c] + ignore line: [Apple clang version 12.0.0 (clang-1200.0.32.29)] + ignore line: [Target: x86_64-apple-darwin19.6.0] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] + ignore line: [clang: warning: -Wl -v: 'linker' input unused [-Wunused-command-line-argument]] + ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mthread-model posix -mframe-pointer=all -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=11.1 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -target-linker-version 609.8 -v -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0 -dependency-file CMakeFiles/cmTC_bb3bc.dir/CMakeCCompilerABI.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_bb3bc.dir/CMakeCCompilerABI.c.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -fdebug-compilation-dir /Users/ksenia55/labor5/_build/CMakeFiles/CMakeScratch/TryCompile-XwTBSu -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fobjc-runtime=macosx-10.15.0 -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_bb3bc.dir/CMakeCCompilerABI.c.o -x c /usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CMakeCCompilerABI.c] + ignore line: [clang -cc1 version 12.0.0 (clang-1200.0.32.29) default target x86_64-apple-darwin19.6.0] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/local/include"] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/Library/Frameworks"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include] + ignore line: [ /Library/Developer/CommandLineTools/usr/include] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks (framework directory)] + ignore line: [End of search list.] + ignore line: [Linking C executable cmTC_bb3bc] + ignore line: [/usr/local/Cellar/cmake/3.25.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bb3bc.dir/link.txt --verbose=1] + ignore line: [/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.15 -Wl -search_paths_first -Wl -headerpad_max_install_names -v -Wl -v CMakeFiles/cmTC_bb3bc.dir/CMakeCCompilerABI.c.o -o cmTC_bb3bc ] + ignore line: [Apple clang version 12.0.0 (clang-1200.0.32.29)] + ignore line: [Target: x86_64-apple-darwin19.6.0] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] + link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -platform_version macos 10.15.0 11.1 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -o cmTC_bb3bc -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_bb3bc.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/lib/darwin/libclang_rt.osx.a] + arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore + arg [-demangle] ==> ignore + arg [-lto_library] ==> ignore, skip following value + arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library + arg [-dynamic] ==> ignore + arg [-arch] ==> ignore + arg [x86_64] ==> ignore + arg [-platform_version] ==> ignore + arg [macos] ==> ignore + arg [10.15.0] ==> ignore + arg [11.1] ==> ignore + arg [-syslibroot] ==> ignore + arg [/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk] ==> ignore + arg [-o] ==> ignore + arg [cmTC_bb3bc] ==> ignore + arg [-search_paths_first] ==> ignore + arg [-headerpad_max_install_names] ==> ignore + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_bb3bc.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lSystem] ==> lib [System] + arg [/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/lib/darwin/libclang_rt.osx.a] + Library search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/lib] + Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks/] + remove lib [System] + remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/lib/darwin/libclang_rt.osx.a] + collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/lib] + collapse framework dir [/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks/] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks] + implicit libs: [] + implicit objs: [] + implicit dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/lib] + implicit fwks: [/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks] + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /Users/ksenia55/labor5/_build/CMakeFiles/CMakeScratch/TryCompile-L1Xb3V + +Run Build Command(s):/usr/bin/make -f Makefile cmTC_c9988/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_c9988.dir/build.make CMakeFiles/cmTC_c9988.dir/build +Building CXX object CMakeFiles/cmTC_c9988.dir/CMakeCXXCompilerABI.cpp.o +/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.15 -v -Wl,-v -MD -MT CMakeFiles/cmTC_c9988.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_c9988.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_c9988.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CMakeCXXCompilerABI.cpp +Apple clang version 12.0.0 (clang-1200.0.32.29) +Target: x86_64-apple-darwin19.6.0 +Thread model: posix +InstalledDir: /Library/Developer/CommandLineTools/usr/bin +clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument] +ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/c++/v1" + "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mthread-model posix -mframe-pointer=all -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=11.1 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -target-linker-version 609.8 -v -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0 -dependency-file CMakeFiles/cmTC_c9988.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_c9988.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -stdlib=libc++ -internal-isystem /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -fdeprecated-macro -fdebug-compilation-dir /Users/ksenia55/labor5/_build/CMakeFiles/CMakeScratch/TryCompile-L1Xb3V -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fobjc-runtime=macosx-10.15.0 -fcxx-exceptions -fexceptions -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_c9988.dir/CMakeCXXCompilerABI.cpp.o -x c++ /usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CMakeCXXCompilerABI.cpp +clang -cc1 version 12.0.0 (clang-1200.0.32.29) default target x86_64-apple-darwin19.6.0 +ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/local/include" +ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/Library/Frameworks" +#include "..." search starts here: +#include <...> search starts here: + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1 + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include + /Library/Developer/CommandLineTools/usr/include + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks (framework directory) +End of search list. +Linking CXX executable cmTC_c9988 +/usr/local/Cellar/cmake/3.25.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c9988.dir/link.txt --verbose=1 +/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.15 -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_c9988.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_c9988 +Apple clang version 12.0.0 (clang-1200.0.32.29) +Target: x86_64-apple-darwin19.6.0 +Thread model: posix +InstalledDir: /Library/Developer/CommandLineTools/usr/bin + "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -platform_version macos 10.15.0 11.1 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -o cmTC_c9988 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_c9988.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/lib/darwin/libclang_rt.osx.a +@(#)PROGRAM:ld PROJECT:ld64-609.8 +BUILD 15:07:46 Dec 18 2020 +configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em +Library search paths: + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/lib +Framework search paths: + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks/ + + + +Parsed CXX implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1] + add: [/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include] + add: [/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include] + add: [/Library/Developer/CommandLineTools/usr/include] + end of search list found + collapse include dir [/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1] ==> [/Library/Developer/CommandLineTools/usr/include/c++/v1] + collapse include dir [/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include] + collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include] + collapse include dir [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/usr/include] + implicit include dirs: [/Library/Developer/CommandLineTools/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include;/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include] + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /Users/ksenia55/labor5/_build/CMakeFiles/CMakeScratch/TryCompile-L1Xb3V] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/make -f Makefile cmTC_c9988/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_c9988.dir/build.make CMakeFiles/cmTC_c9988.dir/build] + ignore line: [Building CXX object CMakeFiles/cmTC_c9988.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.15 -v -Wl -v -MD -MT CMakeFiles/cmTC_c9988.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_c9988.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_c9988.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Apple clang version 12.0.0 (clang-1200.0.32.29)] + ignore line: [Target: x86_64-apple-darwin19.6.0] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] + ignore line: [clang: warning: -Wl -v: 'linker' input unused [-Wunused-command-line-argument]] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/c++/v1"] + ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mthread-model posix -mframe-pointer=all -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=11.1 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -target-linker-version 609.8 -v -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0 -dependency-file CMakeFiles/cmTC_c9988.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_c9988.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -stdlib=libc++ -internal-isystem /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -fdeprecated-macro -fdebug-compilation-dir /Users/ksenia55/labor5/_build/CMakeFiles/CMakeScratch/TryCompile-L1Xb3V -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fobjc-runtime=macosx-10.15.0 -fcxx-exceptions -fexceptions -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_c9988.dir/CMakeCXXCompilerABI.cpp.o -x c++ /usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [clang -cc1 version 12.0.0 (clang-1200.0.32.29) default target x86_64-apple-darwin19.6.0] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/local/include"] + ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/Library/Frameworks"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1] + ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include] + ignore line: [ /Library/Developer/CommandLineTools/usr/include] + ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks (framework directory)] + ignore line: [End of search list.] + ignore line: [Linking CXX executable cmTC_c9988] + ignore line: [/usr/local/Cellar/cmake/3.25.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c9988.dir/link.txt --verbose=1] + ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.15 -Wl -search_paths_first -Wl -headerpad_max_install_names -v -Wl -v CMakeFiles/cmTC_c9988.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_c9988 ] + ignore line: [Apple clang version 12.0.0 (clang-1200.0.32.29)] + ignore line: [Target: x86_64-apple-darwin19.6.0] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] + link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -platform_version macos 10.15.0 11.1 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -o cmTC_c9988 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_c9988.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/lib/darwin/libclang_rt.osx.a] + arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore + arg [-demangle] ==> ignore + arg [-lto_library] ==> ignore, skip following value + arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library + arg [-dynamic] ==> ignore + arg [-arch] ==> ignore + arg [x86_64] ==> ignore + arg [-platform_version] ==> ignore + arg [macos] ==> ignore + arg [10.15.0] ==> ignore + arg [11.1] ==> ignore + arg [-syslibroot] ==> ignore + arg [/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk] ==> ignore + arg [-o] ==> ignore + arg [cmTC_c9988] ==> ignore + arg [-search_paths_first] ==> ignore + arg [-headerpad_max_install_names] ==> ignore + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_c9988.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lc++] ==> lib [c++] + arg [-lSystem] ==> lib [System] + arg [/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/lib/darwin/libclang_rt.osx.a] + Library search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/lib] + Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks/] + remove lib [System] + remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/lib/darwin/libclang_rt.osx.a] + collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/lib] + collapse framework dir [/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks/] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks] + implicit libs: [c++] + implicit objs: [] + implicit dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/lib] + implicit fwks: [/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/System/Library/Frameworks] + + +Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD succeeded with the following output: +Change Dir: /Users/ksenia55/labor5/_build/CMakeFiles/CMakeScratch/TryCompile-gAA106 + +Run Build Command(s):/usr/bin/make -f Makefile cmTC_6e9f7/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_6e9f7.dir/build.make CMakeFiles/cmTC_6e9f7.dir/build +Building C object CMakeFiles/cmTC_6e9f7.dir/src.c.o +/Library/Developer/CommandLineTools/usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.15 -MD -MT CMakeFiles/cmTC_6e9f7.dir/src.c.o -MF CMakeFiles/cmTC_6e9f7.dir/src.c.o.d -o CMakeFiles/cmTC_6e9f7.dir/src.c.o -c /Users/ksenia55/labor5/_build/CMakeFiles/CMakeScratch/TryCompile-gAA106/src.c +Linking C executable cmTC_6e9f7 +/usr/local/Cellar/cmake/3.25.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6e9f7.dir/link.txt --verbose=1 +/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.15 -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_6e9f7.dir/src.c.o -o cmTC_6e9f7 + + +Source file was: +#include + +static void* test_func(void* data) +{ + return data; +} + +int main(void) +{ + pthread_t thread; + pthread_create(&thread, NULL, test_func, NULL); + pthread_detach(thread); + pthread_cancel(thread); + pthread_join(thread, NULL); + pthread_atfork(NULL, NULL, NULL); + pthread_exit(NULL); + + return 0; +} + + diff --git a/_build/CMakeFiles/Export/272ceadb8458515b2ae4b5630a6029cc/print-config-noconfig.cmake b/_build/CMakeFiles/Export/272ceadb8458515b2ae4b5630a6029cc/print-config-noconfig.cmake new file mode 100644 index 0000000..847adf9 --- /dev/null +++ b/_build/CMakeFiles/Export/272ceadb8458515b2ae4b5630a6029cc/print-config-noconfig.cmake @@ -0,0 +1,19 @@ +#---------------------------------------------------------------- +# Generated CMake target import file. +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Import target "print" for configuration "" +set_property(TARGET print APPEND PROPERTY IMPORTED_CONFIGURATIONS NOCONFIG) +set_target_properties(print PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_NOCONFIG "CXX" + IMPORTED_LOCATION_NOCONFIG "${_IMPORT_PREFIX}/lib/libprint.a" + ) + +list(APPEND _cmake_import_check_targets print ) +list(APPEND _cmake_import_check_files_for_print "${_IMPORT_PREFIX}/lib/libprint.a" ) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) diff --git a/_build/CMakeFiles/Export/272ceadb8458515b2ae4b5630a6029cc/print-config.cmake b/_build/CMakeFiles/Export/272ceadb8458515b2ae4b5630a6029cc/print-config.cmake new file mode 100644 index 0000000..ca0d5fb --- /dev/null +++ b/_build/CMakeFiles/Export/272ceadb8458515b2ae4b5630a6029cc/print-config.cmake @@ -0,0 +1,100 @@ +# 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.23) +#---------------------------------------------------------------- +# 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 print) + 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) +if(_IMPORT_PREFIX STREQUAL "/") + set(_IMPORT_PREFIX "") +endif() + +# Create imported target print +add_library(print STATIC IMPORTED) + +set_target_properties(print PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" +) + +# Load information for each installed configuration. +file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/print-config-*.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/_build/CMakeFiles/Makefile.cmake b/_build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..f4a8a1d --- /dev/null +++ b/_build/CMakeFiles/Makefile.cmake @@ -0,0 +1,87 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# 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" + "/Users/ksenia55/labor5/CMakeLists.txt" + "CMakeFiles/3.25.2/CMakeCCompiler.cmake" + "CMakeFiles/3.25.2/CMakeCXXCompiler.cmake" + "CMakeFiles/3.25.2/CMakeSystem.cmake" + "/Users/ksenia55/labor5/third-party/gtest/CMakeLists.txt" + "/Users/ksenia55/labor5/third-party/gtest/googlemock/CMakeLists.txt" + "/Users/ksenia55/labor5/third-party/gtest/googlemock/cmake/gmock.pc.in" + "/Users/ksenia55/labor5/third-party/gtest/googlemock/cmake/gmock_main.pc.in" + "/Users/ksenia55/labor5/third-party/gtest/googletest/CMakeLists.txt" + "/Users/ksenia55/labor5/third-party/gtest/googletest/cmake/Config.cmake.in" + "/Users/ksenia55/labor5/third-party/gtest/googletest/cmake/gtest.pc.in" + "/Users/ksenia55/labor5/third-party/gtest/googletest/cmake/gtest_main.pc.in" + "/Users/ksenia55/labor5/third-party/gtest/googletest/cmake/internal_utils.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/BasicConfigVersion-AnyNewerVersion.cmake.in" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CMakeCInformation.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CMakeCXXInformation.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CMakeDependentOption.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CMakeGenericSystem.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CMakeInitializeConfigs.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CMakeLanguageInformation.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CMakePackageConfigHelpers.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CheckCSourceCompiles.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CheckIncludeFile.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/CheckLibraryExists.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/Compiler/AppleClang-C.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/Compiler/AppleClang-CXX.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/Compiler/Clang.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/Compiler/GNU.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/FindPackageMessage.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/FindPythonInterp.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/FindThreads.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/GNUInstallDirs.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/Internal/CheckSourceCompiles.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/Platform/Apple-AppleClang-C.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/Platform/Apple-AppleClang-CXX.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/Platform/Apple-Clang-C.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/Platform/Apple-Clang-CXX.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/Platform/Apple-Clang.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/Platform/Darwin-Initialize.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/Platform/Darwin.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/Modules/Platform/UnixPaths.cmake" + "/usr/local/Cellar/cmake/3.25.2/share/cmake/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 + "CMakeFiles/CMakeDirectoryInformation.cmake" + "third-party/gtest/CMakeFiles/CMakeDirectoryInformation.cmake" + "third-party/gtest/googlemock/gtest/generated/gmock.pc" + "third-party/gtest/googlemock/gtest/generated/gmock_main.pc" + "third-party/gtest/googlemock/CMakeFiles/CMakeDirectoryInformation.cmake" + "third-party/gtest/googlemock/gtest/generated/GTestConfigVersion.cmake" + "third-party/gtest/googlemock/gtest/generated/GTestConfig.cmake" + "third-party/gtest/googlemock/gtest/generated/gtest.pc" + "third-party/gtest/googlemock/gtest/generated/gtest_main.pc" + "third-party/gtest/googlemock/gtest/CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/banking.dir/DependInfo.cmake" + "CMakeFiles/check.dir/DependInfo.cmake" + "third-party/gtest/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake" + "third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake" + "third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake" + "third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/DependInfo.cmake" + ) diff --git a/_build/CMakeFiles/Makefile2 b/_build/CMakeFiles/Makefile2 new file mode 100644 index 0000000..1fc3900 --- /dev/null +++ b/_build/CMakeFiles/Makefile2 @@ -0,0 +1,300 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# 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 = /usr/local/Cellar/cmake/3.25.2/bin/cmake + +# The command to remove a file. +RM = /usr/local/Cellar/cmake/3.25.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/ksenia55/labor5 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/ksenia55/labor5/_build + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/banking.dir/all +all: CMakeFiles/check.dir/all +all: third-party/gtest/all +.PHONY : all + +# The main recursive "preinstall" target. +preinstall: third-party/gtest/preinstall +.PHONY : preinstall + +# The main recursive "clean" target. +clean: CMakeFiles/banking.dir/clean +clean: CMakeFiles/check.dir/clean +clean: third-party/gtest/clean +.PHONY : clean + +#============================================================================= +# Directory level rules for directory third-party/gtest + +# Recursive "all" directory target. +third-party/gtest/all: third-party/gtest/googlemock/all +.PHONY : third-party/gtest/all + +# Recursive "preinstall" directory target. +third-party/gtest/preinstall: third-party/gtest/googlemock/preinstall +.PHONY : third-party/gtest/preinstall + +# Recursive "clean" directory target. +third-party/gtest/clean: third-party/gtest/googlemock/clean +.PHONY : third-party/gtest/clean + +#============================================================================= +# Directory level rules for directory third-party/gtest/googlemock + +# Recursive "all" directory target. +third-party/gtest/googlemock/all: third-party/gtest/googlemock/CMakeFiles/gmock.dir/all +third-party/gtest/googlemock/all: third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/all +third-party/gtest/googlemock/all: third-party/gtest/googlemock/gtest/all +.PHONY : third-party/gtest/googlemock/all + +# Recursive "preinstall" directory target. +third-party/gtest/googlemock/preinstall: third-party/gtest/googlemock/gtest/preinstall +.PHONY : third-party/gtest/googlemock/preinstall + +# Recursive "clean" directory target. +third-party/gtest/googlemock/clean: third-party/gtest/googlemock/CMakeFiles/gmock.dir/clean +third-party/gtest/googlemock/clean: third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/clean +third-party/gtest/googlemock/clean: third-party/gtest/googlemock/gtest/clean +.PHONY : third-party/gtest/googlemock/clean + +#============================================================================= +# Directory level rules for directory third-party/gtest/googlemock/gtest + +# Recursive "all" directory target. +third-party/gtest/googlemock/gtest/all: third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/all +third-party/gtest/googlemock/gtest/all: third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/all +.PHONY : third-party/gtest/googlemock/gtest/all + +# Recursive "preinstall" directory target. +third-party/gtest/googlemock/gtest/preinstall: +.PHONY : third-party/gtest/googlemock/gtest/preinstall + +# Recursive "clean" directory target. +third-party/gtest/googlemock/gtest/clean: third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/clean +third-party/gtest/googlemock/gtest/clean: third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/clean +.PHONY : third-party/gtest/googlemock/gtest/clean + +#============================================================================= +# Target rules for target CMakeFiles/banking.dir + +# All Build rule for target. +CMakeFiles/banking.dir/all: + $(MAKE) $(MAKESILENT) -f CMakeFiles/banking.dir/build.make CMakeFiles/banking.dir/depend + $(MAKE) $(MAKESILENT) -f CMakeFiles/banking.dir/build.make CMakeFiles/banking.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=1,2,3 "Built target banking" +.PHONY : CMakeFiles/banking.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/banking.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/ksenia55/labor5/_build/CMakeFiles 3 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/banking.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/ksenia55/labor5/_build/CMakeFiles 0 +.PHONY : CMakeFiles/banking.dir/rule + +# Convenience name for target. +banking: CMakeFiles/banking.dir/rule +.PHONY : banking + +# clean rule for target. +CMakeFiles/banking.dir/clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/banking.dir/build.make CMakeFiles/banking.dir/clean +.PHONY : CMakeFiles/banking.dir/clean + +#============================================================================= +# Target rules for target CMakeFiles/check.dir + +# All Build rule for target. +CMakeFiles/check.dir/all: CMakeFiles/banking.dir/all +CMakeFiles/check.dir/all: third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/all +CMakeFiles/check.dir/all: third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.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=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=4,5,6 "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 /Users/ksenia55/labor5/_build/CMakeFiles 10 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/check.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/ksenia55/labor5/_build/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 third-party/gtest/googlemock/CMakeFiles/gmock.dir + +# All Build rule for target. +third-party/gtest/googlemock/CMakeFiles/gmock.dir/all: third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/all + $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/CMakeFiles/gmock.dir/build.make third-party/gtest/googlemock/CMakeFiles/gmock.dir/depend + $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/CMakeFiles/gmock.dir/build.make third-party/gtest/googlemock/CMakeFiles/gmock.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=7,8 "Built target gmock" +.PHONY : third-party/gtest/googlemock/CMakeFiles/gmock.dir/all + +# Build rule for subdir invocation for target. +third-party/gtest/googlemock/CMakeFiles/gmock.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/ksenia55/labor5/_build/CMakeFiles 4 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 third-party/gtest/googlemock/CMakeFiles/gmock.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/ksenia55/labor5/_build/CMakeFiles 0 +.PHONY : third-party/gtest/googlemock/CMakeFiles/gmock.dir/rule + +# Convenience name for target. +gmock: third-party/gtest/googlemock/CMakeFiles/gmock.dir/rule +.PHONY : gmock + +# clean rule for target. +third-party/gtest/googlemock/CMakeFiles/gmock.dir/clean: + $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/CMakeFiles/gmock.dir/build.make third-party/gtest/googlemock/CMakeFiles/gmock.dir/clean +.PHONY : third-party/gtest/googlemock/CMakeFiles/gmock.dir/clean + +#============================================================================= +# Target rules for target third-party/gtest/googlemock/CMakeFiles/gmock_main.dir + +# All Build rule for target. +third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/all: third-party/gtest/googlemock/CMakeFiles/gmock.dir/all +third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/all: third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/all + $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/build.make third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/depend + $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/build.make third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=9,10 "Built target gmock_main" +.PHONY : third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/all + +# Build rule for subdir invocation for target. +third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/ksenia55/labor5/_build/CMakeFiles 6 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/ksenia55/labor5/_build/CMakeFiles 0 +.PHONY : third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/rule + +# Convenience name for target. +gmock_main: third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/rule +.PHONY : gmock_main + +# clean rule for target. +third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/clean: + $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/build.make third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/clean +.PHONY : third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/clean + +#============================================================================= +# Target rules for target third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir + +# All Build rule for target. +third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/all: + $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend + $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=11,12 "Built target gtest" +.PHONY : third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/all + +# Build rule for subdir invocation for target. +third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/ksenia55/labor5/_build/CMakeFiles 2 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/ksenia55/labor5/_build/CMakeFiles 0 +.PHONY : third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule + +# Convenience name for target. +gtest: third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule +.PHONY : gtest + +# clean rule for target. +third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/clean: + $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/clean +.PHONY : third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/clean + +#============================================================================= +# Target rules for target third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir + +# All Build rule for target. +third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/all: third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/all + $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend + $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=13,14 "Built target gtest_main" +.PHONY : third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/all + +# Build rule for subdir invocation for target. +third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /Users/ksenia55/labor5/_build/CMakeFiles 4 + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/ksenia55/labor5/_build/CMakeFiles 0 +.PHONY : third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule + +# Convenience name for target. +gtest_main: third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule +.PHONY : gtest_main + +# clean rule for target. +third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/clean: + $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/clean +.PHONY : third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.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/_build/CMakeFiles/Progress/1 b/_build/CMakeFiles/Progress/1 new file mode 100644 index 0000000..7b4d68d --- /dev/null +++ b/_build/CMakeFiles/Progress/1 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/_build/CMakeFiles/Progress/11 b/_build/CMakeFiles/Progress/11 new file mode 100644 index 0000000..7b4d68d --- /dev/null +++ b/_build/CMakeFiles/Progress/11 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/_build/CMakeFiles/Progress/12 b/_build/CMakeFiles/Progress/12 new file mode 100644 index 0000000..7b4d68d --- /dev/null +++ b/_build/CMakeFiles/Progress/12 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/_build/CMakeFiles/Progress/13 b/_build/CMakeFiles/Progress/13 new file mode 100644 index 0000000..7b4d68d --- /dev/null +++ b/_build/CMakeFiles/Progress/13 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/_build/CMakeFiles/Progress/14 b/_build/CMakeFiles/Progress/14 new file mode 100644 index 0000000..7b4d68d --- /dev/null +++ b/_build/CMakeFiles/Progress/14 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/_build/CMakeFiles/Progress/2 b/_build/CMakeFiles/Progress/2 new file mode 100644 index 0000000..7b4d68d --- /dev/null +++ b/_build/CMakeFiles/Progress/2 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/_build/CMakeFiles/Progress/3 b/_build/CMakeFiles/Progress/3 new file mode 100644 index 0000000..7b4d68d --- /dev/null +++ b/_build/CMakeFiles/Progress/3 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/_build/CMakeFiles/Progress/6 b/_build/CMakeFiles/Progress/6 new file mode 100644 index 0000000..7b4d68d --- /dev/null +++ b/_build/CMakeFiles/Progress/6 @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/_build/CMakeFiles/Progress/count.txt b/_build/CMakeFiles/Progress/count.txt new file mode 100644 index 0000000..8351c19 --- /dev/null +++ b/_build/CMakeFiles/Progress/count.txt @@ -0,0 +1 @@ +14 diff --git a/_build/CMakeFiles/TargetDirectories.txt b/_build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..72c3dde --- /dev/null +++ b/_build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,34 @@ +/Users/ksenia55/labor5/_build/CMakeFiles/banking.dir +/Users/ksenia55/labor5/_build/CMakeFiles/check.dir +/Users/ksenia55/labor5/_build/CMakeFiles/test.dir +/Users/ksenia55/labor5/_build/CMakeFiles/edit_cache.dir +/Users/ksenia55/labor5/_build/CMakeFiles/rebuild_cache.dir +/Users/ksenia55/labor5/_build/CMakeFiles/list_install_components.dir +/Users/ksenia55/labor5/_build/CMakeFiles/install.dir +/Users/ksenia55/labor5/_build/CMakeFiles/install/local.dir +/Users/ksenia55/labor5/_build/CMakeFiles/install/strip.dir +/Users/ksenia55/labor5/_build/third-party/gtest/CMakeFiles/test.dir +/Users/ksenia55/labor5/_build/third-party/gtest/CMakeFiles/edit_cache.dir +/Users/ksenia55/labor5/_build/third-party/gtest/CMakeFiles/rebuild_cache.dir +/Users/ksenia55/labor5/_build/third-party/gtest/CMakeFiles/list_install_components.dir +/Users/ksenia55/labor5/_build/third-party/gtest/CMakeFiles/install.dir +/Users/ksenia55/labor5/_build/third-party/gtest/CMakeFiles/install/local.dir +/Users/ksenia55/labor5/_build/third-party/gtest/CMakeFiles/install/strip.dir +/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir +/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir +/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/CMakeFiles/test.dir +/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/CMakeFiles/edit_cache.dir +/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/CMakeFiles/rebuild_cache.dir +/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/CMakeFiles/list_install_components.dir +/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/CMakeFiles/install.dir +/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/CMakeFiles/install/local.dir +/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/CMakeFiles/install/strip.dir +/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir +/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir +/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/CMakeFiles/test.dir +/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/CMakeFiles/edit_cache.dir +/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/CMakeFiles/rebuild_cache.dir +/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/CMakeFiles/list_install_components.dir +/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/CMakeFiles/install.dir +/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/CMakeFiles/install/local.dir +/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/CMakeFiles/install/strip.dir diff --git a/_build/CMakeFiles/banking.dir/DependInfo.cmake b/_build/CMakeFiles/banking.dir/DependInfo.cmake new file mode 100644 index 0000000..71fa01f --- /dev/null +++ b/_build/CMakeFiles/banking.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# 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 + "/Users/ksenia55/labor5/banking/Account.cpp" "CMakeFiles/banking.dir/banking/Account.cpp.o" "gcc" "CMakeFiles/banking.dir/banking/Account.cpp.o.d" + "/Users/ksenia55/labor5/banking/Transaction.cpp" "CMakeFiles/banking.dir/banking/Transaction.cpp.o" "gcc" "CMakeFiles/banking.dir/banking/Transaction.cpp.o.d" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/_build/CMakeFiles/banking.dir/banking/Account.cpp.gcno b/_build/CMakeFiles/banking.dir/banking/Account.cpp.gcno new file mode 100644 index 0000000..c940ae0 Binary files /dev/null and b/_build/CMakeFiles/banking.dir/banking/Account.cpp.gcno differ diff --git a/_build/CMakeFiles/banking.dir/banking/Account.cpp.o b/_build/CMakeFiles/banking.dir/banking/Account.cpp.o new file mode 100644 index 0000000..d650bec Binary files /dev/null and b/_build/CMakeFiles/banking.dir/banking/Account.cpp.o differ diff --git a/_build/CMakeFiles/banking.dir/banking/Account.cpp.o.d b/_build/CMakeFiles/banking.dir/banking/Account.cpp.o.d new file mode 100644 index 0000000..cd3961f --- /dev/null +++ b/_build/CMakeFiles/banking.dir/banking/Account.cpp.o.d @@ -0,0 +1,109 @@ +CMakeFiles/banking.dir/banking/Account.cpp.o: \ + /Users/ksenia55/labor5/banking/Account.cpp \ + /Users/ksenia55/labor5/banking/Account.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdexcept \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__config \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/exception \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstddef \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__cxx_version \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__nullptr \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstdlib \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdint.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/math.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/type_traits \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/limits \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__undef_macros \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iosfwd \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h diff --git a/_build/CMakeFiles/banking.dir/banking/Transaction.cpp.gcno b/_build/CMakeFiles/banking.dir/banking/Transaction.cpp.gcno new file mode 100644 index 0000000..6feecf7 Binary files /dev/null and b/_build/CMakeFiles/banking.dir/banking/Transaction.cpp.gcno differ diff --git a/_build/CMakeFiles/banking.dir/banking/Transaction.cpp.o b/_build/CMakeFiles/banking.dir/banking/Transaction.cpp.o new file mode 100644 index 0000000..9f72efd Binary files /dev/null and b/_build/CMakeFiles/banking.dir/banking/Transaction.cpp.o differ diff --git a/_build/CMakeFiles/banking.dir/banking/Transaction.cpp.o.d b/_build/CMakeFiles/banking.dir/banking/Transaction.cpp.o.d new file mode 100644 index 0000000..6a8d806 --- /dev/null +++ b/_build/CMakeFiles/banking.dir/banking/Transaction.cpp.o.d @@ -0,0 +1,229 @@ +CMakeFiles/banking.dir/banking/Transaction.cpp.o: \ + /Users/ksenia55/labor5/banking/Transaction.cpp \ + /Users/ksenia55/labor5/banking/Transaction.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cassert \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__config \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/assert.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdint.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/math.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/type_traits \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstddef \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__cxx_version \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__nullptr \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/limits \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__undef_macros \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iostream \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ios \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iosfwd \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__locale \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/string \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/string_view \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__string \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/algorithm \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/initializer_list \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstring \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rsize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_errno_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/strings.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/utility \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__tuple \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstdint \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__debug \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/memory \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/typeinfo \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/exception \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstdlib \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/new \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iterator \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__functional_base \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/tuple \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdexcept \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/atomic \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/functional \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/bit \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstdio \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cwchar \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cwctype \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cctype \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctrans_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/mutex \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__mutex_base \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/chrono \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ctime \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ratio \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/climits \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/limits.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/syslimits.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/system_error \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__errc \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cerrno \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/errno.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__threading_support \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/sched.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/pthread_impl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sched.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wchar.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stddef.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wctype.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/streambuf \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/istream \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ostream \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/locale \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/nl_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_char.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_short.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_caddr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blksize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_gid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_nlink_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_useconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_def.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_clr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_zero.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_isset.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_nl_item.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__bsd_locale_defaults.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/bitset \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__bit_reference \ + /Users/ksenia55/labor5/banking/Account.h diff --git a/_build/CMakeFiles/banking.dir/build.make b/_build/CMakeFiles/banking.dir/build.make new file mode 100644 index 0000000..b5c2a22 --- /dev/null +++ b/_build/CMakeFiles/banking.dir/build.make @@ -0,0 +1,127 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# 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 = /usr/local/Cellar/cmake/3.25.2/bin/cmake + +# The command to remove a file. +RM = /usr/local/Cellar/cmake/3.25.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/ksenia55/labor5 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/ksenia55/labor5/_build + +# Include any dependencies generated for this target. +include CMakeFiles/banking.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/banking.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/banking.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/banking.dir/flags.make + +CMakeFiles/banking.dir/banking/Transaction.cpp.o: CMakeFiles/banking.dir/flags.make +CMakeFiles/banking.dir/banking/Transaction.cpp.o: /Users/ksenia55/labor5/banking/Transaction.cpp +CMakeFiles/banking.dir/banking/Transaction.cpp.o: CMakeFiles/banking.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/banking.dir/banking/Transaction.cpp.o" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/banking.dir/banking/Transaction.cpp.o -MF CMakeFiles/banking.dir/banking/Transaction.cpp.o.d -o CMakeFiles/banking.dir/banking/Transaction.cpp.o -c /Users/ksenia55/labor5/banking/Transaction.cpp + +CMakeFiles/banking.dir/banking/Transaction.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/banking.dir/banking/Transaction.cpp.i" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/ksenia55/labor5/banking/Transaction.cpp > CMakeFiles/banking.dir/banking/Transaction.cpp.i + +CMakeFiles/banking.dir/banking/Transaction.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/banking.dir/banking/Transaction.cpp.s" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/ksenia55/labor5/banking/Transaction.cpp -o CMakeFiles/banking.dir/banking/Transaction.cpp.s + +CMakeFiles/banking.dir/banking/Account.cpp.o: CMakeFiles/banking.dir/flags.make +CMakeFiles/banking.dir/banking/Account.cpp.o: /Users/ksenia55/labor5/banking/Account.cpp +CMakeFiles/banking.dir/banking/Account.cpp.o: CMakeFiles/banking.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/banking.dir/banking/Account.cpp.o" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/banking.dir/banking/Account.cpp.o -MF CMakeFiles/banking.dir/banking/Account.cpp.o.d -o CMakeFiles/banking.dir/banking/Account.cpp.o -c /Users/ksenia55/labor5/banking/Account.cpp + +CMakeFiles/banking.dir/banking/Account.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/banking.dir/banking/Account.cpp.i" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/ksenia55/labor5/banking/Account.cpp > CMakeFiles/banking.dir/banking/Account.cpp.i + +CMakeFiles/banking.dir/banking/Account.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/banking.dir/banking/Account.cpp.s" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/ksenia55/labor5/banking/Account.cpp -o CMakeFiles/banking.dir/banking/Account.cpp.s + +# Object files for target banking +banking_OBJECTS = \ +"CMakeFiles/banking.dir/banking/Transaction.cpp.o" \ +"CMakeFiles/banking.dir/banking/Account.cpp.o" + +# External object files for target banking +banking_EXTERNAL_OBJECTS = + +libbanking.a: CMakeFiles/banking.dir/banking/Transaction.cpp.o +libbanking.a: CMakeFiles/banking.dir/banking/Account.cpp.o +libbanking.a: CMakeFiles/banking.dir/build.make +libbanking.a: CMakeFiles/banking.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX static library libbanking.a" + $(CMAKE_COMMAND) -P CMakeFiles/banking.dir/cmake_clean_target.cmake + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/banking.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/banking.dir/build: libbanking.a +.PHONY : CMakeFiles/banking.dir/build + +CMakeFiles/banking.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/banking.dir/cmake_clean.cmake +.PHONY : CMakeFiles/banking.dir/clean + +CMakeFiles/banking.dir/depend: + cd /Users/ksenia55/labor5/_build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/ksenia55/labor5 /Users/ksenia55/labor5 /Users/ksenia55/labor5/_build /Users/ksenia55/labor5/_build /Users/ksenia55/labor5/_build/CMakeFiles/banking.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/banking.dir/depend + diff --git a/_build/CMakeFiles/banking.dir/cmake_clean.cmake b/_build/CMakeFiles/banking.dir/cmake_clean.cmake new file mode 100644 index 0000000..6107346 --- /dev/null +++ b/_build/CMakeFiles/banking.dir/cmake_clean.cmake @@ -0,0 +1,13 @@ +file(REMOVE_RECURSE + "CMakeFiles/banking.dir/banking/Account.cpp.o" + "CMakeFiles/banking.dir/banking/Account.cpp.o.d" + "CMakeFiles/banking.dir/banking/Transaction.cpp.o" + "CMakeFiles/banking.dir/banking/Transaction.cpp.o.d" + "libbanking.a" + "libbanking.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/banking.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/_build/CMakeFiles/banking.dir/cmake_clean_target.cmake b/_build/CMakeFiles/banking.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..a6be140 --- /dev/null +++ b/_build/CMakeFiles/banking.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libbanking.a" +) diff --git a/_build/CMakeFiles/banking.dir/compiler_depend.internal b/_build/CMakeFiles/banking.dir/compiler_depend.internal new file mode 100644 index 0000000..4401f8b --- /dev/null +++ b/_build/CMakeFiles/banking.dir/compiler_depend.internal @@ -0,0 +1,343 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +CMakeFiles/banking.dir/banking/Account.cpp.o + /Users/ksenia55/labor5/banking/Account.cpp + /Users/ksenia55/labor5/banking/Account.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdexcept + /Library/Developer/CommandLineTools/usr/include/c++/v1/__config + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/exception + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstddef + /Library/Developer/CommandLineTools/usr/include/c++/v1/__cxx_version + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__nullptr + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdlib + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdint.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/math.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/type_traits + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits + /Library/Developer/CommandLineTools/usr/include/c++/v1/__undef_macros + /Library/Developer/CommandLineTools/usr/include/c++/v1/iosfwd + /Library/Developer/CommandLineTools/usr/include/c++/v1/wchar.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h + +CMakeFiles/banking.dir/banking/Transaction.cpp.o + /Users/ksenia55/labor5/banking/Transaction.cpp + /Users/ksenia55/labor5/banking/Transaction.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/cassert + /Library/Developer/CommandLineTools/usr/include/c++/v1/__config + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/assert.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdint.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/math.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/type_traits + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstddef + /Library/Developer/CommandLineTools/usr/include/c++/v1/__cxx_version + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__nullptr + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits + /Library/Developer/CommandLineTools/usr/include/c++/v1/__undef_macros + /Library/Developer/CommandLineTools/usr/include/c++/v1/iostream + /Library/Developer/CommandLineTools/usr/include/c++/v1/ios + /Library/Developer/CommandLineTools/usr/include/c++/v1/iosfwd + /Library/Developer/CommandLineTools/usr/include/c++/v1/wchar.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__locale + /Library/Developer/CommandLineTools/usr/include/c++/v1/string + /Library/Developer/CommandLineTools/usr/include/c++/v1/string_view + /Library/Developer/CommandLineTools/usr/include/c++/v1/__string + /Library/Developer/CommandLineTools/usr/include/c++/v1/algorithm + /Library/Developer/CommandLineTools/usr/include/c++/v1/initializer_list + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstring + /Library/Developer/CommandLineTools/usr/include/c++/v1/string.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/string.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rsize_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_errno_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/strings.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/utility + /Library/Developer/CommandLineTools/usr/include/c++/v1/__tuple + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdint + /Library/Developer/CommandLineTools/usr/include/c++/v1/__debug + /Library/Developer/CommandLineTools/usr/include/c++/v1/memory + /Library/Developer/CommandLineTools/usr/include/c++/v1/typeinfo + /Library/Developer/CommandLineTools/usr/include/c++/v1/exception + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdlib + /Library/Developer/CommandLineTools/usr/include/c++/v1/new + /Library/Developer/CommandLineTools/usr/include/c++/v1/iterator + /Library/Developer/CommandLineTools/usr/include/c++/v1/__functional_base + /Library/Developer/CommandLineTools/usr/include/c++/v1/tuple + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdexcept + /Library/Developer/CommandLineTools/usr/include/c++/v1/atomic + /Library/Developer/CommandLineTools/usr/include/c++/v1/functional + /Library/Developer/CommandLineTools/usr/include/c++/v1/bit + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdio + /Library/Developer/CommandLineTools/usr/include/c++/v1/cwchar + /Library/Developer/CommandLineTools/usr/include/c++/v1/cwctype + /Library/Developer/CommandLineTools/usr/include/c++/v1/cctype + /Library/Developer/CommandLineTools/usr/include/c++/v1/wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctrans_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/mutex + /Library/Developer/CommandLineTools/usr/include/c++/v1/__mutex_base + /Library/Developer/CommandLineTools/usr/include/c++/v1/chrono + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctime + /Library/Developer/CommandLineTools/usr/include/c++/v1/ratio + /Library/Developer/CommandLineTools/usr/include/c++/v1/climits + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/syslimits.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/system_error + /Library/Developer/CommandLineTools/usr/include/c++/v1/__errc + /Library/Developer/CommandLineTools/usr/include/c++/v1/cerrno + /Library/Developer/CommandLineTools/usr/include/c++/v1/errno.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/errno.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/errno.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__threading_support + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/sched.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/pthread_impl.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/qos.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/qos.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mach_port_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sched.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/locale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/locale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_locale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_xlocale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/__wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdlib.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_string.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_time.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wchar.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/stddef.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wctype.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/streambuf + /Library/Developer/CommandLineTools/usr/include/c++/v1/istream + /Library/Developer/CommandLineTools/usr/include/c++/v1/ostream + /Library/Developer/CommandLineTools/usr/include/c++/v1/locale + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/nl_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_char.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_short.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_caddr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blkcnt_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blksize_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_gid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_addr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_port_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_key_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_nlink_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_useconds_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_suseconds_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_def.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_setsize.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_set.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_clr.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_zero.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_isset.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_copy.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_nl_item.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__bsd_locale_defaults.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/bitset + /Library/Developer/CommandLineTools/usr/include/c++/v1/__bit_reference + /Users/ksenia55/labor5/banking/Account.h + diff --git a/_build/CMakeFiles/banking.dir/compiler_depend.make b/_build/CMakeFiles/banking.dir/compiler_depend.make new file mode 100644 index 0000000..7515a65 --- /dev/null +++ b/_build/CMakeFiles/banking.dir/compiler_depend.make @@ -0,0 +1,799 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +CMakeFiles/banking.dir/banking/Account.cpp.o: /Users/ksenia55/labor5/banking/Account.cpp \ + /Users/ksenia55/labor5/banking/Account.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdexcept \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__config \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/exception \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstddef \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__cxx_version \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__nullptr \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdlib \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdint.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/math.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/type_traits \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__undef_macros \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/iosfwd \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h + +CMakeFiles/banking.dir/banking/Transaction.cpp.o: /Users/ksenia55/labor5/banking/Transaction.cpp \ + /Users/ksenia55/labor5/banking/Transaction.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cassert \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__config \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/assert.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdint.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/math.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/type_traits \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstddef \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__cxx_version \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__nullptr \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__undef_macros \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/iostream \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ios \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/iosfwd \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__locale \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/string \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/string_view \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__string \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/algorithm \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/initializer_list \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstring \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rsize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_errno_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/strings.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/utility \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__tuple \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdint \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__debug \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/memory \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/typeinfo \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/exception \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdlib \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/new \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/iterator \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__functional_base \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/tuple \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdexcept \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/atomic \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/functional \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/bit \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdio \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cwchar \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cwctype \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cctype \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctrans_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/mutex \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__mutex_base \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/chrono \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctime \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ratio \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/climits \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/syslimits.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/system_error \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__errc \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cerrno \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/errno.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__threading_support \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/sched.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/pthread_impl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sched.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wchar.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stddef.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wctype.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/streambuf \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/istream \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ostream \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/locale \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/nl_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_char.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_short.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_caddr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blksize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_gid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_nlink_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_useconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_def.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_clr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_zero.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_isset.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_nl_item.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__bsd_locale_defaults.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/bitset \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__bit_reference \ + /Users/ksenia55/labor5/banking/Account.h + + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__bit_reference: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/bitset: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_copy.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_zero.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_clr.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_set.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_setsize.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_def.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_useconds_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_nlink_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_key_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino64_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_addr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blkcnt_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_caddr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_char.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_nl_item.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/nl_types.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/locale: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/ostream: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/streambuf: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stddef.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_string.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_ctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sched.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/locale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mach_port_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_locale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/qos.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/pthread_impl.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__threading_support: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/ratio: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/errno.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/qos.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cerrno: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/functional: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/system_error: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/chrono: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_limits.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stdexcept: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/limits.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/climits: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__mutex_base: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/mutex: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cctype: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cwctype: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cwchar: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/atomic: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__functional_base: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/new: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/bit: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/memory: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cstdint: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cstring: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__tuple: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/utility: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/strings.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rsize_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctrans_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/string.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/initializer_list: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/string.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/syslimits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/algorithm: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__string: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/ios: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/iostream: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/tuple: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__locale: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/assert.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__bsd_locale_defaults.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/ctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_errno_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_xlocale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/typeinfo: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cassert: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_time.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stdio.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/limits: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stdint.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/wchar.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__undef_macros: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/iosfwd: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_suseconds_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__errc: + +/Users/ksenia55/labor5/banking/Transaction.cpp: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/sched.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/type_traits: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cstdio: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__debug: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdlib.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/istream: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h: + +/Users/ksenia55/labor5/banking/Account.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/errno.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__config: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/iterator: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_isset.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/locale.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/wctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wchar.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_short.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h: + +/Users/ksenia55/labor5/banking/Transaction.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/exception: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/errno.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blksize_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cstddef: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h: + +/Users/ksenia55/labor5/banking/Account.cpp: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_gid_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cstdlib: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/string_view: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wctype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/ctime: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/string: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_port_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__cxx_version: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/__wctype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__nullptr: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h: diff --git a/_build/CMakeFiles/banking.dir/compiler_depend.ts b/_build/CMakeFiles/banking.dir/compiler_depend.ts new file mode 100644 index 0000000..f14c58f --- /dev/null +++ b/_build/CMakeFiles/banking.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for banking. diff --git a/_build/CMakeFiles/banking.dir/depend.make b/_build/CMakeFiles/banking.dir/depend.make new file mode 100644 index 0000000..03c51a5 --- /dev/null +++ b/_build/CMakeFiles/banking.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for banking. +# This may be replaced when dependencies are built. diff --git a/_build/CMakeFiles/banking.dir/flags.make b/_build/CMakeFiles/banking.dir/flags.make new file mode 100644 index 0000000..f6befbb --- /dev/null +++ b/_build/CMakeFiles/banking.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/Users/ksenia55/labor5/banking + +CXX_FLAGS = -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.15 --coverage -std=gnu++11 + diff --git a/_build/CMakeFiles/banking.dir/link.txt b/_build/CMakeFiles/banking.dir/link.txt new file mode 100644 index 0000000..01aed0d --- /dev/null +++ b/_build/CMakeFiles/banking.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libbanking.a CMakeFiles/banking.dir/banking/Transaction.cpp.o CMakeFiles/banking.dir/banking/Account.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libbanking.a diff --git a/_build/CMakeFiles/banking.dir/progress.make b/_build/CMakeFiles/banking.dir/progress.make new file mode 100644 index 0000000..6a9dc74 --- /dev/null +++ b/_build/CMakeFiles/banking.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 + diff --git a/_build/CMakeFiles/check.dir/DependInfo.cmake b/_build/CMakeFiles/check.dir/DependInfo.cmake new file mode 100644 index 0000000..849ba9b --- /dev/null +++ b/_build/CMakeFiles/check.dir/DependInfo.cmake @@ -0,0 +1,23 @@ + +# 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 + "/Users/ksenia55/labor5/tests/test_Account.cpp" "CMakeFiles/check.dir/tests/test_Account.cpp.o" "gcc" "CMakeFiles/check.dir/tests/test_Account.cpp.o.d" + "/Users/ksenia55/labor5/tests/test_Transaction.cpp" "CMakeFiles/check.dir/tests/test_Transaction.cpp.o" "gcc" "CMakeFiles/check.dir/tests/test_Transaction.cpp.o.d" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + "/Users/ksenia55/labor5/_build/CMakeFiles/banking.dir/DependInfo.cmake" + "/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/DependInfo.cmake" + "/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake" + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/_build/CMakeFiles/check.dir/build.make b/_build/CMakeFiles/check.dir/build.make new file mode 100644 index 0000000..889bc5e --- /dev/null +++ b/_build/CMakeFiles/check.dir/build.make @@ -0,0 +1,129 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# 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 = /usr/local/Cellar/cmake/3.25.2/bin/cmake + +# The command to remove a file. +RM = /usr/local/Cellar/cmake/3.25.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/ksenia55/labor5 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/ksenia55/labor5/_build + +# Include any dependencies generated for this target. +include CMakeFiles/check.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/check.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/check.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/check.dir/flags.make + +CMakeFiles/check.dir/tests/test_Account.cpp.o: CMakeFiles/check.dir/flags.make +CMakeFiles/check.dir/tests/test_Account.cpp.o: /Users/ksenia55/labor5/tests/test_Account.cpp +CMakeFiles/check.dir/tests/test_Account.cpp.o: CMakeFiles/check.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/check.dir/tests/test_Account.cpp.o" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/check.dir/tests/test_Account.cpp.o -MF CMakeFiles/check.dir/tests/test_Account.cpp.o.d -o CMakeFiles/check.dir/tests/test_Account.cpp.o -c /Users/ksenia55/labor5/tests/test_Account.cpp + +CMakeFiles/check.dir/tests/test_Account.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/check.dir/tests/test_Account.cpp.i" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/ksenia55/labor5/tests/test_Account.cpp > CMakeFiles/check.dir/tests/test_Account.cpp.i + +CMakeFiles/check.dir/tests/test_Account.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/check.dir/tests/test_Account.cpp.s" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/ksenia55/labor5/tests/test_Account.cpp -o CMakeFiles/check.dir/tests/test_Account.cpp.s + +CMakeFiles/check.dir/tests/test_Transaction.cpp.o: CMakeFiles/check.dir/flags.make +CMakeFiles/check.dir/tests/test_Transaction.cpp.o: /Users/ksenia55/labor5/tests/test_Transaction.cpp +CMakeFiles/check.dir/tests/test_Transaction.cpp.o: CMakeFiles/check.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/check.dir/tests/test_Transaction.cpp.o" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/check.dir/tests/test_Transaction.cpp.o -MF CMakeFiles/check.dir/tests/test_Transaction.cpp.o.d -o CMakeFiles/check.dir/tests/test_Transaction.cpp.o -c /Users/ksenia55/labor5/tests/test_Transaction.cpp + +CMakeFiles/check.dir/tests/test_Transaction.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/check.dir/tests/test_Transaction.cpp.i" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/ksenia55/labor5/tests/test_Transaction.cpp > CMakeFiles/check.dir/tests/test_Transaction.cpp.i + +CMakeFiles/check.dir/tests/test_Transaction.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/check.dir/tests/test_Transaction.cpp.s" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/ksenia55/labor5/tests/test_Transaction.cpp -o CMakeFiles/check.dir/tests/test_Transaction.cpp.s + +# Object files for target check +check_OBJECTS = \ +"CMakeFiles/check.dir/tests/test_Account.cpp.o" \ +"CMakeFiles/check.dir/tests/test_Transaction.cpp.o" + +# External object files for target check +check_EXTERNAL_OBJECTS = + +check: CMakeFiles/check.dir/tests/test_Account.cpp.o +check: CMakeFiles/check.dir/tests/test_Transaction.cpp.o +check: CMakeFiles/check.dir/build.make +check: libbanking.a +check: third-party/gtest/googlemock/gtest/libgtest_main.a +check: third-party/gtest/googlemock/gtest/libgtest.a +check: CMakeFiles/check.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX executable check" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/check.dir/link.txt --verbose=$(VERBOSE) + +# 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 /Users/ksenia55/labor5/_build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/ksenia55/labor5 /Users/ksenia55/labor5 /Users/ksenia55/labor5/_build /Users/ksenia55/labor5/_build /Users/ksenia55/labor5/_build/CMakeFiles/check.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/check.dir/depend + diff --git a/_build/CMakeFiles/check.dir/cmake_clean.cmake b/_build/CMakeFiles/check.dir/cmake_clean.cmake new file mode 100644 index 0000000..e8634ff --- /dev/null +++ b/_build/CMakeFiles/check.dir/cmake_clean.cmake @@ -0,0 +1,13 @@ +file(REMOVE_RECURSE + "CMakeFiles/check.dir/tests/test_Account.cpp.o" + "CMakeFiles/check.dir/tests/test_Account.cpp.o.d" + "CMakeFiles/check.dir/tests/test_Transaction.cpp.o" + "CMakeFiles/check.dir/tests/test_Transaction.cpp.o.d" + "check" + "check.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/check.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/_build/CMakeFiles/check.dir/compiler_depend.internal b/_build/CMakeFiles/check.dir/compiler_depend.internal new file mode 100644 index 0000000..8c4b9dc --- /dev/null +++ b/_build/CMakeFiles/check.dir/compiler_depend.internal @@ -0,0 +1,564 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +CMakeFiles/check.dir/tests/test_Account.cpp.o + /Users/ksenia55/labor5/tests/test_Account.cpp + /Users/ksenia55/labor5/banking/Account.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits + /Library/Developer/CommandLineTools/usr/include/c++/v1/__config + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/type_traits + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstddef + /Library/Developer/CommandLineTools/usr/include/c++/v1/__cxx_version + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__nullptr + /Library/Developer/CommandLineTools/usr/include/c++/v1/__undef_macros + /Library/Developer/CommandLineTools/usr/include/c++/v1/ostream + /Library/Developer/CommandLineTools/usr/include/c++/v1/ios + /Library/Developer/CommandLineTools/usr/include/c++/v1/iosfwd + /Library/Developer/CommandLineTools/usr/include/c++/v1/wchar.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__locale + /Library/Developer/CommandLineTools/usr/include/c++/v1/string + /Library/Developer/CommandLineTools/usr/include/c++/v1/string_view + /Library/Developer/CommandLineTools/usr/include/c++/v1/__string + /Library/Developer/CommandLineTools/usr/include/c++/v1/algorithm + /Library/Developer/CommandLineTools/usr/include/c++/v1/initializer_list + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstring + /Library/Developer/CommandLineTools/usr/include/c++/v1/string.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/string.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rsize_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_errno_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/strings.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/utility + /Library/Developer/CommandLineTools/usr/include/c++/v1/__tuple + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdint + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdint.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__debug + /Library/Developer/CommandLineTools/usr/include/c++/v1/memory + /Library/Developer/CommandLineTools/usr/include/c++/v1/typeinfo + /Library/Developer/CommandLineTools/usr/include/c++/v1/exception + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdlib + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/math.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/new + /Library/Developer/CommandLineTools/usr/include/c++/v1/iterator + /Library/Developer/CommandLineTools/usr/include/c++/v1/__functional_base + /Library/Developer/CommandLineTools/usr/include/c++/v1/tuple + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdexcept + /Library/Developer/CommandLineTools/usr/include/c++/v1/atomic + /Library/Developer/CommandLineTools/usr/include/c++/v1/cassert + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/assert.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/functional + /Library/Developer/CommandLineTools/usr/include/c++/v1/bit + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdio + /Library/Developer/CommandLineTools/usr/include/c++/v1/cwchar + /Library/Developer/CommandLineTools/usr/include/c++/v1/cwctype + /Library/Developer/CommandLineTools/usr/include/c++/v1/cctype + /Library/Developer/CommandLineTools/usr/include/c++/v1/wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctrans_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/mutex + /Library/Developer/CommandLineTools/usr/include/c++/v1/__mutex_base + /Library/Developer/CommandLineTools/usr/include/c++/v1/chrono + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctime + /Library/Developer/CommandLineTools/usr/include/c++/v1/ratio + /Library/Developer/CommandLineTools/usr/include/c++/v1/climits + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/syslimits.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/system_error + /Library/Developer/CommandLineTools/usr/include/c++/v1/__errc + /Library/Developer/CommandLineTools/usr/include/c++/v1/cerrno + /Library/Developer/CommandLineTools/usr/include/c++/v1/errno.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/errno.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/errno.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__threading_support + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/sched.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/pthread_impl.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/qos.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/qos.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mach_port_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sched.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/locale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/locale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_locale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_xlocale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/__wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdlib.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_string.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_time.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wchar.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/stddef.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wctype.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/streambuf + /Library/Developer/CommandLineTools/usr/include/c++/v1/locale + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/nl_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_char.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_short.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_caddr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blkcnt_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blksize_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_gid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_addr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_port_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_key_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_nlink_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_useconds_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_suseconds_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_def.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_setsize.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_set.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_clr.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_zero.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_isset.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_copy.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_nl_item.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__bsd_locale_defaults.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/bitset + /Library/Developer/CommandLineTools/usr/include/c++/v1/__bit_reference + /Library/Developer/CommandLineTools/usr/include/c++/v1/vector + /Library/Developer/CommandLineTools/usr/include/c++/v1/__split_buffer + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-internal.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stat.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_s_ifmt.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_filesec_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityMacros.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/TargetConditionals.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/iostream + /Library/Developer/CommandLineTools/usr/include/c++/v1/istream + /Library/Developer/CommandLineTools/usr/include/c++/v1/sstream + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port-arch.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-port.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/unistd.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/unistd.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_posix_vdisable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_seek_set.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/select.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_select.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uuid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/gethostuuid.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/regex.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_regex.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_regex.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/float.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/float.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/float.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/iomanip + /Library/Developer/CommandLineTools/usr/include/c++/v1/map + /Library/Developer/CommandLineTools/usr/include/c++/v1/__tree + /Library/Developer/CommandLineTools/usr/include/c++/v1/__node_handle + /Library/Developer/CommandLineTools/usr/include/c++/v1/optional + /Library/Developer/CommandLineTools/usr/include/c++/v1/set + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-message.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-filepath.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-string.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-type-util.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/cxxabi.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__cxxabi_config.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-death-test.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-death-test-internal.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-param-test.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-linked_ptr.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-printers.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-printers.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_prod.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-test-part.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-typed-test.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_pred_impl.h + +CMakeFiles/check.dir/tests/test_Transaction.cpp.o + /Users/ksenia55/labor5/tests/test_Transaction.cpp + /Users/ksenia55/labor5/banking/Account.h + /Users/ksenia55/labor5/banking/Transaction.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits + /Library/Developer/CommandLineTools/usr/include/c++/v1/__config + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/type_traits + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstddef + /Library/Developer/CommandLineTools/usr/include/c++/v1/__cxx_version + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__nullptr + /Library/Developer/CommandLineTools/usr/include/c++/v1/__undef_macros + /Library/Developer/CommandLineTools/usr/include/c++/v1/ostream + /Library/Developer/CommandLineTools/usr/include/c++/v1/ios + /Library/Developer/CommandLineTools/usr/include/c++/v1/iosfwd + /Library/Developer/CommandLineTools/usr/include/c++/v1/wchar.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__locale + /Library/Developer/CommandLineTools/usr/include/c++/v1/string + /Library/Developer/CommandLineTools/usr/include/c++/v1/string_view + /Library/Developer/CommandLineTools/usr/include/c++/v1/__string + /Library/Developer/CommandLineTools/usr/include/c++/v1/algorithm + /Library/Developer/CommandLineTools/usr/include/c++/v1/initializer_list + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstring + /Library/Developer/CommandLineTools/usr/include/c++/v1/string.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/string.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rsize_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_errno_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/strings.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/utility + /Library/Developer/CommandLineTools/usr/include/c++/v1/__tuple + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdint + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdint.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__debug + /Library/Developer/CommandLineTools/usr/include/c++/v1/memory + /Library/Developer/CommandLineTools/usr/include/c++/v1/typeinfo + /Library/Developer/CommandLineTools/usr/include/c++/v1/exception + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdlib + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/math.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/new + /Library/Developer/CommandLineTools/usr/include/c++/v1/iterator + /Library/Developer/CommandLineTools/usr/include/c++/v1/__functional_base + /Library/Developer/CommandLineTools/usr/include/c++/v1/tuple + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdexcept + /Library/Developer/CommandLineTools/usr/include/c++/v1/atomic + /Library/Developer/CommandLineTools/usr/include/c++/v1/cassert + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/assert.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/functional + /Library/Developer/CommandLineTools/usr/include/c++/v1/bit + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdio + /Library/Developer/CommandLineTools/usr/include/c++/v1/cwchar + /Library/Developer/CommandLineTools/usr/include/c++/v1/cwctype + /Library/Developer/CommandLineTools/usr/include/c++/v1/cctype + /Library/Developer/CommandLineTools/usr/include/c++/v1/wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctrans_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/mutex + /Library/Developer/CommandLineTools/usr/include/c++/v1/__mutex_base + /Library/Developer/CommandLineTools/usr/include/c++/v1/chrono + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctime + /Library/Developer/CommandLineTools/usr/include/c++/v1/ratio + /Library/Developer/CommandLineTools/usr/include/c++/v1/climits + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/syslimits.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/system_error + /Library/Developer/CommandLineTools/usr/include/c++/v1/__errc + /Library/Developer/CommandLineTools/usr/include/c++/v1/cerrno + /Library/Developer/CommandLineTools/usr/include/c++/v1/errno.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/errno.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/errno.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__threading_support + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/sched.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/pthread_impl.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/qos.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/qos.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mach_port_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sched.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/locale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/locale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_locale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_xlocale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/__wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdlib.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_string.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_time.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wchar.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/stddef.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wctype.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/streambuf + /Library/Developer/CommandLineTools/usr/include/c++/v1/locale + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/nl_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_char.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_short.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_caddr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blkcnt_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blksize_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_gid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_addr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_port_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_key_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_nlink_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_useconds_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_suseconds_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_def.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_setsize.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_set.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_clr.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_zero.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_isset.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_copy.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_nl_item.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__bsd_locale_defaults.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/bitset + /Library/Developer/CommandLineTools/usr/include/c++/v1/__bit_reference + /Library/Developer/CommandLineTools/usr/include/c++/v1/vector + /Library/Developer/CommandLineTools/usr/include/c++/v1/__split_buffer + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-internal.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stat.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_s_ifmt.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_filesec_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityMacros.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/TargetConditionals.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/iostream + /Library/Developer/CommandLineTools/usr/include/c++/v1/istream + /Library/Developer/CommandLineTools/usr/include/c++/v1/sstream + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port-arch.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-port.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/unistd.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/unistd.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_posix_vdisable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_seek_set.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/select.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_select.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uuid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/gethostuuid.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/regex.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_regex.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_regex.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/float.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/float.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/float.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/iomanip + /Library/Developer/CommandLineTools/usr/include/c++/v1/map + /Library/Developer/CommandLineTools/usr/include/c++/v1/__tree + /Library/Developer/CommandLineTools/usr/include/c++/v1/__node_handle + /Library/Developer/CommandLineTools/usr/include/c++/v1/optional + /Library/Developer/CommandLineTools/usr/include/c++/v1/set + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-message.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-filepath.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-string.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-type-util.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/cxxabi.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__cxxabi_config.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-death-test.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-death-test-internal.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-param-test.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-linked_ptr.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-printers.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-printers.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_prod.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-test-part.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-typed-test.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_pred_impl.h + diff --git a/_build/CMakeFiles/check.dir/compiler_depend.make b/_build/CMakeFiles/check.dir/compiler_depend.make new file mode 100644 index 0000000..63582f7 --- /dev/null +++ b/_build/CMakeFiles/check.dir/compiler_depend.make @@ -0,0 +1,1122 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +CMakeFiles/check.dir/tests/test_Account.cpp.o: /Users/ksenia55/labor5/tests/test_Account.cpp \ + /Users/ksenia55/labor5/banking/Account.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__config \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/type_traits \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstddef \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__cxx_version \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__nullptr \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__undef_macros \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ostream \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ios \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/iosfwd \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__locale \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/string \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/string_view \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__string \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/algorithm \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/initializer_list \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstring \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rsize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_errno_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/strings.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/utility \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__tuple \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdint \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdint.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__debug \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/memory \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/typeinfo \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/exception \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdlib \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/math.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/new \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/iterator \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__functional_base \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/tuple \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdexcept \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/atomic \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cassert \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/assert.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/functional \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/bit \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdio \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cwchar \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cwctype \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cctype \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctrans_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/mutex \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__mutex_base \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/chrono \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctime \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ratio \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/climits \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/syslimits.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/system_error \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__errc \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cerrno \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/errno.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__threading_support \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/sched.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/pthread_impl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sched.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wchar.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stddef.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wctype.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/streambuf \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/locale \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/nl_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_char.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_short.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_caddr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blksize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_gid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_nlink_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_useconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_def.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_clr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_zero.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_isset.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_nl_item.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__bsd_locale_defaults.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/bitset \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__bit_reference \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/vector \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__split_buffer \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-internal.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stat.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_s_ifmt.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_filesec_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityMacros.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/TargetConditionals.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/iostream \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/istream \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/sstream \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port-arch.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-port.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/unistd.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/unistd.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_posix_vdisable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_seek_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/select.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_select.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uuid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/gethostuuid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/regex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_regex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_regex.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/float.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/float.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/float.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/iomanip \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/map \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__tree \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__node_handle \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/optional \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/set \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-message.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-filepath.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-string.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-type-util.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/cxxabi.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__cxxabi_config.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-death-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-death-test-internal.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-param-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-linked_ptr.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-printers.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-printers.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_prod.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-test-part.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-typed-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_pred_impl.h + +CMakeFiles/check.dir/tests/test_Transaction.cpp.o: /Users/ksenia55/labor5/tests/test_Transaction.cpp \ + /Users/ksenia55/labor5/banking/Account.h \ + /Users/ksenia55/labor5/banking/Transaction.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__config \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/type_traits \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstddef \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__cxx_version \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__nullptr \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__undef_macros \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ostream \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ios \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/iosfwd \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__locale \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/string \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/string_view \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__string \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/algorithm \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/initializer_list \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstring \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rsize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_errno_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/strings.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/utility \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__tuple \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdint \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdint.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__debug \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/memory \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/typeinfo \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/exception \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdlib \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/math.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/new \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/iterator \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__functional_base \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/tuple \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdexcept \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/atomic \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cassert \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/assert.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/functional \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/bit \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdio \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cwchar \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cwctype \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cctype \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctrans_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/mutex \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__mutex_base \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/chrono \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctime \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ratio \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/climits \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/syslimits.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/system_error \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__errc \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cerrno \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/errno.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__threading_support \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/sched.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/pthread_impl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sched.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wchar.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stddef.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wctype.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/streambuf \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/locale \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/nl_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_char.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_short.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_caddr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blksize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_gid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_nlink_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_useconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_def.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_clr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_zero.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_isset.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_nl_item.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__bsd_locale_defaults.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/bitset \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__bit_reference \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/vector \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__split_buffer \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-internal.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stat.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_s_ifmt.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_filesec_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityMacros.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/TargetConditionals.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/iostream \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/istream \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/sstream \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port-arch.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-port.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/unistd.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/unistd.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_posix_vdisable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_seek_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/select.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_select.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uuid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/gethostuuid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/regex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_regex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_regex.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/float.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/float.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/float.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/iomanip \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/map \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__tree \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__node_handle \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/optional \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/set \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-message.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-filepath.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-string.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-type-util.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/cxxabi.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__cxxabi_config.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-death-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-death-test-internal.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-param-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-linked_ptr.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-printers.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-printers.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_prod.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-test-part.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-typed-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_pred_impl.h + + +/Users/ksenia55/labor5/banking/Transaction.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_pred_impl.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-typed-test.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-printers.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-printers.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-linked_ptr.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-death-test.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__cxxabi_config.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/cxxabi.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-string.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-filepath.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-message.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/optional: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__tree: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/iomanip: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_prod.h: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/float.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/float.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-death-test-internal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_regex.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_regex.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/regex.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_select.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_seek_set.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/unistd.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-port.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/sstream: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/iostream: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_filesec_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_s_ifmt.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stat.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/vector: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__bit_reference: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/bitset: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_copy.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_zero.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_clr.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_set.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_setsize.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_def.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_useconds_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_nlink_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_key_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino64_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino_t.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-test-part.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_addr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/float.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blkcnt_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_caddr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_char.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/types.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/streambuf: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stddef.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_string.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_ctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sched.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-internal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_nl_item.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/nl_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/locale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mach_port_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_locale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/qos.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/pthread_impl.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__threading_support: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/ratio: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/errno.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/qos.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cerrno: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/functional: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/system_error: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/chrono: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_limits.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stdexcept: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/limits.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/climits: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__mutex_base: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/mutex: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cctype: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cwctype: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cwchar: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/atomic: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-param-test.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__functional_base: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/new: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/TargetConditionals.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cstdio: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_isset.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/locale.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/wctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityMacros.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdlib.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/type_traits: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/sched.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/iterator: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/exception: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__locale: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/tuple: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__split_buffer: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h: + +/Users/ksenia55/labor5/tests/test_Account.cpp: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/gethostuuid.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cassert: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_time.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/typeinfo: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stdint.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/unistd.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cstring: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__tuple: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/strings.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_errno_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rsize_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/select.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/utility: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/string.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/initializer_list: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/syslimits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/algorithm: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uuid_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__string: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port-arch.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/string_view: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_port_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__cxx_version: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/string: + +/Users/ksenia55/labor5/tests/test_Transaction.cpp: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cstdint: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__bsd_locale_defaults.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/ctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/wchar.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_suseconds_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/map: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_xlocale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_posix_vdisable.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/limits: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/bit: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/memory: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/iosfwd: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wctype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cstddef: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/ostream: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/errno.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blksize_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__node_handle: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h: + +/Users/ksenia55/labor5/banking/Account.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/__wctype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__nullptr: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_short.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wchar.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/assert.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/istream: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__debug: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__undef_macros: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/errno.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/set: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__config: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_gid_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cstdlib: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__errc: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/locale: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctrans_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/string.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/ios: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wctype.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-type-util.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/ctime: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h: diff --git a/_build/CMakeFiles/check.dir/compiler_depend.ts b/_build/CMakeFiles/check.dir/compiler_depend.ts new file mode 100644 index 0000000..53352ec --- /dev/null +++ b/_build/CMakeFiles/check.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for check. diff --git a/_build/CMakeFiles/check.dir/depend.make b/_build/CMakeFiles/check.dir/depend.make new file mode 100644 index 0000000..d80fd52 --- /dev/null +++ b/_build/CMakeFiles/check.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for check. +# This may be replaced when dependencies are built. diff --git a/_build/CMakeFiles/check.dir/flags.make b/_build/CMakeFiles/check.dir/flags.make new file mode 100644 index 0000000..58473e0 --- /dev/null +++ b/_build/CMakeFiles/check.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/Users/ksenia55/labor5/banking -isystem /Users/ksenia55/labor5/third-party/gtest/googletest/include -isystem /Users/ksenia55/labor5/third-party/gtest/googletest + +CXX_FLAGS = -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.15 --coverage -std=gnu++11 + diff --git a/_build/CMakeFiles/check.dir/link.txt b/_build/CMakeFiles/check.dir/link.txt new file mode 100644 index 0000000..14aa5b1 --- /dev/null +++ b/_build/CMakeFiles/check.dir/link.txt @@ -0,0 +1 @@ +/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.15 -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/check.dir/tests/test_Account.cpp.o CMakeFiles/check.dir/tests/test_Transaction.cpp.o -o check libbanking.a third-party/gtest/googlemock/gtest/libgtest_main.a -lgcov third-party/gtest/googlemock/gtest/libgtest.a diff --git a/_build/CMakeFiles/check.dir/progress.make b/_build/CMakeFiles/check.dir/progress.make new file mode 100644 index 0000000..2088a4d --- /dev/null +++ b/_build/CMakeFiles/check.dir/progress.make @@ -0,0 +1,4 @@ +CMAKE_PROGRESS_1 = 4 +CMAKE_PROGRESS_2 = 5 +CMAKE_PROGRESS_3 = 6 + diff --git a/_build/CMakeFiles/check.dir/tests/test_Account.cpp.gcno b/_build/CMakeFiles/check.dir/tests/test_Account.cpp.gcno new file mode 100644 index 0000000..67805c1 Binary files /dev/null and b/_build/CMakeFiles/check.dir/tests/test_Account.cpp.gcno differ diff --git a/_build/CMakeFiles/check.dir/tests/test_Account.cpp.o b/_build/CMakeFiles/check.dir/tests/test_Account.cpp.o new file mode 100644 index 0000000..09650b5 Binary files /dev/null and b/_build/CMakeFiles/check.dir/tests/test_Account.cpp.o differ diff --git a/_build/CMakeFiles/check.dir/tests/test_Account.cpp.o.d b/_build/CMakeFiles/check.dir/tests/test_Account.cpp.o.d new file mode 100644 index 0000000..1bf9a4f --- /dev/null +++ b/_build/CMakeFiles/check.dir/tests/test_Account.cpp.o.d @@ -0,0 +1,279 @@ +CMakeFiles/check.dir/tests/test_Account.cpp.o: \ + /Users/ksenia55/labor5/tests/test_Account.cpp \ + /Users/ksenia55/labor5/banking/Account.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/limits \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__config \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/type_traits \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstddef \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__cxx_version \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__nullptr \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__undef_macros \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ostream \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ios \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iosfwd \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__locale \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/string \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/string_view \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__string \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/algorithm \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/initializer_list \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstring \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rsize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_errno_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/strings.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/utility \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__tuple \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstdint \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdint.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__debug \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/memory \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/typeinfo \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/exception \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstdlib \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/math.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/new \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iterator \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__functional_base \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/tuple \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdexcept \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/atomic \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cassert \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/assert.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/functional \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/bit \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstdio \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cwchar \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cwctype \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cctype \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctrans_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/mutex \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__mutex_base \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/chrono \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ctime \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ratio \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/climits \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/limits.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/syslimits.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/system_error \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__errc \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cerrno \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/errno.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__threading_support \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/sched.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/pthread_impl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sched.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wchar.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stddef.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wctype.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/streambuf \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/locale \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/nl_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_char.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_short.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_caddr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blksize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_gid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_nlink_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_useconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_def.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_clr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_zero.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_isset.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_nl_item.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__bsd_locale_defaults.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/bitset \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__bit_reference \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/vector \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__split_buffer \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-internal.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stat.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_s_ifmt.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_filesec_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityMacros.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/TargetConditionals.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iostream \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/istream \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/sstream \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port-arch.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-port.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/unistd.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/unistd.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_posix_vdisable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_seek_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/select.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_select.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uuid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/gethostuuid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/regex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_regex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_regex.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/float.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/float.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/float.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iomanip \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/map \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__tree \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__node_handle \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/optional \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/set \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-message.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-filepath.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-string.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-type-util.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/cxxabi.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__cxxabi_config.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-death-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-death-test-internal.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-param-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-linked_ptr.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-printers.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-printers.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_prod.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-test-part.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-typed-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_pred_impl.h diff --git a/_build/CMakeFiles/check.dir/tests/test_Transaction.cpp.gcno b/_build/CMakeFiles/check.dir/tests/test_Transaction.cpp.gcno new file mode 100644 index 0000000..5948c8b Binary files /dev/null and b/_build/CMakeFiles/check.dir/tests/test_Transaction.cpp.gcno differ diff --git a/_build/CMakeFiles/check.dir/tests/test_Transaction.cpp.o b/_build/CMakeFiles/check.dir/tests/test_Transaction.cpp.o new file mode 100644 index 0000000..1924588 Binary files /dev/null and b/_build/CMakeFiles/check.dir/tests/test_Transaction.cpp.o differ diff --git a/_build/CMakeFiles/check.dir/tests/test_Transaction.cpp.o.d b/_build/CMakeFiles/check.dir/tests/test_Transaction.cpp.o.d new file mode 100644 index 0000000..f47c9c7 --- /dev/null +++ b/_build/CMakeFiles/check.dir/tests/test_Transaction.cpp.o.d @@ -0,0 +1,280 @@ +CMakeFiles/check.dir/tests/test_Transaction.cpp.o: \ + /Users/ksenia55/labor5/tests/test_Transaction.cpp \ + /Users/ksenia55/labor5/banking/Account.h \ + /Users/ksenia55/labor5/banking/Transaction.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/limits \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__config \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/type_traits \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstddef \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__cxx_version \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__nullptr \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__undef_macros \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ostream \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ios \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iosfwd \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__locale \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/string \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/string_view \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__string \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/algorithm \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/initializer_list \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstring \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rsize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_errno_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/strings.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/utility \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__tuple \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstdint \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdint.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__debug \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/memory \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/typeinfo \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/exception \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstdlib \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/math.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/new \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iterator \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__functional_base \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/tuple \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdexcept \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/atomic \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cassert \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/assert.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/functional \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/bit \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstdio \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cwchar \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cwctype \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cctype \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctrans_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/mutex \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__mutex_base \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/chrono \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ctime \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ratio \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/climits \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/limits.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/syslimits.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/system_error \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__errc \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cerrno \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/errno.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__threading_support \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/sched.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/pthread_impl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sched.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wchar.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stddef.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wctype.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/streambuf \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/locale \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/nl_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_char.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_short.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_caddr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blksize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_gid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_nlink_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_useconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_def.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_clr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_zero.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_isset.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_nl_item.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__bsd_locale_defaults.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/bitset \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__bit_reference \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/vector \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__split_buffer \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-internal.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stat.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_s_ifmt.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_filesec_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityMacros.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/TargetConditionals.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iostream \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/istream \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/sstream \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port-arch.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-port.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/unistd.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/unistd.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_posix_vdisable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_seek_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/select.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_select.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uuid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/gethostuuid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/regex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_regex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_regex.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/float.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/float.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/float.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iomanip \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/map \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__tree \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__node_handle \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/optional \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/set \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-message.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-filepath.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-string.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-type-util.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/cxxabi.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__cxxabi_config.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-death-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-death-test-internal.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-param-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-linked_ptr.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-printers.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-printers.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_prod.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-test-part.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-typed-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_pred_impl.h diff --git a/_build/CMakeFiles/cmake.check_cache b/_build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/_build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/_build/CMakeFiles/print.dir/DependInfo.cmake b/_build/CMakeFiles/print.dir/DependInfo.cmake new file mode 100644 index 0000000..d117da5 --- /dev/null +++ b/_build/CMakeFiles/print.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 + "/Users/ksenia55/labor5/sources/print.cpp" "CMakeFiles/print.dir/sources/print.cpp.o" "gcc" "CMakeFiles/print.dir/sources/print.cpp.o.d" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/_build/CMakeFiles/print.dir/build.make b/_build/CMakeFiles/print.dir/build.make new file mode 100644 index 0000000..c5e4c69 --- /dev/null +++ b/_build/CMakeFiles/print.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# 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 = /usr/local/Cellar/cmake/3.25.2/bin/cmake + +# The command to remove a file. +RM = /usr/local/Cellar/cmake/3.25.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/ksenia55/labor5 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/ksenia55/labor5/_build + +# Include any dependencies generated for this target. +include CMakeFiles/print.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include CMakeFiles/print.dir/compiler_depend.make + +# Include the progress variables for this target. +include CMakeFiles/print.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/print.dir/flags.make + +CMakeFiles/print.dir/sources/print.cpp.o: CMakeFiles/print.dir/flags.make +CMakeFiles/print.dir/sources/print.cpp.o: /Users/ksenia55/labor5/sources/print.cpp +CMakeFiles/print.dir/sources/print.cpp.o: CMakeFiles/print.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/print.dir/sources/print.cpp.o" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/print.dir/sources/print.cpp.o -MF CMakeFiles/print.dir/sources/print.cpp.o.d -o CMakeFiles/print.dir/sources/print.cpp.o -c /Users/ksenia55/labor5/sources/print.cpp + +CMakeFiles/print.dir/sources/print.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/print.dir/sources/print.cpp.i" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/ksenia55/labor5/sources/print.cpp > CMakeFiles/print.dir/sources/print.cpp.i + +CMakeFiles/print.dir/sources/print.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/print.dir/sources/print.cpp.s" + /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/ksenia55/labor5/sources/print.cpp -o CMakeFiles/print.dir/sources/print.cpp.s + +# Object files for target print +print_OBJECTS = \ +"CMakeFiles/print.dir/sources/print.cpp.o" + +# External object files for target print +print_EXTERNAL_OBJECTS = + +libprint.a: CMakeFiles/print.dir/sources/print.cpp.o +libprint.a: CMakeFiles/print.dir/build.make +libprint.a: CMakeFiles/print.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library libprint.a" + $(CMAKE_COMMAND) -P CMakeFiles/print.dir/cmake_clean_target.cmake + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/print.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/print.dir/build: libprint.a +.PHONY : CMakeFiles/print.dir/build + +CMakeFiles/print.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/print.dir/cmake_clean.cmake +.PHONY : CMakeFiles/print.dir/clean + +CMakeFiles/print.dir/depend: + cd /Users/ksenia55/labor5/_build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/ksenia55/labor5 /Users/ksenia55/labor5 /Users/ksenia55/labor5/_build /Users/ksenia55/labor5/_build /Users/ksenia55/labor5/_build/CMakeFiles/print.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/print.dir/depend + diff --git a/_build/CMakeFiles/print.dir/cmake_clean.cmake b/_build/CMakeFiles/print.dir/cmake_clean.cmake new file mode 100644 index 0000000..93c4ac5 --- /dev/null +++ b/_build/CMakeFiles/print.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/print.dir/sources/print.cpp.o" + "CMakeFiles/print.dir/sources/print.cpp.o.d" + "libprint.a" + "libprint.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/print.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/_build/CMakeFiles/print.dir/cmake_clean_target.cmake b/_build/CMakeFiles/print.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..86dcbcf --- /dev/null +++ b/_build/CMakeFiles/print.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libprint.a" +) diff --git a/_build/CMakeFiles/print.dir/compiler_depend.make b/_build/CMakeFiles/print.dir/compiler_depend.make new file mode 100644 index 0000000..aaafeaa --- /dev/null +++ b/_build/CMakeFiles/print.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for print. +# This may be replaced when dependencies are built. diff --git a/_build/CMakeFiles/print.dir/compiler_depend.ts b/_build/CMakeFiles/print.dir/compiler_depend.ts new file mode 100644 index 0000000..f95ea55 --- /dev/null +++ b/_build/CMakeFiles/print.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for print. diff --git a/_build/CMakeFiles/print.dir/depend.make b/_build/CMakeFiles/print.dir/depend.make new file mode 100644 index 0000000..ec08d0e --- /dev/null +++ b/_build/CMakeFiles/print.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for print. +# This may be replaced when dependencies are built. diff --git a/_build/CMakeFiles/print.dir/flags.make b/_build/CMakeFiles/print.dir/flags.make new file mode 100644 index 0000000..d60a865 --- /dev/null +++ b/_build/CMakeFiles/print.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/Users/ksenia55/labor5/include + +CXX_FLAGS = -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.15 -std=gnu++11 + diff --git a/_build/CMakeFiles/print.dir/link.txt b/_build/CMakeFiles/print.dir/link.txt new file mode 100644 index 0000000..e03c3d1 --- /dev/null +++ b/_build/CMakeFiles/print.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libprint.a CMakeFiles/print.dir/sources/print.cpp.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libprint.a diff --git a/_build/CMakeFiles/print.dir/progress.make b/_build/CMakeFiles/print.dir/progress.make new file mode 100644 index 0000000..596289c --- /dev/null +++ b/_build/CMakeFiles/print.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 11 +CMAKE_PROGRESS_2 = 12 + diff --git a/_build/CMakeFiles/print.dir/sources/print.cpp.o.d b/_build/CMakeFiles/print.dir/sources/print.cpp.o.d new file mode 100644 index 0000000..027013b --- /dev/null +++ b/_build/CMakeFiles/print.dir/sources/print.cpp.o.d @@ -0,0 +1,234 @@ +CMakeFiles/print.dir/sources/print.cpp.o: \ + /Users/ksenia55/labor5/sources/print.cpp \ + /Users/ksenia55/labor5/include/print.hpp \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/fstream \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__config \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ostream \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ios \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iosfwd \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__locale \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/string \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/string_view \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__string \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/algorithm \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/initializer_list \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstddef \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__cxx_version \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__nullptr \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/type_traits \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstring \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rsize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_errno_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/strings.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/utility \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__tuple \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstdint \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdint.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__debug \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/memory \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/typeinfo \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/exception \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstdlib \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/math.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/limits \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__undef_macros \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/new \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iterator \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__functional_base \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/tuple \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdexcept \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/atomic \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cassert \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/assert.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/functional \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/bit \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstdio \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cwchar \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cwctype \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cctype \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctrans_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/mutex \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__mutex_base \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/chrono \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ctime \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ratio \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/climits \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/limits.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/syslimits.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/system_error \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__errc \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cerrno \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/errno.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__threading_support \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/sched.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/pthread_impl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sched.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wchar.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stddef.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wctype.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/streambuf \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/locale \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/nl_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_char.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_short.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_caddr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blksize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_gid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_nlink_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_useconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_def.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_clr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_zero.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_isset.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_nl_item.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__bsd_locale_defaults.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/bitset \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__bit_reference \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/istream \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/filesystem \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stack \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/deque \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__split_buffer \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iomanip \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iostream diff --git a/_build/CMakeFiles/progress.marks b/_build/CMakeFiles/progress.marks new file mode 100644 index 0000000..8351c19 --- /dev/null +++ b/_build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +14 diff --git a/_build/CTestTestfile.cmake b/_build/CTestTestfile.cmake new file mode 100644 index 0000000..9bcfacc --- /dev/null +++ b/_build/CTestTestfile.cmake @@ -0,0 +1,9 @@ +# CMake generated Testfile for +# Source directory: /Users/ksenia55/labor5 +# Build directory: /Users/ksenia55/labor5/_build +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +add_test(check "/Users/ksenia55/labor5/_build/check") +set_tests_properties(check PROPERTIES _BACKTRACE_TRIPLES "/Users/ksenia55/labor5/CMakeLists.txt;30;add_test;/Users/ksenia55/labor5/CMakeLists.txt;0;") +subdirs("third-party/gtest") diff --git a/_build/Makefile b/_build/Makefile new file mode 100644 index 0000000..acd088c --- /dev/null +++ b/_build/Makefile @@ -0,0 +1,392 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# 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 = /usr/local/Cellar/cmake/3.25.2/bin/cmake + +# The command to remove a file. +RM = /usr/local/Cellar/cmake/3.25.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/ksenia55/labor5 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/ksenia55/labor5/_build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." + /usr/local/Cellar/cmake/3.25.2/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 "Running CMake cache editor..." + /usr/local/Cellar/cmake/3.25.2/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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 /Users/ksenia55/labor5/_build/CMakeFiles /Users/ksenia55/labor5/_build//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/ksenia55/labor5/_build/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 banking + +# Build rule for target. +banking: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 banking +.PHONY : banking + +# fast build rule for target. +banking/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/banking.dir/build.make CMakeFiles/banking.dir/build +.PHONY : banking/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 gmock + +# Build rule for target. +gmock: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gmock +.PHONY : gmock + +# fast build rule for target. +gmock/fast: + $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/CMakeFiles/gmock.dir/build.make third-party/gtest/googlemock/CMakeFiles/gmock.dir/build +.PHONY : gmock/fast + +#============================================================================= +# Target rules for targets named gmock_main + +# Build rule for target. +gmock_main: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gmock_main +.PHONY : gmock_main + +# fast build rule for target. +gmock_main/fast: + $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/build.make third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/build +.PHONY : gmock_main/fast + +#============================================================================= +# Target rules for targets named gtest + +# Build rule for target. +gtest: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gtest +.PHONY : gtest + +# fast build rule for target. +gtest/fast: + $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build +.PHONY : gtest/fast + +#============================================================================= +# Target rules for targets named gtest_main + +# Build rule for target. +gtest_main: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gtest_main +.PHONY : gtest_main + +# fast build rule for target. +gtest_main/fast: + $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build +.PHONY : gtest_main/fast + +banking/Account.o: banking/Account.cpp.o +.PHONY : banking/Account.o + +# target to build an object file +banking/Account.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/banking.dir/build.make CMakeFiles/banking.dir/banking/Account.cpp.o +.PHONY : banking/Account.cpp.o + +banking/Account.i: banking/Account.cpp.i +.PHONY : banking/Account.i + +# target to preprocess a source file +banking/Account.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/banking.dir/build.make CMakeFiles/banking.dir/banking/Account.cpp.i +.PHONY : banking/Account.cpp.i + +banking/Account.s: banking/Account.cpp.s +.PHONY : banking/Account.s + +# target to generate assembly for a file +banking/Account.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/banking.dir/build.make CMakeFiles/banking.dir/banking/Account.cpp.s +.PHONY : banking/Account.cpp.s + +banking/Transaction.o: banking/Transaction.cpp.o +.PHONY : banking/Transaction.o + +# target to build an object file +banking/Transaction.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/banking.dir/build.make CMakeFiles/banking.dir/banking/Transaction.cpp.o +.PHONY : banking/Transaction.cpp.o + +banking/Transaction.i: banking/Transaction.cpp.i +.PHONY : banking/Transaction.i + +# target to preprocess a source file +banking/Transaction.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/banking.dir/build.make CMakeFiles/banking.dir/banking/Transaction.cpp.i +.PHONY : banking/Transaction.cpp.i + +banking/Transaction.s: banking/Transaction.cpp.s +.PHONY : banking/Transaction.s + +# target to generate assembly for a file +banking/Transaction.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/banking.dir/build.make CMakeFiles/banking.dir/banking/Transaction.cpp.s +.PHONY : banking/Transaction.cpp.s + +tests/test_Account.o: tests/test_Account.cpp.o +.PHONY : tests/test_Account.o + +# target to build an object file +tests/test_Account.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/check.dir/build.make CMakeFiles/check.dir/tests/test_Account.cpp.o +.PHONY : tests/test_Account.cpp.o + +tests/test_Account.i: tests/test_Account.cpp.i +.PHONY : tests/test_Account.i + +# target to preprocess a source file +tests/test_Account.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/check.dir/build.make CMakeFiles/check.dir/tests/test_Account.cpp.i +.PHONY : tests/test_Account.cpp.i + +tests/test_Account.s: tests/test_Account.cpp.s +.PHONY : tests/test_Account.s + +# target to generate assembly for a file +tests/test_Account.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/check.dir/build.make CMakeFiles/check.dir/tests/test_Account.cpp.s +.PHONY : tests/test_Account.cpp.s + +tests/test_Transaction.o: tests/test_Transaction.cpp.o +.PHONY : tests/test_Transaction.o + +# target to build an object file +tests/test_Transaction.cpp.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/check.dir/build.make CMakeFiles/check.dir/tests/test_Transaction.cpp.o +.PHONY : tests/test_Transaction.cpp.o + +tests/test_Transaction.i: tests/test_Transaction.cpp.i +.PHONY : tests/test_Transaction.i + +# target to preprocess a source file +tests/test_Transaction.cpp.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/check.dir/build.make CMakeFiles/check.dir/tests/test_Transaction.cpp.i +.PHONY : tests/test_Transaction.cpp.i + +tests/test_Transaction.s: tests/test_Transaction.cpp.s +.PHONY : tests/test_Transaction.s + +# target to generate assembly for a file +tests/test_Transaction.cpp.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/check.dir/build.make CMakeFiles/check.dir/tests/test_Transaction.cpp.s +.PHONY : tests/test_Transaction.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 "... banking" + @echo "... check" + @echo "... gmock" + @echo "... gmock_main" + @echo "... gtest" + @echo "... gtest_main" + @echo "... banking/Account.o" + @echo "... banking/Account.i" + @echo "... banking/Account.s" + @echo "... banking/Transaction.o" + @echo "... banking/Transaction.i" + @echo "... banking/Transaction.s" + @echo "... tests/test_Account.o" + @echo "... tests/test_Account.i" + @echo "... tests/test_Account.s" + @echo "... tests/test_Transaction.o" + @echo "... tests/test_Transaction.i" + @echo "... tests/test_Transaction.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/_build/Testing/Temporary/CTestCostData.txt b/_build/Testing/Temporary/CTestCostData.txt new file mode 100644 index 0000000..b29cba3 --- /dev/null +++ b/_build/Testing/Temporary/CTestCostData.txt @@ -0,0 +1,3 @@ +check 0 0 +--- +check diff --git a/_build/Testing/Temporary/LastTest.log b/_build/Testing/Temporary/LastTest.log new file mode 100644 index 0000000..bf3c085 --- /dev/null +++ b/_build/Testing/Temporary/LastTest.log @@ -0,0 +1,19 @@ +Start testing: Mar 15 12:40 MSK +---------------------------------------------------------- +Unable to find executable: /Users/ksenia55/labor5/_build/check +1/1 Testing: check +1/1 Test: check +Command: "" +Directory: /Users/ksenia55/labor5/_build +"check" start time: +Output: +---------------------------------------------------------- + +Test time = 0.00 sec +---------------------------------------------------------- +Test Passed. +"check" end time: Mar 15 12:40 MSK +"check" time elapsed: 00:00:00 +---------------------------------------------------------- + +End testing: Mar 15 12:40 MSK diff --git a/_build/Testing/Temporary/LastTestsFailed.log b/_build/Testing/Temporary/LastTestsFailed.log new file mode 100644 index 0000000..5a2064f --- /dev/null +++ b/_build/Testing/Temporary/LastTestsFailed.log @@ -0,0 +1 @@ +1:check diff --git a/_build/cmake_install.cmake b/_build/cmake_install.cmake new file mode 100644 index 0000000..c03aff3 --- /dev/null +++ b/_build/cmake_install.cmake @@ -0,0 +1,55 @@ +# Install script for directory: /Users/ksenia55/labor5 + +# 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 "") + 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() + +# 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 "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/Users/ksenia55/labor5/_build/third-party/gtest/cmake_install.cmake") + +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 "/Users/ksenia55/labor5/_build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/_build/libbanking.a b/_build/libbanking.a new file mode 100644 index 0000000..1c47509 Binary files /dev/null and b/_build/libbanking.a differ diff --git a/_build/third-party/gtest/CMakeFiles/CMakeDirectoryInformation.cmake b/_build/third-party/gtest/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..6803666 --- /dev/null +++ b/_build/third-party/gtest/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/ksenia55/labor5") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/ksenia55/labor5/_build") + +# 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/_build/third-party/gtest/CMakeFiles/progress.marks b/_build/third-party/gtest/CMakeFiles/progress.marks new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/_build/third-party/gtest/CMakeFiles/progress.marks @@ -0,0 +1 @@ +8 diff --git a/_build/third-party/gtest/CTestTestfile.cmake b/_build/third-party/gtest/CTestTestfile.cmake new file mode 100644 index 0000000..9a63082 --- /dev/null +++ b/_build/third-party/gtest/CTestTestfile.cmake @@ -0,0 +1,7 @@ +# CMake generated Testfile for +# Source directory: /Users/ksenia55/labor5/third-party/gtest +# Build directory: /Users/ksenia55/labor5/_build/third-party/gtest +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +subdirs("googlemock") diff --git a/_build/third-party/gtest/Makefile b/_build/third-party/gtest/Makefile new file mode 100644 index 0000000..0395bbf --- /dev/null +++ b/_build/third-party/gtest/Makefile @@ -0,0 +1,200 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# 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 = /usr/local/Cellar/cmake/3.25.2/bin/cmake + +# The command to remove a file. +RM = /usr/local/Cellar/cmake/3.25.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/ksenia55/labor5 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/ksenia55/labor5/_build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." + /usr/local/Cellar/cmake/3.25.2/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 "Running CMake cache editor..." + /usr/local/Cellar/cmake/3.25.2/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/ksenia55/labor5/_build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/ksenia55/labor5/_build/CMakeFiles /Users/ksenia55/labor5/_build/third-party/gtest//CMakeFiles/progress.marks + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 third-party/gtest/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/ksenia55/labor5/_build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 third-party/gtest/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 third-party/gtest/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 third-party/gtest/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/ksenia55/labor5/_build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# 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" +.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: + cd /Users/ksenia55/labor5/_build && $(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/_build/third-party/gtest/cmake_install.cmake b/_build/third-party/gtest/cmake_install.cmake new file mode 100644 index 0000000..1f381bb --- /dev/null +++ b/_build/third-party/gtest/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/ksenia55/labor5/third-party/gtest + +# 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 "") + 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() + +# 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 "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/cmake_install.cmake") + +endif() + diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/CMakeDirectoryInformation.cmake b/_build/third-party/gtest/googlemock/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..6803666 --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/ksenia55/labor5") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/ksenia55/labor5/_build") + +# 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/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake b/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake new file mode 100644 index 0000000..ca97bc4 --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# 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 + "/Users/ksenia55/labor5/third-party/gtest/googlemock/src/gmock-all.cc" "third-party/gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o" "gcc" "third-party/gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o.d" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + "/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake" + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/build.make b/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/build.make new file mode 100644 index 0000000..068dc70 --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# 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 = /usr/local/Cellar/cmake/3.25.2/bin/cmake + +# The command to remove a file. +RM = /usr/local/Cellar/cmake/3.25.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/ksenia55/labor5 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/ksenia55/labor5/_build + +# Include any dependencies generated for this target. +include third-party/gtest/googlemock/CMakeFiles/gmock.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include third-party/gtest/googlemock/CMakeFiles/gmock.dir/compiler_depend.make + +# Include the progress variables for this target. +include third-party/gtest/googlemock/CMakeFiles/gmock.dir/progress.make + +# Include the compile flags for this target's objects. +include third-party/gtest/googlemock/CMakeFiles/gmock.dir/flags.make + +third-party/gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: third-party/gtest/googlemock/CMakeFiles/gmock.dir/flags.make +third-party/gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: /Users/ksenia55/labor5/third-party/gtest/googlemock/src/gmock-all.cc +third-party/gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o: third-party/gtest/googlemock/CMakeFiles/gmock.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object third-party/gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o" + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT third-party/gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o -MF CMakeFiles/gmock.dir/src/gmock-all.cc.o.d -o CMakeFiles/gmock.dir/src/gmock-all.cc.o -c /Users/ksenia55/labor5/third-party/gtest/googlemock/src/gmock-all.cc + +third-party/gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gmock.dir/src/gmock-all.cc.i" + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/ksenia55/labor5/third-party/gtest/googlemock/src/gmock-all.cc > CMakeFiles/gmock.dir/src/gmock-all.cc.i + +third-party/gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gmock.dir/src/gmock-all.cc.s" + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/ksenia55/labor5/third-party/gtest/googlemock/src/gmock-all.cc -o CMakeFiles/gmock.dir/src/gmock-all.cc.s + +# Object files for target gmock +gmock_OBJECTS = \ +"CMakeFiles/gmock.dir/src/gmock-all.cc.o" + +# External object files for target gmock +gmock_EXTERNAL_OBJECTS = + +third-party/gtest/googlemock/libgmock.a: third-party/gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o +third-party/gtest/googlemock/libgmock.a: third-party/gtest/googlemock/CMakeFiles/gmock.dir/build.make +third-party/gtest/googlemock/libgmock.a: third-party/gtest/googlemock/CMakeFiles/gmock.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library libgmock.a" + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock && $(CMAKE_COMMAND) -P CMakeFiles/gmock.dir/cmake_clean_target.cmake + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gmock.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +third-party/gtest/googlemock/CMakeFiles/gmock.dir/build: third-party/gtest/googlemock/libgmock.a +.PHONY : third-party/gtest/googlemock/CMakeFiles/gmock.dir/build + +third-party/gtest/googlemock/CMakeFiles/gmock.dir/clean: + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock && $(CMAKE_COMMAND) -P CMakeFiles/gmock.dir/cmake_clean.cmake +.PHONY : third-party/gtest/googlemock/CMakeFiles/gmock.dir/clean + +third-party/gtest/googlemock/CMakeFiles/gmock.dir/depend: + cd /Users/ksenia55/labor5/_build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/ksenia55/labor5 /Users/ksenia55/labor5/third-party/gtest/googlemock /Users/ksenia55/labor5/_build /Users/ksenia55/labor5/_build/third-party/gtest/googlemock /Users/ksenia55/labor5/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : third-party/gtest/googlemock/CMakeFiles/gmock.dir/depend + diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/cmake_clean.cmake b/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/cmake_clean.cmake new file mode 100644 index 0000000..3cc7d66 --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/gmock.dir/src/gmock-all.cc.o" + "CMakeFiles/gmock.dir/src/gmock-all.cc.o.d" + "libgmock.a" + "libgmock.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gmock.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/cmake_clean_target.cmake b/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..26683f2 --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libgmock.a" +) diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/compiler_depend.make b/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/compiler_depend.make new file mode 100644 index 0000000..c777df5 --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for gmock. +# This may be replaced when dependencies are built. diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/compiler_depend.ts b/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/compiler_depend.ts new file mode 100644 index 0000000..adc68d1 --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for gmock. diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/depend.make b/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/depend.make new file mode 100644 index 0000000..7a05e2f --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for gmock. +# This may be replaced when dependencies are built. diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/flags.make b/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/flags.make new file mode 100644 index 0000000..21a0cd4 --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/Users/ksenia55/labor5/third-party/gtest/googlemock/include -I/Users/ksenia55/labor5/third-party/gtest/googlemock -isystem /Users/ksenia55/labor5/third-party/gtest/googletest/include -isystem /Users/ksenia55/labor5/third-party/gtest/googletest + +CXX_FLAGS = -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.15 -DGTEST_HAS_PTHREAD=1 --coverage -std=gnu++11 + diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/link.txt b/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/link.txt new file mode 100644 index 0000000..91e2c2c --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libgmock.a "CMakeFiles/gmock.dir/src/gmock-all.cc.o" +/Library/Developer/CommandLineTools/usr/bin/ranlib libgmock.a diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/progress.make b/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/progress.make new file mode 100644 index 0000000..72bb7dd --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 7 +CMAKE_PROGRESS_2 = 8 + diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake b/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake new file mode 100644 index 0000000..8e479db --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake @@ -0,0 +1,21 @@ + +# 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 + "/Users/ksenia55/labor5/third-party/gtest/googlemock/src/gmock_main.cc" "third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o" "gcc" "third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.d" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + "/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/CMakeFiles/gmock.dir/DependInfo.cmake" + "/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake" + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/build.make b/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/build.make new file mode 100644 index 0000000..60bfde2 --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# 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 = /usr/local/Cellar/cmake/3.25.2/bin/cmake + +# The command to remove a file. +RM = /usr/local/Cellar/cmake/3.25.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/ksenia55/labor5 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/ksenia55/labor5/_build + +# Include any dependencies generated for this target. +include third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/compiler_depend.make + +# Include the progress variables for this target. +include third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/progress.make + +# Include the compile flags for this target's objects. +include third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/flags.make + +third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/flags.make +third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: /Users/ksenia55/labor5/third-party/gtest/googlemock/src/gmock_main.cc +third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o: third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o" + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o -MF CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.d -o CMakeFiles/gmock_main.dir/src/gmock_main.cc.o -c /Users/ksenia55/labor5/third-party/gtest/googlemock/src/gmock_main.cc + +third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gmock_main.dir/src/gmock_main.cc.i" + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/ksenia55/labor5/third-party/gtest/googlemock/src/gmock_main.cc > CMakeFiles/gmock_main.dir/src/gmock_main.cc.i + +third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gmock_main.dir/src/gmock_main.cc.s" + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/ksenia55/labor5/third-party/gtest/googlemock/src/gmock_main.cc -o CMakeFiles/gmock_main.dir/src/gmock_main.cc.s + +# Object files for target gmock_main +gmock_main_OBJECTS = \ +"CMakeFiles/gmock_main.dir/src/gmock_main.cc.o" + +# External object files for target gmock_main +gmock_main_EXTERNAL_OBJECTS = + +third-party/gtest/googlemock/libgmock_main.a: third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o +third-party/gtest/googlemock/libgmock_main.a: third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/build.make +third-party/gtest/googlemock/libgmock_main.a: third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library libgmock_main.a" + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock && $(CMAKE_COMMAND) -P CMakeFiles/gmock_main.dir/cmake_clean_target.cmake + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gmock_main.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/build: third-party/gtest/googlemock/libgmock_main.a +.PHONY : third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/build + +third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/clean: + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock && $(CMAKE_COMMAND) -P CMakeFiles/gmock_main.dir/cmake_clean.cmake +.PHONY : third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/clean + +third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/depend: + cd /Users/ksenia55/labor5/_build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/ksenia55/labor5 /Users/ksenia55/labor5/third-party/gtest/googlemock /Users/ksenia55/labor5/_build /Users/ksenia55/labor5/_build/third-party/gtest/googlemock /Users/ksenia55/labor5/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/depend + diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/cmake_clean.cmake b/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/cmake_clean.cmake new file mode 100644 index 0000000..344dbbb --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/gmock_main.dir/src/gmock_main.cc.o" + "CMakeFiles/gmock_main.dir/src/gmock_main.cc.o.d" + "libgmock_main.a" + "libgmock_main.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gmock_main.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/cmake_clean_target.cmake b/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..06908bb --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libgmock_main.a" +) diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/compiler_depend.make b/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/compiler_depend.make new file mode 100644 index 0000000..0809414 --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/compiler_depend.make @@ -0,0 +1,2 @@ +# Empty compiler generated dependencies file for gmock_main. +# This may be replaced when dependencies are built. diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/compiler_depend.ts b/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/compiler_depend.ts new file mode 100644 index 0000000..85535ac --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for gmock_main. diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/depend.make b/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/depend.make new file mode 100644 index 0000000..4a18b61 --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for gmock_main. +# This may be replaced when dependencies are built. diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/flags.make b/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/flags.make new file mode 100644 index 0000000..47c36f6 --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -isystem /Users/ksenia55/labor5/third-party/gtest/googlemock/include -isystem /Users/ksenia55/labor5/third-party/gtest/googlemock -isystem /Users/ksenia55/labor5/third-party/gtest/googletest/include -isystem /Users/ksenia55/labor5/third-party/gtest/googletest + +CXX_FLAGS = -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.15 -DGTEST_HAS_PTHREAD=1 --coverage -std=gnu++11 + diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/link.txt b/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/link.txt new file mode 100644 index 0000000..a2936da --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libgmock_main.a CMakeFiles/gmock_main.dir/src/gmock_main.cc.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libgmock_main.a diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/progress.make b/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/progress.make new file mode 100644 index 0000000..b700c2c --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 9 +CMAKE_PROGRESS_2 = 10 + diff --git a/_build/third-party/gtest/googlemock/CMakeFiles/progress.marks b/_build/third-party/gtest/googlemock/CMakeFiles/progress.marks new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/_build/third-party/gtest/googlemock/CMakeFiles/progress.marks @@ -0,0 +1 @@ +8 diff --git a/_build/third-party/gtest/googlemock/CTestTestfile.cmake b/_build/third-party/gtest/googlemock/CTestTestfile.cmake new file mode 100644 index 0000000..9005305 --- /dev/null +++ b/_build/third-party/gtest/googlemock/CTestTestfile.cmake @@ -0,0 +1,7 @@ +# CMake generated Testfile for +# Source directory: /Users/ksenia55/labor5/third-party/gtest/googlemock +# Build directory: /Users/ksenia55/labor5/_build/third-party/gtest/googlemock +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +subdirs("gtest") diff --git a/_build/third-party/gtest/googlemock/Makefile b/_build/third-party/gtest/googlemock/Makefile new file mode 100644 index 0000000..ef091c2 --- /dev/null +++ b/_build/third-party/gtest/googlemock/Makefile @@ -0,0 +1,284 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# 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 = /usr/local/Cellar/cmake/3.25.2/bin/cmake + +# The command to remove a file. +RM = /usr/local/Cellar/cmake/3.25.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/ksenia55/labor5 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/ksenia55/labor5/_build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." + /usr/local/Cellar/cmake/3.25.2/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 "Running CMake cache editor..." + /usr/local/Cellar/cmake/3.25.2/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/ksenia55/labor5/_build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/ksenia55/labor5/_build/CMakeFiles /Users/ksenia55/labor5/_build/third-party/gtest/googlemock//CMakeFiles/progress.marks + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 third-party/gtest/googlemock/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/ksenia55/labor5/_build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 third-party/gtest/googlemock/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 third-party/gtest/googlemock/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 third-party/gtest/googlemock/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/ksenia55/labor5/_build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +third-party/gtest/googlemock/CMakeFiles/gmock.dir/rule: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 third-party/gtest/googlemock/CMakeFiles/gmock.dir/rule +.PHONY : third-party/gtest/googlemock/CMakeFiles/gmock.dir/rule + +# Convenience name for target. +gmock: third-party/gtest/googlemock/CMakeFiles/gmock.dir/rule +.PHONY : gmock + +# fast build rule for target. +gmock/fast: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/CMakeFiles/gmock.dir/build.make third-party/gtest/googlemock/CMakeFiles/gmock.dir/build +.PHONY : gmock/fast + +# Convenience name for target. +third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/rule: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/rule +.PHONY : third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/rule + +# Convenience name for target. +gmock_main: third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/rule +.PHONY : gmock_main + +# fast build rule for target. +gmock_main/fast: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/build.make third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/build +.PHONY : gmock_main/fast + +src/gmock-all.o: src/gmock-all.cc.o +.PHONY : src/gmock-all.o + +# target to build an object file +src/gmock-all.cc.o: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/CMakeFiles/gmock.dir/build.make third-party/gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o +.PHONY : src/gmock-all.cc.o + +src/gmock-all.i: src/gmock-all.cc.i +.PHONY : src/gmock-all.i + +# target to preprocess a source file +src/gmock-all.cc.i: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/CMakeFiles/gmock.dir/build.make third-party/gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.i +.PHONY : src/gmock-all.cc.i + +src/gmock-all.s: src/gmock-all.cc.s +.PHONY : src/gmock-all.s + +# target to generate assembly for a file +src/gmock-all.cc.s: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/CMakeFiles/gmock.dir/build.make third-party/gtest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.s +.PHONY : src/gmock-all.cc.s + +src/gmock_main.o: src/gmock_main.cc.o +.PHONY : src/gmock_main.o + +# target to build an object file +src/gmock_main.cc.o: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/build.make third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o +.PHONY : src/gmock_main.cc.o + +src/gmock_main.i: src/gmock_main.cc.i +.PHONY : src/gmock_main.i + +# target to preprocess a source file +src/gmock_main.cc.i: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/build.make third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.i +.PHONY : src/gmock_main.cc.i + +src/gmock_main.s: src/gmock_main.cc.s +.PHONY : src/gmock_main.s + +# target to generate assembly for a file +src/gmock_main.cc.s: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/build.make third-party/gtest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.s +.PHONY : src/gmock_main.cc.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 "... gmock" + @echo "... gmock_main" + @echo "... src/gmock-all.o" + @echo "... src/gmock-all.i" + @echo "... src/gmock-all.s" + @echo "... src/gmock_main.o" + @echo "... src/gmock_main.i" + @echo "... src/gmock_main.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: + cd /Users/ksenia55/labor5/_build && $(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/_build/third-party/gtest/googlemock/cmake_install.cmake b/_build/third-party/gtest/googlemock/cmake_install.cmake new file mode 100644 index 0000000..27ef4a3 --- /dev/null +++ b/_build/third-party/gtest/googlemock/cmake_install.cmake @@ -0,0 +1,73 @@ +# Install script for directory: /Users/ksenia55/labor5/third-party/gtest/googlemock + +# 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 "") + 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() + +# 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 "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include" TYPE DIRECTORY FILES "/Users/ksenia55/labor5/third-party/gtest/googlemock/include/") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/libgmock.a") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgmock.a" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgmock.a") + execute_process(COMMAND "/Library/Developer/CommandLineTools/usr/bin/ranlib" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgmock.a") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/libgmock_main.a") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgmock_main.a" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgmock_main.a") + execute_process(COMMAND "/Library/Developer/CommandLineTools/usr/bin/ranlib" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgmock_main.a") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/generated/gmock.pc") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/generated/gmock_main.pc") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/cmake_install.cmake") + +endif() + diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/CMakeDirectoryInformation.cmake b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..6803666 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/ksenia55/labor5") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/ksenia55/labor5/_build") + +# 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/_build/third-party/gtest/googlemock/gtest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets-noconfig.cmake b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets-noconfig.cmake new file mode 100644 index 0000000..4d553e3 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets-noconfig.cmake @@ -0,0 +1,53 @@ +#---------------------------------------------------------------- +# Generated CMake target import file. +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Import target "GTest::gtest" for configuration "" +set_property(TARGET GTest::gtest APPEND PROPERTY IMPORTED_CONFIGURATIONS NOCONFIG) +set_target_properties(GTest::gtest PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_NOCONFIG "CXX" + IMPORTED_LINK_INTERFACE_LIBRARIES_NOCONFIG "Threads::Threads" + IMPORTED_LOCATION_NOCONFIG "${_IMPORT_PREFIX}/lib/libgtest.a" + ) + +list(APPEND _cmake_import_check_targets GTest::gtest ) +list(APPEND _cmake_import_check_files_for_GTest::gtest "${_IMPORT_PREFIX}/lib/libgtest.a" ) + +# Import target "GTest::gtest_main" for configuration "" +set_property(TARGET GTest::gtest_main APPEND PROPERTY IMPORTED_CONFIGURATIONS NOCONFIG) +set_target_properties(GTest::gtest_main PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_NOCONFIG "CXX" + IMPORTED_LINK_INTERFACE_LIBRARIES_NOCONFIG "Threads::Threads;GTest::gtest" + IMPORTED_LOCATION_NOCONFIG "${_IMPORT_PREFIX}/lib/libgtest_main.a" + ) + +list(APPEND _cmake_import_check_targets GTest::gtest_main ) +list(APPEND _cmake_import_check_files_for_GTest::gtest_main "${_IMPORT_PREFIX}/lib/libgtest_main.a" ) + +# Import target "GTest::gmock" for configuration "" +set_property(TARGET GTest::gmock APPEND PROPERTY IMPORTED_CONFIGURATIONS NOCONFIG) +set_target_properties(GTest::gmock PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_NOCONFIG "CXX" + IMPORTED_LINK_INTERFACE_LIBRARIES_NOCONFIG "Threads::Threads;GTest::gtest" + IMPORTED_LOCATION_NOCONFIG "${_IMPORT_PREFIX}/lib/libgmock.a" + ) + +list(APPEND _cmake_import_check_targets GTest::gmock ) +list(APPEND _cmake_import_check_files_for_GTest::gmock "${_IMPORT_PREFIX}/lib/libgmock.a" ) + +# Import target "GTest::gmock_main" for configuration "" +set_property(TARGET GTest::gmock_main APPEND PROPERTY IMPORTED_CONFIGURATIONS NOCONFIG) +set_target_properties(GTest::gmock_main PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_NOCONFIG "CXX" + IMPORTED_LINK_INTERFACE_LIBRARIES_NOCONFIG "Threads::Threads;GTest::gmock" + IMPORTED_LOCATION_NOCONFIG "${_IMPORT_PREFIX}/lib/libgmock_main.a" + ) + +list(APPEND _cmake_import_check_targets GTest::gmock_main ) +list(APPEND _cmake_import_check_files_for_GTest::gmock_main "${_IMPORT_PREFIX}/lib/libgmock_main.a" ) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets.cmake b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets.cmake new file mode 100644 index 0000000..c1d0402 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets.cmake @@ -0,0 +1,127 @@ +# 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.23) +#---------------------------------------------------------------- +# 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 GTest::gtest GTest::gtest_main GTest::gmock GTest::gmock_main) + 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 GTest::gtest +add_library(GTest::gtest STATIC IMPORTED) + +set_target_properties(GTest::gtest PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" +) + +# Create imported target GTest::gtest_main +add_library(GTest::gtest_main STATIC IMPORTED) + +set_target_properties(GTest::gtest_main PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" +) + +# Create imported target GTest::gmock +add_library(GTest::gmock STATIC IMPORTED) + +set_target_properties(GTest::gmock PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" +) + +# Create imported target GTest::gmock_main +add_library(GTest::gmock_main STATIC IMPORTED) + +set_target_properties(GTest::gmock_main PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" +) + +# Load information for each installed configuration. +file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/GTestTargets-*.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/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake new file mode 100644 index 0000000..07c4dea --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.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 + "/Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-all.cc" "third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o" "gcc" "third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.d" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make new file mode 100644 index 0000000..2cf6f6d --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# 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 = /usr/local/Cellar/cmake/3.25.2/bin/cmake + +# The command to remove a file. +RM = /usr/local/Cellar/cmake/3.25.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/ksenia55/labor5 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/ksenia55/labor5/_build + +# Include any dependencies generated for this target. +include third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/compiler_depend.make + +# Include the progress variables for this target. +include third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/progress.make + +# Include the compile flags for this target's objects. +include third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/flags.make + +third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/flags.make +third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-all.cc +third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o" + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o -MF CMakeFiles/gtest.dir/src/gtest-all.cc.o.d -o CMakeFiles/gtest.dir/src/gtest-all.cc.o -c /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-all.cc + +third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gtest.dir/src/gtest-all.cc.i" + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-all.cc > CMakeFiles/gtest.dir/src/gtest-all.cc.i + +third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gtest.dir/src/gtest-all.cc.s" + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-all.cc -o CMakeFiles/gtest.dir/src/gtest-all.cc.s + +# Object files for target gtest +gtest_OBJECTS = \ +"CMakeFiles/gtest.dir/src/gtest-all.cc.o" + +# External object files for target gtest +gtest_EXTERNAL_OBJECTS = + +third-party/gtest/googlemock/gtest/libgtest.a: third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o +third-party/gtest/googlemock/gtest/libgtest.a: third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make +third-party/gtest/googlemock/gtest/libgtest.a: third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library libgtest.a" + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest && $(CMAKE_COMMAND) -P CMakeFiles/gtest.dir/cmake_clean_target.cmake + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gtest.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build: third-party/gtest/googlemock/gtest/libgtest.a +.PHONY : third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build + +third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/clean: + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest && $(CMAKE_COMMAND) -P CMakeFiles/gtest.dir/cmake_clean.cmake +.PHONY : third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/clean + +third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend: + cd /Users/ksenia55/labor5/_build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/ksenia55/labor5 /Users/ksenia55/labor5/third-party/gtest/googletest /Users/ksenia55/labor5/_build /Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest /Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend + diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/cmake_clean.cmake b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/cmake_clean.cmake new file mode 100644 index 0000000..40a847c --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/gtest.dir/src/gtest-all.cc.o" + "CMakeFiles/gtest.dir/src/gtest-all.cc.o.d" + "libgtest.a" + "libgtest.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gtest.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/cmake_clean_target.cmake b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..0668ce3 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libgtest.a" +) diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/compiler_depend.internal b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/compiler_depend.internal new file mode 100644 index 0000000..0287445 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/compiler_depend.internal @@ -0,0 +1,381 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-all.cc + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits + /Library/Developer/CommandLineTools/usr/include/c++/v1/__config + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/type_traits + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstddef + /Library/Developer/CommandLineTools/usr/include/c++/v1/__cxx_version + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__nullptr + /Library/Developer/CommandLineTools/usr/include/c++/v1/__undef_macros + /Library/Developer/CommandLineTools/usr/include/c++/v1/ostream + /Library/Developer/CommandLineTools/usr/include/c++/v1/ios + /Library/Developer/CommandLineTools/usr/include/c++/v1/iosfwd + /Library/Developer/CommandLineTools/usr/include/c++/v1/wchar.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__locale + /Library/Developer/CommandLineTools/usr/include/c++/v1/string + /Library/Developer/CommandLineTools/usr/include/c++/v1/string_view + /Library/Developer/CommandLineTools/usr/include/c++/v1/__string + /Library/Developer/CommandLineTools/usr/include/c++/v1/algorithm + /Library/Developer/CommandLineTools/usr/include/c++/v1/initializer_list + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstring + /Library/Developer/CommandLineTools/usr/include/c++/v1/string.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/string.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rsize_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_errno_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/strings.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/utility + /Library/Developer/CommandLineTools/usr/include/c++/v1/__tuple + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdint + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdint.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__debug + /Library/Developer/CommandLineTools/usr/include/c++/v1/memory + /Library/Developer/CommandLineTools/usr/include/c++/v1/typeinfo + /Library/Developer/CommandLineTools/usr/include/c++/v1/exception + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdlib + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/math.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/new + /Library/Developer/CommandLineTools/usr/include/c++/v1/iterator + /Library/Developer/CommandLineTools/usr/include/c++/v1/__functional_base + /Library/Developer/CommandLineTools/usr/include/c++/v1/tuple + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdexcept + /Library/Developer/CommandLineTools/usr/include/c++/v1/atomic + /Library/Developer/CommandLineTools/usr/include/c++/v1/cassert + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/assert.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/functional + /Library/Developer/CommandLineTools/usr/include/c++/v1/bit + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdio + /Library/Developer/CommandLineTools/usr/include/c++/v1/cwchar + /Library/Developer/CommandLineTools/usr/include/c++/v1/cwctype + /Library/Developer/CommandLineTools/usr/include/c++/v1/cctype + /Library/Developer/CommandLineTools/usr/include/c++/v1/wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctrans_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/mutex + /Library/Developer/CommandLineTools/usr/include/c++/v1/__mutex_base + /Library/Developer/CommandLineTools/usr/include/c++/v1/chrono + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctime + /Library/Developer/CommandLineTools/usr/include/c++/v1/ratio + /Library/Developer/CommandLineTools/usr/include/c++/v1/climits + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/syslimits.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/system_error + /Library/Developer/CommandLineTools/usr/include/c++/v1/__errc + /Library/Developer/CommandLineTools/usr/include/c++/v1/cerrno + /Library/Developer/CommandLineTools/usr/include/c++/v1/errno.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/errno.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/errno.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__threading_support + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/sched.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/pthread_impl.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/qos.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/qos.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mach_port_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sched.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/locale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/locale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_locale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_xlocale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/__wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdlib.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_string.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_time.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wchar.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/stddef.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wctype.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/streambuf + /Library/Developer/CommandLineTools/usr/include/c++/v1/locale + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/nl_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_char.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_short.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_caddr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blkcnt_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blksize_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_gid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_addr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_port_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_key_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_nlink_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_useconds_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_suseconds_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_def.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_setsize.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_set.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_clr.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_zero.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_isset.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_copy.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_nl_item.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__bsd_locale_defaults.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/bitset + /Library/Developer/CommandLineTools/usr/include/c++/v1/__bit_reference + /Library/Developer/CommandLineTools/usr/include/c++/v1/vector + /Library/Developer/CommandLineTools/usr/include/c++/v1/__split_buffer + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-internal.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stat.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_s_ifmt.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_filesec_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityMacros.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/TargetConditionals.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/iostream + /Library/Developer/CommandLineTools/usr/include/c++/v1/istream + /Library/Developer/CommandLineTools/usr/include/c++/v1/sstream + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port-arch.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-port.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/unistd.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/unistd.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_posix_vdisable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_seek_set.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/select.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_select.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uuid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/gethostuuid.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/regex.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_regex.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_regex.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/float.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/float.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/float.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/iomanip + /Library/Developer/CommandLineTools/usr/include/c++/v1/map + /Library/Developer/CommandLineTools/usr/include/c++/v1/__tree + /Library/Developer/CommandLineTools/usr/include/c++/v1/__node_handle + /Library/Developer/CommandLineTools/usr/include/c++/v1/optional + /Library/Developer/CommandLineTools/usr/include/c++/v1/set + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-message.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-filepath.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-string.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-type-util.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/cxxabi.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__cxxabi_config.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-death-test.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-death-test-internal.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-param-test.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-linked_ptr.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-printers.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-printers.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_prod.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-test-part.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-typed-test.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_pred_impl.h + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest.cc + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-spi.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/list + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/time.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval64.h + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-internal-inl.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/crt_externs.h + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-death-test.cc + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/fcntl.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/fcntl.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_o_sync.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_o_dsync.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/mman.h + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-filepath.cc + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-port.cc + /Library/Developer/CommandLineTools/usr/include/c++/v1/fstream + /Library/Developer/CommandLineTools/usr/include/c++/v1/filesystem + /Library/Developer/CommandLineTools/usr/include/c++/v1/stack + /Library/Developer/CommandLineTools/usr/include/c++/v1/deque + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mach_init.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mach_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/host_info.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/message.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/port.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/boolean.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/boolean.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/boolean.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/vm_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/vm_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/kern_return.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/kern_return.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/kern_return.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_statistics.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/time_value.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/host_notify.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/host_special_ports.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/memory_object_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_prot.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_sync.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/exception_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/exception.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/exception.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/thread_status.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/thread_status.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/thread_status.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/fp_reg.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/thread_state.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/eflags.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/thread_state.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mach_voucher_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/std_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/processor_info.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/processor_info.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/processor_info.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/task_info.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/policy.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/task_inspect.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/task_policy.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/task_special_ports.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/thread_info.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/thread_policy.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/thread_special_ports.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/clock_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_attributes.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_inherit.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_purgable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_behavior.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_region.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/vm_param.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/vm_param.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_page_size.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/kmod.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/dyld_kernel.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsobj_id_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mach_traps.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/task.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/ndr.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/OSByteOrder.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/OSByteOrder.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_os_inline.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/notify.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mig_errors.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mig.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mig_strncpy_zerofill_support.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/mach_debug_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/ipc_info.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/vm_info.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/zone_info.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/page_info.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/hash_info.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/lockgroup_info.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_map.h + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-printers.cc + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-test-part.cc + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-typed-test.cc + diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/compiler_depend.make b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/compiler_depend.make new file mode 100644 index 0000000..de56cde --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/compiler_depend.make @@ -0,0 +1,1132 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-all.cc \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__config \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/type_traits \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstddef \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__cxx_version \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__nullptr \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__undef_macros \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ostream \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ios \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/iosfwd \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__locale \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/string \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/string_view \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__string \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/algorithm \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/initializer_list \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstring \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rsize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_errno_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/strings.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/utility \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__tuple \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdint \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdint.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__debug \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/memory \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/typeinfo \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/exception \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdlib \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/math.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/new \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/iterator \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__functional_base \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/tuple \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdexcept \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/atomic \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cassert \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/assert.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/functional \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/bit \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdio \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cwchar \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cwctype \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cctype \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctrans_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/mutex \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__mutex_base \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/chrono \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctime \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ratio \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/climits \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/syslimits.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/system_error \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__errc \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cerrno \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/errno.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__threading_support \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/sched.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/pthread_impl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sched.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wchar.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stddef.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wctype.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/streambuf \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/locale \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/nl_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_char.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_short.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_caddr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blksize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_gid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_nlink_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_useconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_def.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_clr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_zero.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_isset.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_nl_item.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__bsd_locale_defaults.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/bitset \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__bit_reference \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/vector \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__split_buffer \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-internal.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stat.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_s_ifmt.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_filesec_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityMacros.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/TargetConditionals.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/iostream \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/istream \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/sstream \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port-arch.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-port.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/unistd.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/unistd.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_posix_vdisable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_seek_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/select.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_select.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uuid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/gethostuuid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/regex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_regex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_regex.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/float.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/float.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/float.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/iomanip \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/map \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__tree \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__node_handle \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/optional \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/set \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-message.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-filepath.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-string.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-type-util.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/cxxabi.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__cxxabi_config.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-death-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-death-test-internal.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-param-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-linked_ptr.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-printers.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-printers.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_prod.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-test-part.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-typed-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_pred_impl.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest.cc \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-spi.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/list \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval64.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-internal-inl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/crt_externs.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-death-test.cc \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/fcntl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/fcntl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_o_sync.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_o_dsync.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/mman.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-filepath.cc \ + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-port.cc \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/fstream \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/filesystem \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stack \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/deque \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mach_init.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mach_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/host_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/message.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/port.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/boolean.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/boolean.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/boolean.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/vm_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/vm_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/kern_return.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/kern_return.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/kern_return.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_statistics.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/time_value.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/host_notify.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/host_special_ports.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/memory_object_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_prot.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_sync.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/exception_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/exception.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/exception.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/thread_status.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/thread_status.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/thread_status.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/fp_reg.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/thread_state.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/eflags.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/thread_state.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mach_voucher_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/std_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/processor_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/processor_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/processor_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/task_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/policy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/task_inspect.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/task_policy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/task_special_ports.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/thread_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/thread_policy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/thread_special_ports.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/clock_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_attributes.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_inherit.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_purgable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_behavior.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_region.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/vm_param.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/vm_param.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_page_size.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/kmod.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/dyld_kernel.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsobj_id_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mach_traps.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/task.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/ndr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_os_inline.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/notify.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mig_errors.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mig.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mig_strncpy_zerofill_support.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/mach_debug_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/ipc_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/vm_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/zone_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/page_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/hash_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/lockgroup_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_map.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-printers.cc \ + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-test-part.cc \ + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-typed-test.cc + + +/Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-printers.cc: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/lockgroup_info.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/ipc_info.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mig_strncpy_zerofill_support.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mig_errors.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/OSByteOrder.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/ndr.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mach_traps.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/kmod.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/thread_special_ports.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/thread_policy.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/task_special_ports.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/task_inspect.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_inherit.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/policy.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_attributes.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/std_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mach_voucher_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/thread_state.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/dyld_kernel.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/thread_state.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/vm_param.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/thread_status.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/task_policy.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_prot.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/host_notify.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/kern_return.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/port.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/host_info.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_region.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/boolean.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stack: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/fstream: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_o_dsync.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_o_sync.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/fcntl.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/exception_types.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-death-test.cc: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/zone_info.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/time.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/list: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-spi.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest.cc: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_pred_impl.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-typed-test.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-test-part.cc: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-printers.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-printers.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/message.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-linked_ptr.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-death-test.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__cxxabi_config.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/cxxabi.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-string.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-filepath.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-message.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/optional: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__tree: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_purgable.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/iomanip: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_prod.h: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/float.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/float.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-death-test-internal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_regex.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_regex.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/task.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/regex.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_select.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/boolean.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_seek_set.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/unistd.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-port.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/sstream: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/iostream: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/hash_info.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/memory_object_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_filesec_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_s_ifmt.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stat.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/time_value.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-filepath.cc: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/vector: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__bit_reference: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/bitset: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_copy.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_zero.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_clr.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_set.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_setsize.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_def.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_useconds_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_nlink_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_key_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino64_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino_t.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-test-part.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_addr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/float.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blkcnt_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_caddr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval64.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_char.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/types.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/streambuf: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stddef.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_string.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_ctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sched.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-internal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_nl_item.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/nl_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/locale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mach_port_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_locale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mach_init.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/qos.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/pthread_impl.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/deque: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__threading_support: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/ratio: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/errno.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_map.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/qos.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/fp_reg.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cerrno: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/functional: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/system_error: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/chrono: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_limits.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stdexcept: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/limits.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/filesystem: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/limits.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/climits: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mach_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/fcntl.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__mutex_base: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_sync.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/mutex: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/boolean.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cctype: + +/Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-port.cc: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cwctype: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cwchar: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/atomic: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-param-test.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__functional_base: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/vm_types.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/new: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/TargetConditionals.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/host_special_ports.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cstdio: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/thread_status.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_isset.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/locale.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/wctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsobj_id_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityMacros.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdlib.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/vm_info.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_statistics.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mig.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/type_traits: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/sched.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-internal-inl.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/iterator: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/page_info.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_page_size.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/exception: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__locale: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/tuple: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/gethostuuid.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cassert: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/task_info.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_time.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/typeinfo: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/vm_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stdint.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/OSByteOrder.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/mman.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/unistd.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cstring: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__tuple: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/clock_types.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/strings.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/vm_param.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_os_inline.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_errno_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rsize_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/select.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/utility: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/string.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/initializer_list: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/syslimits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/algorithm: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uuid_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__string: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/crt_externs.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port-arch.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/string_view: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_port_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__cxx_version: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/string: + +/Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-typed-test.cc: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/exception.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cstdint: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__bsd_locale_defaults.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/ctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/wchar.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsid_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_suseconds_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/map: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/processor_info.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_xlocale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/thread_info.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/mach_debug_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/kern_return.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/exception.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/bit: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/memory: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/iosfwd: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wctype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cstddef: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/ostream: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_posix_vdisable.h: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/limits: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/errno.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blksize_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/kern_return.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__node_handle: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/__wctype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__nullptr: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_short.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wchar.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/eflags.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/assert.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/istream: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__debug: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__undef_macros: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/processor_info.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/errno.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/set: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__config: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_gid_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cstdlib: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__split_buffer: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/processor_info.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-all.cc: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__errc: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/notify.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/locale: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctrans_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/string.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/ios: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_behavior.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/thread_status.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-type-util.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/ctime: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h: diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/compiler_depend.ts b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/compiler_depend.ts new file mode 100644 index 0000000..32ab1fb --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for gtest. diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend.make b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend.make new file mode 100644 index 0000000..37ac348 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for gtest. +# This may be replaced when dependencies are built. diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/flags.make b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/flags.make new file mode 100644 index 0000000..f99e5c3 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -I/Users/ksenia55/labor5/third-party/gtest/googletest/include -I/Users/ksenia55/labor5/third-party/gtest/googletest + +CXX_FLAGS = -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.15 -DGTEST_HAS_PTHREAD=1 --coverage -std=gnu++11 + diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/link.txt b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/link.txt new file mode 100644 index 0000000..5196558 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libgtest.a "CMakeFiles/gtest.dir/src/gtest-all.cc.o" +/Library/Developer/CommandLineTools/usr/bin/ranlib libgtest.a diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/progress.make b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/progress.make new file mode 100644 index 0000000..596289c --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 11 +CMAKE_PROGRESS_2 = 12 + diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.gcno b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.gcno new file mode 100644 index 0000000..709cd90 Binary files /dev/null and b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.gcno differ diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o new file mode 100644 index 0000000..faba138 Binary files /dev/null and b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o differ diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.d b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.d new file mode 100644 index 0000000..c48f69c --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o.d @@ -0,0 +1,377 @@ +third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o: \ + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-all.cc \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/limits \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__config \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/type_traits \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstddef \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__cxx_version \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__nullptr \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__undef_macros \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ostream \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ios \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iosfwd \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__locale \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/string \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/string_view \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__string \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/algorithm \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/initializer_list \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstring \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rsize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_errno_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/strings.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/utility \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__tuple \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstdint \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdint.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__debug \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/memory \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/typeinfo \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/exception \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstdlib \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/math.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/new \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iterator \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__functional_base \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/tuple \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdexcept \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/atomic \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cassert \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/assert.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/functional \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/bit \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstdio \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cwchar \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cwctype \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cctype \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctrans_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/mutex \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__mutex_base \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/chrono \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ctime \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ratio \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/climits \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/limits.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/syslimits.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/system_error \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__errc \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cerrno \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/errno.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__threading_support \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/sched.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/pthread_impl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sched.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wchar.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stddef.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wctype.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/streambuf \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/locale \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/nl_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_char.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_short.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_caddr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blksize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_gid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_nlink_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_useconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_def.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_clr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_zero.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_isset.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_nl_item.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__bsd_locale_defaults.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/bitset \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__bit_reference \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/vector \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__split_buffer \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-internal.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stat.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_s_ifmt.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_filesec_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityMacros.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/TargetConditionals.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iostream \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/istream \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/sstream \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port-arch.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-port.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/unistd.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/unistd.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_posix_vdisable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_seek_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/select.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_select.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uuid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/gethostuuid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/regex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_regex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_regex.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/float.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/float.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/float.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iomanip \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/map \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__tree \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__node_handle \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/optional \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/set \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-message.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-filepath.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-string.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-type-util.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/cxxabi.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__cxxabi_config.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-death-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-death-test-internal.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-param-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-linked_ptr.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-printers.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-printers.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_prod.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-test-part.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-typed-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_pred_impl.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest.cc \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-spi.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/list \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval64.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-internal-inl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/crt_externs.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-death-test.cc \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/fcntl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/fcntl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_o_sync.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_o_dsync.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/mman.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-filepath.cc \ + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-port.cc \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/fstream \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/filesystem \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stack \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/deque \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mach_init.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mach_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/host_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/message.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/port.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/boolean.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/boolean.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/boolean.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/vm_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/vm_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/kern_return.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/kern_return.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/kern_return.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_statistics.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/time_value.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/host_notify.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/host_special_ports.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/memory_object_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_prot.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_sync.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/exception_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/exception.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/exception.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/thread_status.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/thread_status.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/thread_status.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/fp_reg.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/thread_state.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/eflags.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/thread_state.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mach_voucher_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/std_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/processor_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/processor_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/processor_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/task_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/policy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/task_inspect.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/task_policy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/task_special_ports.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/thread_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/thread_policy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/thread_special_ports.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/clock_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_attributes.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_inherit.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_purgable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_behavior.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_region.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/vm_param.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/vm_param.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_page_size.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/kmod.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/dyld_kernel.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsobj_id_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mach_traps.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/task.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/ndr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_os_inline.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/notify.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mig_errors.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mig.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/mig_strncpy_zerofill_support.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/mach_debug_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/ipc_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/vm_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/zone_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/page_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/hash_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach_debug/lockgroup_info.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/vm_map.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-printers.cc \ + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-test-part.cc \ + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest-typed-test.cc diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/DependInfo.cmake b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/DependInfo.cmake new file mode 100644 index 0000000..6c684d7 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/DependInfo.cmake @@ -0,0 +1,20 @@ + +# 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 + "/Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest_main.cc" "third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o" "gcc" "third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.d" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + "/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/DependInfo.cmake" + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make new file mode 100644 index 0000000..0a7b6dc --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make @@ -0,0 +1,111 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# 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 = /usr/local/Cellar/cmake/3.25.2/bin/cmake + +# The command to remove a file. +RM = /usr/local/Cellar/cmake/3.25.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/ksenia55/labor5 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/ksenia55/labor5/_build + +# Include any dependencies generated for this target. +include third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend.make +# Include any dependencies generated by the compiler for this target. +include third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/compiler_depend.make + +# Include the progress variables for this target. +include third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/progress.make + +# Include the compile flags for this target's objects. +include third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/flags.make + +third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/flags.make +third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest_main.cc +third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o" + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o -MF CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.d -o CMakeFiles/gtest_main.dir/src/gtest_main.cc.o -c /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest_main.cc + +third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gtest_main.dir/src/gtest_main.cc.i" + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest_main.cc > CMakeFiles/gtest_main.dir/src/gtest_main.cc.i + +third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gtest_main.dir/src/gtest_main.cc.s" + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest && /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest_main.cc -o CMakeFiles/gtest_main.dir/src/gtest_main.cc.s + +# Object files for target gtest_main +gtest_main_OBJECTS = \ +"CMakeFiles/gtest_main.dir/src/gtest_main.cc.o" + +# External object files for target gtest_main +gtest_main_EXTERNAL_OBJECTS = + +third-party/gtest/googlemock/gtest/libgtest_main.a: third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o +third-party/gtest/googlemock/gtest/libgtest_main.a: third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make +third-party/gtest/googlemock/gtest/libgtest_main.a: third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Users/ksenia55/labor5/_build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library libgtest_main.a" + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest && $(CMAKE_COMMAND) -P CMakeFiles/gtest_main.dir/cmake_clean_target.cmake + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gtest_main.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build: third-party/gtest/googlemock/gtest/libgtest_main.a +.PHONY : third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build + +third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/clean: + cd /Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest && $(CMAKE_COMMAND) -P CMakeFiles/gtest_main.dir/cmake_clean.cmake +.PHONY : third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/clean + +third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend: + cd /Users/ksenia55/labor5/_build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/ksenia55/labor5 /Users/ksenia55/labor5/third-party/gtest/googletest /Users/ksenia55/labor5/_build /Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest /Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend + diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/cmake_clean.cmake b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/cmake_clean.cmake new file mode 100644 index 0000000..010351b --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/cmake_clean.cmake @@ -0,0 +1,11 @@ +file(REMOVE_RECURSE + "CMakeFiles/gtest_main.dir/src/gtest_main.cc.o" + "CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.d" + "libgtest_main.a" + "libgtest_main.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/gtest_main.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/cmake_clean_target.cmake b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/cmake_clean_target.cmake new file mode 100644 index 0000000..0114a46 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +file(REMOVE_RECURSE + "libgtest_main.a" +) diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/compiler_depend.internal b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/compiler_depend.internal new file mode 100644 index 0000000..e7c62d8 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/compiler_depend.internal @@ -0,0 +1,282 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest_main.cc + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdio.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__config + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits + /Library/Developer/CommandLineTools/usr/include/c++/v1/type_traits + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstddef + /Library/Developer/CommandLineTools/usr/include/c++/v1/__cxx_version + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__nullptr + /Library/Developer/CommandLineTools/usr/include/c++/v1/__undef_macros + /Library/Developer/CommandLineTools/usr/include/c++/v1/ostream + /Library/Developer/CommandLineTools/usr/include/c++/v1/ios + /Library/Developer/CommandLineTools/usr/include/c++/v1/iosfwd + /Library/Developer/CommandLineTools/usr/include/c++/v1/wchar.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__locale + /Library/Developer/CommandLineTools/usr/include/c++/v1/string + /Library/Developer/CommandLineTools/usr/include/c++/v1/string_view + /Library/Developer/CommandLineTools/usr/include/c++/v1/__string + /Library/Developer/CommandLineTools/usr/include/c++/v1/algorithm + /Library/Developer/CommandLineTools/usr/include/c++/v1/initializer_list + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstring + /Library/Developer/CommandLineTools/usr/include/c++/v1/string.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/string.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rsize_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_errno_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/strings.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/utility + /Library/Developer/CommandLineTools/usr/include/c++/v1/__tuple + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdint + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdint.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__debug + /Library/Developer/CommandLineTools/usr/include/c++/v1/memory + /Library/Developer/CommandLineTools/usr/include/c++/v1/typeinfo + /Library/Developer/CommandLineTools/usr/include/c++/v1/exception + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdlib + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/math.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/new + /Library/Developer/CommandLineTools/usr/include/c++/v1/iterator + /Library/Developer/CommandLineTools/usr/include/c++/v1/__functional_base + /Library/Developer/CommandLineTools/usr/include/c++/v1/tuple + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdexcept + /Library/Developer/CommandLineTools/usr/include/c++/v1/atomic + /Library/Developer/CommandLineTools/usr/include/c++/v1/cassert + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/assert.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/functional + /Library/Developer/CommandLineTools/usr/include/c++/v1/bit + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdio + /Library/Developer/CommandLineTools/usr/include/c++/v1/cwchar + /Library/Developer/CommandLineTools/usr/include/c++/v1/cwctype + /Library/Developer/CommandLineTools/usr/include/c++/v1/cctype + /Library/Developer/CommandLineTools/usr/include/c++/v1/wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctrans_t.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/mutex + /Library/Developer/CommandLineTools/usr/include/c++/v1/__mutex_base + /Library/Developer/CommandLineTools/usr/include/c++/v1/chrono + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctime + /Library/Developer/CommandLineTools/usr/include/c++/v1/ratio + /Library/Developer/CommandLineTools/usr/include/c++/v1/climits + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_limits.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/syslimits.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/system_error + /Library/Developer/CommandLineTools/usr/include/c++/v1/__errc + /Library/Developer/CommandLineTools/usr/include/c++/v1/cerrno + /Library/Developer/CommandLineTools/usr/include/c++/v1/errno.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/errno.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/errno.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__threading_support + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/sched.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/pthread_impl.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/qos.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/qos.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mach_port_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sched.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/locale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/locale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_locale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_xlocale.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_ctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/__wctype.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdio.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdlib.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_string.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_time.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wchar.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/stddef.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wctype.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/streambuf + /Library/Developer/CommandLineTools/usr/include/c++/v1/locale + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/nl_types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/types.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_char.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_short.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_caddr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blkcnt_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blksize_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_gid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_addr_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_port_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino64_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_key_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_nlink_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_useconds_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_suseconds_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_def.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_setsize.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_set.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_clr.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_zero.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_isset.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_copy.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_nl_item.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/__bsd_locale_defaults.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/bitset + /Library/Developer/CommandLineTools/usr/include/c++/v1/__bit_reference + /Library/Developer/CommandLineTools/usr/include/c++/v1/vector + /Library/Developer/CommandLineTools/usr/include/c++/v1/__split_buffer + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-internal.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stat.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_s_ifmt.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_filesec_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityMacros.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/TargetConditionals.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/iostream + /Library/Developer/CommandLineTools/usr/include/c++/v1/istream + /Library/Developer/CommandLineTools/usr/include/c++/v1/sstream + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port-arch.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-port.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/unistd.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/unistd.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_posix_vdisable.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_seek_set.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/select.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_select.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uuid_t.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/gethostuuid.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/regex.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_regex.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_regex.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/float.h + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/float.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/float.h + /Library/Developer/CommandLineTools/usr/include/c++/v1/iomanip + /Library/Developer/CommandLineTools/usr/include/c++/v1/map + /Library/Developer/CommandLineTools/usr/include/c++/v1/__tree + /Library/Developer/CommandLineTools/usr/include/c++/v1/__node_handle + /Library/Developer/CommandLineTools/usr/include/c++/v1/optional + /Library/Developer/CommandLineTools/usr/include/c++/v1/set + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-message.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-filepath.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-string.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-type-util.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/cxxabi.h + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__cxxabi_config.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-death-test.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-death-test-internal.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-param-test.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-linked_ptr.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-printers.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-printers.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_prod.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-test-part.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-typed-test.h + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_pred_impl.h + diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/compiler_depend.make b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/compiler_depend.make new file mode 100644 index 0000000..998c182 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/compiler_depend.make @@ -0,0 +1,835 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest_main.cc \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdio.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__config \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/type_traits \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstddef \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__cxx_version \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__nullptr \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__undef_macros \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ostream \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ios \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/iosfwd \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__locale \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/string \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/string_view \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__string \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/algorithm \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/initializer_list \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstring \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rsize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_errno_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/strings.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/utility \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__tuple \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdint \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdint.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__debug \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/memory \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/typeinfo \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/exception \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdlib \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/math.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/new \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/iterator \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__functional_base \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/tuple \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stdexcept \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/atomic \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cassert \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/assert.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/functional \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/bit \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdio \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cwchar \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cwctype \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cctype \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctrans_t.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/mutex \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__mutex_base \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/chrono \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ctime \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/ratio \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/climits \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/limits.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/syslimits.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/system_error \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__errc \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/cerrno \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/errno.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__threading_support \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/sched.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/pthread_impl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sched.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wchar.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/stddef.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wctype.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/streambuf \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/locale \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/nl_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_char.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_short.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_caddr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blksize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_gid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_nlink_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_useconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_def.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_clr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_zero.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_isset.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_nl_item.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__bsd_locale_defaults.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/bitset \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__bit_reference \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/vector \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__split_buffer \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-internal.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stat.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_s_ifmt.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_filesec_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityMacros.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/TargetConditionals.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/iostream \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/istream \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/sstream \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port-arch.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-port.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/unistd.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/unistd.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_posix_vdisable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_seek_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/select.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_select.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uuid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/gethostuuid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/regex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_regex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_regex.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/float.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/float.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/float.h \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/iomanip \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/map \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__tree \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/__node_handle \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/optional \ + /Library/Developer/CommandLineTools/usr/include/c++/v1/set \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-message.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-filepath.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-string.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-type-util.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/cxxabi.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__cxxabi_config.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-death-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-death-test-internal.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-param-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-linked_ptr.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-printers.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-printers.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_prod.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-test-part.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-typed-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_pred_impl.h + + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_pred_impl.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-typed-test.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-printers.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-printers.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-linked_ptr.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-death-test.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__cxxabi_config.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/cxxabi.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-string.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-filepath.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-message.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/optional: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__tree: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/iomanip: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_prod.h: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/float.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/float.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-death-test-internal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_regex.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_regex.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/regex.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_select.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_seek_set.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/unistd.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-port.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/sstream: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/iostream: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_filesec_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_s_ifmt.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stat.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/vector: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__bit_reference: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/bitset: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_copy.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_zero.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_clr.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_set.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_setsize.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_def.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_useconds_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_nlink_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_key_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino64_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino_t.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-test-part.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_addr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/float.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blkcnt_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_caddr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_char.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/types.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/streambuf: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stddef.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_string.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_ctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sched.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-internal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_nl_item.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/nl_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/locale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mach_port_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_locale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/qos.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/pthread_impl.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__threading_support: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/qos.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cerrno: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/functional: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/system_error: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/chrono: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_limits.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stdexcept: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/limits.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/climits: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__mutex_base: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/mutex: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cctype: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cwctype: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cwchar: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/atomic: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-param-test.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__functional_base: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/new: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/TargetConditionals.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cstdio: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_isset.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/locale.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/wctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityMacros.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdlib.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/type_traits: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/sched.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/iterator: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/exception: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__locale: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/tuple: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__split_buffer: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/gethostuuid.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cassert: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_time.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/typeinfo: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stdint.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/unistd.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cstring: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__tuple: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/strings.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_errno_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rsize_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/select.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/utility: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/string.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/initializer_list: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/syslimits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/algorithm: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uuid_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__string: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port-arch.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/string_view: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_port_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__cxx_version: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/string: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cstdint: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__bsd_locale_defaults.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/ctype.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/wchar.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_suseconds_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/map: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/errno.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/ratio: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_posix_vdisable.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/limits: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__debug: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/bit: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/memory: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/iosfwd: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_gid_t.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest_main.cc: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cstdlib: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/errno.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blksize_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wctype.h: + +/Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-type-util.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/ctime: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/cstddef: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/assert.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_xlocale.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/ostream: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h: + +/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/limits.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wctype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/stdio.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/locale: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctrans_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/string.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/ios: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/errno.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/set: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__config: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__undef_macros: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__errc: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__node_handle: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wchar.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_short.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/__wctype.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/__nullptr: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h: + +/Library/Developer/CommandLineTools/usr/include/c++/v1/istream: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h: + +/Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h: diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/compiler_depend.ts b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/compiler_depend.ts new file mode 100644 index 0000000..033891a --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/compiler_depend.ts @@ -0,0 +1,2 @@ +# CMAKE generated file: DO NOT EDIT! +# Timestamp file for compiler generated dependencies management for gtest_main. diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend.make b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend.make new file mode 100644 index 0000000..1d67c1a --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/depend.make @@ -0,0 +1,2 @@ +# Empty dependencies file for gtest_main. +# This may be replaced when dependencies are built. diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/flags.make b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/flags.make new file mode 100644 index 0000000..cb982d1 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++ +CXX_DEFINES = + +CXX_INCLUDES = -isystem /Users/ksenia55/labor5/third-party/gtest/googletest/include -isystem /Users/ksenia55/labor5/third-party/gtest/googletest + +CXX_FLAGS = -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk -mmacosx-version-min=10.15 -DGTEST_HAS_PTHREAD=1 --coverage -std=gnu++11 + diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/link.txt b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/link.txt new file mode 100644 index 0000000..5502458 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/link.txt @@ -0,0 +1,2 @@ +/Library/Developer/CommandLineTools/usr/bin/ar qc libgtest_main.a CMakeFiles/gtest_main.dir/src/gtest_main.cc.o +/Library/Developer/CommandLineTools/usr/bin/ranlib libgtest_main.a diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/progress.make b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/progress.make new file mode 100644 index 0000000..d92f75a --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 13 +CMAKE_PROGRESS_2 = 14 + diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.gcno b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.gcno new file mode 100644 index 0000000..4685a9a Binary files /dev/null and b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.gcno differ diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o new file mode 100644 index 0000000..7d2c2e5 Binary files /dev/null and b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o differ diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.d b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.d new file mode 100644 index 0000000..671f926 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o.d @@ -0,0 +1,278 @@ +third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o: \ + /Users/ksenia55/labor5/third-party/gtest/googletest/src/gtest_main.cc \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdio.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__config \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/cdefs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_symbol_aliasing.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_posix_availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/Availability.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityVersions.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityInternal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_va_list.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_intptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uintptr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_size_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_null.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctermid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_off_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ssize_t.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/limits \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/type_traits \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstddef \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__cxx_version \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stddef.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/__stddef_max_align_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__nullptr \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__undef_macros \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ostream \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ios \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iosfwd \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wchar.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mbstate_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ct_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rune_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wchar_t.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdarg.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_clock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_time_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timespec.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_wint_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctype_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/runetype.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__locale \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/string \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/string_view \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__string \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/algorithm \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/initializer_list \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstring \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_rsize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_errno_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/strings.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/utility \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__tuple \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstdint \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdint.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdint.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint8_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint16_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint32_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uint64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_intmax_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_uintmax_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__debug \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/memory \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/typeinfo \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/exception \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstdlib \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/wait.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_pid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_id_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/appleapiopts.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/signal.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_mcontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/machine/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/mach/i386/_structs.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigaltstack.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ucontext.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_sigset_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/resource.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_timeval.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_endian.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/libkern/i386/_OSByteOrder.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/alloca.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/malloc/_malloc.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_dev_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mode_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/math.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/math.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/new \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iterator \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__functional_base \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/tuple \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stdexcept \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/atomic \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cassert \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/assert.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/functional \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/bit \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cstdio \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cwchar \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cwctype \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cctype \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_wctrans_t.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/mutex \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__mutex_base \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/chrono \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ctime \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/ratio \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/climits \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/limits.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/machine/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/i386/_limits.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/syslimits.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/system_error \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__errc \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/cerrno \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/errno.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/errno.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__threading_support \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/sched.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/pthread_impl.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_pthread/_pthread_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/pthread/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/qos.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_mach_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sched.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_locale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_xlocale.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_ctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/__wctype.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdio.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_stdlib.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_string.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_time.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wchar.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/stddef.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_wctype.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/streambuf \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/locale \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/nl_types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/types.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_char.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_short.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_u_int.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_caddr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_blksize_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_gid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_addr_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_in_port_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_ino64_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_key_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_nlink_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_useconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_suseconds_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_def.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_setsize.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_clr.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_zero.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_isset.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fd_copy.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_types/_nl_item.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__bsd_locale_defaults.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/bitset \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__bit_reference \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/vector \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__split_buffer \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-internal.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/stat.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_s_ifmt.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_filesec_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/AvailabilityMacros.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/TargetConditionals.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iostream \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/istream \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/sstream \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-port-arch.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-port.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/unistd.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/unistd.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_posix_vdisable.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_seek_set.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/select.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_select.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/sys/_types/_uuid_t.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/gethostuuid.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/regex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/_regex.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/xlocale/_regex.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/float.h \ + /Library/Developer/CommandLineTools/usr/lib/clang/12.0.0/include/float.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/float.h \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/iomanip \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/map \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__tree \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__node_handle \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/optional \ + /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/set \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-message.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-filepath.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-string.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-type-util.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/cxxabi.h \ + /Library/Developer/CommandLineTools/SDKs/MacOSX11.1.sdk/usr/include/__cxxabi_config.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-death-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-death-test-internal.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-param-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-linked_ptr.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-printers.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/custom/gtest-printers.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/internal/gtest-param-util-generated.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_prod.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-test-part.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest-typed-test.h \ + /Users/ksenia55/labor5/third-party/gtest/googletest/include/gtest/gtest_pred_impl.h diff --git a/_build/third-party/gtest/googlemock/gtest/CMakeFiles/progress.marks b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/progress.marks new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CMakeFiles/progress.marks @@ -0,0 +1 @@ +4 diff --git a/_build/third-party/gtest/googlemock/gtest/CTestTestfile.cmake b/_build/third-party/gtest/googlemock/gtest/CTestTestfile.cmake new file mode 100644 index 0000000..90fc030 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/CTestTestfile.cmake @@ -0,0 +1,6 @@ +# CMake generated Testfile for +# Source directory: /Users/ksenia55/labor5/third-party/gtest/googletest +# Build directory: /Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. diff --git a/_build/third-party/gtest/googlemock/gtest/Makefile b/_build/third-party/gtest/googlemock/gtest/Makefile new file mode 100644 index 0000000..0f5e3ee --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/Makefile @@ -0,0 +1,284 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.25 + +# 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 = /usr/local/Cellar/cmake/3.25.2/bin/cmake + +# The command to remove a file. +RM = /usr/local/Cellar/cmake/3.25.2/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /Users/ksenia55/labor5 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /Users/ksenia55/labor5/_build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." + /usr/local/Cellar/cmake/3.25.2/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 "Running CMake cache editor..." + /usr/local/Cellar/cmake/3.25.2/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/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..." + /usr/local/Cellar/cmake/3.25.2/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip/fast + +# The main all target +all: cmake_check_build_system + cd /Users/ksenia55/labor5/_build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/ksenia55/labor5/_build/CMakeFiles /Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest//CMakeFiles/progress.marks + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 third-party/gtest/googlemock/gtest/all + $(CMAKE_COMMAND) -E cmake_progress_start /Users/ksenia55/labor5/_build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 third-party/gtest/googlemock/gtest/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 third-party/gtest/googlemock/gtest/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 third-party/gtest/googlemock/gtest/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /Users/ksenia55/labor5/_build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule +.PHONY : third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule + +# Convenience name for target. +gtest: third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/rule +.PHONY : gtest + +# fast build rule for target. +gtest/fast: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build +.PHONY : gtest/fast + +# Convenience name for target. +third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule +.PHONY : third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule + +# Convenience name for target. +gtest_main: third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/rule +.PHONY : gtest_main + +# fast build rule for target. +gtest_main/fast: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build +.PHONY : gtest_main/fast + +src/gtest-all.o: src/gtest-all.cc.o +.PHONY : src/gtest-all.o + +# target to build an object file +src/gtest-all.cc.o: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.o +.PHONY : src/gtest-all.cc.o + +src/gtest-all.i: src/gtest-all.cc.i +.PHONY : src/gtest-all.i + +# target to preprocess a source file +src/gtest-all.cc.i: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.i +.PHONY : src/gtest-all.cc.i + +src/gtest-all.s: src/gtest-all.cc.s +.PHONY : src/gtest-all.s + +# target to generate assembly for a file +src/gtest-all.cc.s: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/build.make third-party/gtest/googlemock/gtest/CMakeFiles/gtest.dir/src/gtest-all.cc.s +.PHONY : src/gtest-all.cc.s + +src/gtest_main.o: src/gtest_main.cc.o +.PHONY : src/gtest_main.o + +# target to build an object file +src/gtest_main.cc.o: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o +.PHONY : src/gtest_main.cc.o + +src/gtest_main.i: src/gtest_main.cc.i +.PHONY : src/gtest_main.i + +# target to preprocess a source file +src/gtest_main.cc.i: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.i +.PHONY : src/gtest_main.cc.i + +src/gtest_main.s: src/gtest_main.cc.s +.PHONY : src/gtest_main.s + +# target to generate assembly for a file +src/gtest_main.cc.s: + cd /Users/ksenia55/labor5/_build && $(MAKE) $(MAKESILENT) -f third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/build.make third-party/gtest/googlemock/gtest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.s +.PHONY : src/gtest_main.cc.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 "... gtest" + @echo "... gtest_main" + @echo "... src/gtest-all.o" + @echo "... src/gtest-all.i" + @echo "... src/gtest-all.s" + @echo "... src/gtest_main.o" + @echo "... src/gtest_main.i" + @echo "... src/gtest_main.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: + cd /Users/ksenia55/labor5/_build && $(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/_build/third-party/gtest/googlemock/gtest/cmake_install.cmake b/_build/third-party/gtest/googlemock/gtest/cmake_install.cmake new file mode 100644 index 0000000..c1fea75 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/cmake_install.cmake @@ -0,0 +1,97 @@ +# Install script for directory: /Users/ksenia55/labor5/third-party/gtest/googletest + +# 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 "") + 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() + +# 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 "/Library/Developer/CommandLineTools/usr/bin/objdump") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest/GTestTargets.cmake") + file(DIFFERENT _cmake_export_file_changed FILES + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest/GTestTargets.cmake" + "/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets.cmake") + if(_cmake_export_file_changed) + file(GLOB _cmake_old_config_files "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest/GTestTargets-*.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/GTest/GTestTargets.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/GTest" TYPE FILE FILES "/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets.cmake") + if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^()$") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest" TYPE FILE FILES "/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets-noconfig.cmake") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest" TYPE FILE FILES + "/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/generated/GTestConfigVersion.cmake" + "/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/generated/GTestConfig.cmake" + ) +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include" TYPE DIRECTORY FILES "/Users/ksenia55/labor5/third-party/gtest/googletest/include/") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/libgtest.a") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgtest.a" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgtest.a") + execute_process(COMMAND "/Library/Developer/CommandLineTools/usr/bin/ranlib" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgtest.a") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/libgtest_main.a") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgtest_main.a" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgtest_main.a") + execute_process(COMMAND "/Library/Developer/CommandLineTools/usr/bin/ranlib" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libgtest_main.a") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/generated/gtest.pc") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "/Users/ksenia55/labor5/_build/third-party/gtest/googlemock/gtest/generated/gtest_main.pc") +endif() + diff --git a/_build/third-party/gtest/googlemock/gtest/generated/GTestConfig.cmake b/_build/third-party/gtest/googlemock/gtest/generated/GTestConfig.cmake new file mode 100644 index 0000000..0ee9ec8 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/generated/GTestConfig.cmake @@ -0,0 +1,33 @@ + +####### 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 Config.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() + +#################################################################################### +include(CMakeFindDependencyMacro) +if (ON) + set(THREADS_PREFER_PTHREAD_FLAG ON) + find_dependency(Threads) +endif() + +include("${CMAKE_CURRENT_LIST_DIR}/GTestTargets.cmake") +check_required_components("") diff --git a/_build/third-party/gtest/googlemock/gtest/generated/GTestConfigVersion.cmake b/_build/third-party/gtest/googlemock/gtest/generated/GTestConfigVersion.cmake new file mode 100644 index 0000000..ff22137 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/generated/GTestConfigVersion.cmake @@ -0,0 +1,48 @@ +# 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. +# The variable CVF_VERSION must be set before calling configure_file(). + +set(PACKAGE_VERSION "1.9.0") + +if (PACKAGE_FIND_VERSION_RANGE) + # Package version must be in the requested version range + if ((PACKAGE_FIND_VERSION_RANGE_MIN STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MIN) + OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_GREATER PACKAGE_FIND_VERSION_MAX) + OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_GREATER_EQUAL PACKAGE_FIND_VERSION_MAX))) + set(PACKAGE_VERSION_COMPATIBLE FALSE) + else() + set(PACKAGE_VERSION_COMPATIBLE TRUE) + endif() +else() + if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) + set(PACKAGE_VERSION_COMPATIBLE FALSE) + else() + set(PACKAGE_VERSION_COMPATIBLE TRUE) + if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) + set(PACKAGE_VERSION_EXACT TRUE) + endif() + endif() +endif() + + +# if the installed project requested no architecture check, don't perform the check +if("FALSE") + return() +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/_build/third-party/gtest/googlemock/gtest/generated/gmock.pc b/_build/third-party/gtest/googlemock/gtest/generated/gmock.pc new file mode 100644 index 0000000..dd45b5f --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/generated/gmock.pc @@ -0,0 +1,9 @@ +libdir=/usr/local/lib +includedir=/usr/local/include + +Name: gmock +Description: GoogleMock (without main() function) +Version: 1.9.0 +URL: https://github.com/google/googletest +Libs: -L${libdir} -lgmock +Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1 diff --git a/_build/third-party/gtest/googlemock/gtest/generated/gmock_main.pc b/_build/third-party/gtest/googlemock/gtest/generated/gmock_main.pc new file mode 100644 index 0000000..ad1e97b --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/generated/gmock_main.pc @@ -0,0 +1,9 @@ +libdir=/usr/local/lib +includedir=/usr/local/include + +Name: gmock_main +Description: GoogleMock (with main() function) +Version: 1.9.0 +URL: https://github.com/google/googletest +Libs: -L${libdir} -lgmock_main +Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1 diff --git a/_build/third-party/gtest/googlemock/gtest/generated/gtest.pc b/_build/third-party/gtest/googlemock/gtest/generated/gtest.pc new file mode 100644 index 0000000..c7c84e6 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/generated/gtest.pc @@ -0,0 +1,9 @@ +libdir=/usr/local/lib +includedir=/usr/local/include + +Name: gtest +Description: GoogleTest (without main() function) +Version: 1.9.0 +URL: https://github.com/google/googletest +Libs: -L${libdir} -lgtest +Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1 diff --git a/_build/third-party/gtest/googlemock/gtest/generated/gtest_main.pc b/_build/third-party/gtest/googlemock/gtest/generated/gtest_main.pc new file mode 100644 index 0000000..4c5d885 --- /dev/null +++ b/_build/third-party/gtest/googlemock/gtest/generated/gtest_main.pc @@ -0,0 +1,10 @@ +libdir=/usr/local/lib +includedir=/usr/local/include + +Name: gtest_main +Description: GoogleTest (with main() function) +Version: 1.9.0 +URL: https://github.com/google/googletest +Requires: gtest +Libs: -L${libdir} -lgtest_main +Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1 diff --git a/_build/third-party/gtest/googlemock/gtest/libgtest.a b/_build/third-party/gtest/googlemock/gtest/libgtest.a new file mode 100644 index 0000000..f34d136 Binary files /dev/null and b/_build/third-party/gtest/googlemock/gtest/libgtest.a differ diff --git a/_build/third-party/gtest/googlemock/gtest/libgtest_main.a b/_build/third-party/gtest/googlemock/gtest/libgtest_main.a new file mode 100644 index 0000000..290d935 Binary files /dev/null and b/_build/third-party/gtest/googlemock/gtest/libgtest_main.a differ diff --git a/badge.svg b/badge.svg new file mode 100644 index 0000000..85ddce6 --- /dev/null +++ b/badge.svg @@ -0,0 +1 @@ +404: badge not found404badge not found \ No newline at end of file diff --git a/banking/.DS_Store b/banking/.DS_Store new file mode 100644 index 0000000..469c431 Binary files /dev/null and b/banking/.DS_Store differ diff --git a/banking/Transaction.cpp b/banking/Transaction.cpp index 4ba5198..50738ac 100644 --- a/banking/Transaction.cpp +++ b/banking/Transaction.cpp @@ -36,7 +36,7 @@ bool Transaction::Make(Account& from, Account& to, int sum) { Credit(to, sum); - bool success = Debit(to, sum + fee_); + bool success = Debit(from, sum + fee_); //тут была исправлена ошибка. Изначально было Debit(to, sum + fee_) if (!success) to.ChangeBalance(-sum); SaveToDataBase(from, to, sum); diff --git a/banking/idea/.DS_Store b/banking/idea/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/banking/idea/.DS_Store differ diff --git a/banking/idea/.gitignore b/banking/idea/.gitignore new file mode 100644 index 0000000..1c2fda5 --- /dev/null +++ b/banking/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/banking/idea/banking.iml b/banking/idea/banking.iml new file mode 100644 index 0000000..e1691ab --- /dev/null +++ b/banking/idea/banking.iml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/banking/idea/modules.xml b/banking/idea/modules.xml new file mode 100644 index 0000000..3282f46 --- /dev/null +++ b/banking/idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/banking/idea/vcs.xml b/banking/idea/vcs.xml new file mode 100644 index 0000000..4cb07b3 --- /dev/null +++ b/banking/idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/coverage/Icov.info b/coverage/Icov.info new file mode 100644 index 0000000..e69de29 diff --git a/tests/.DS_Store b/tests/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/tests/.DS_Store differ diff --git a/tests/test_Account.cpp b/tests/test_Account.cpp new file mode 100644 index 0000000..bb009e1 --- /dev/null +++ b/tests/test_Account.cpp @@ -0,0 +1,21 @@ +#include +#include + +TEST(Account, Banking){ +//создаём тестовый объект + Account test(0,0); +//проверяем GetBalance (и заодно конструктор) + ASSERT_EQ(test.GetBalance(), 0); +//проверяем, что фича lock работает нормально + ASSERT_THROW(test.ChangeBalance(100), std::runtime_error); + test.Lock(); + ASSERT_NO_THROW(test.ChangeBalance(100)); +//проверяем, что изменение баланса работает + ASSERT_EQ(test.GetBalance(), 100); +//проверяем, что залочить уже залоченное нельзя + ASSERT_THROW(test.Lock(), std::runtime_error); +//проверяем, что анлок работает + test.Unlock(); + ASSERT_THROW(test.ChangeBalance(100), std::runtime_error); +//радуемся жизни +} diff --git a/tests/test_Transaction.cpp b/tests/test_Transaction.cpp new file mode 100644 index 0000000..1519ad8 --- /dev/null +++ b/tests/test_Transaction.cpp @@ -0,0 +1,33 @@ +#include +#include +#include + +TEST(Transaction, Banking){ +//создаём константы. base_fee для полноценного теста должен быть хотя бы 51. + const int base_A = 5000, base_B = 5000, base_fee = 100; +//создаём тестовые объекты + Account Alice(0,base_A), Bob(1,base_B); + Transaction test_tran; +//проверяем конструктор по умолчанию и сеттеры-геттеры + ASSERT_EQ(test_tran.fee(), 1); + test_tran.set_fee(base_fee); + ASSERT_EQ(test_tran.fee(), base_fee); +//проверяем случаи когда транзакция не проходит + ASSERT_THROW(test_tran.Make(Alice, Alice, 1000), std::logic_error); + ASSERT_THROW(test_tran.Make(Alice, Bob, -50), std::invalid_argument); + ASSERT_THROW(test_tran.Make(Alice, Bob, 50), std::logic_error); + if (test_tran.fee()*2-1 >= 100) + ASSERT_EQ(test_tran.Make(Alice, Bob, test_tran.fee()*2-1), false); +//проверяем, что всё правильно лочится + Alice.Lock(); + ASSERT_THROW(test_tran.Make(Alice, Bob, 1000), std::runtime_error); + Alice.Unlock(); +//проверяем что если входные параметры правильные, то транзакция проходит православно + ASSERT_EQ(test_tran.Make(Alice, Bob, 1000), true); + ASSERT_EQ(Bob.GetBalance(), base_B+1000); + ASSERT_EQ(Alice.GetBalance(), base_A-1000-base_fee); +//проверяем что транзакция не проходит, если не хватает средств + ASSERT_EQ(test_tran.Make(Alice, Bob, 3900), false); + ASSERT_EQ(Bob.GetBalance(), base_B+1000); + ASSERT_EQ(Alice.GetBalance(), base_A-1000-base_fee); +} diff --git a/third-party/.DS_Store b/third-party/.DS_Store new file mode 100644 index 0000000..26b7823 Binary files /dev/null and b/third-party/.DS_Store differ diff --git a/third-party/gtest b/third-party/gtest new file mode 160000 index 0000000..2fe3bd9 --- /dev/null +++ b/third-party/gtest @@ -0,0 +1 @@ +Subproject commit 2fe3bd994b3189899d93f1d5a881e725e046fdc2