From cd1f96022cd79a2fb941ecf62429870a6caa8958 Mon Sep 17 00:00:00 2001 From: Love Billenius Date: Thu, 1 Aug 2024 16:00:40 +0200 Subject: [PATCH] some changes --- CMakeLists.txt | 14 +- .../.cmake/api/v1/query/cache-v2 | 0 .../.cmake/api/v1/query/cmakeFiles-v1 | 0 .../.cmake/api/v1/query/codemodel-v2 | 0 .../.cmake/api/v1/query/toolchains-v1 | 0 .../reply/cache-v2-f3dd4993d2a31adf07fc.json | 1327 ----------------- .../cmakeFiles-v1-a9713d0eb26ffcdb9f0c.json | 793 ---------- .../codemodel-v2-eb524d5c8b7e2a82889e.json | 60 - ...irectory-.-Debug-d0094a50bb2071803777.json | 14 - .../reply/index-2024-08-01T13-15-03-0158.json | 108 -- ...t-hang_man-Debug-ee1c830d361c5aa53aab.json | 106 -- .../toolchains-v1-bed37bf679256979c644.json | 144 -- cmake-build-debug/CMakeCache.txt | 421 ------ .../CMakeFiles/3.27.8/CMakeCCompiler.cmake | 74 - .../CMakeFiles/3.27.8/CMakeCXXCompiler.cmake | 85 -- .../3.27.8/CMakeDetermineCompilerABI_C.bin | Bin 43069 -> 0 bytes .../3.27.8/CMakeDetermineCompilerABI_CXX.bin | Bin 43088 -> 0 bytes .../CMakeFiles/3.27.8/CMakeRCCompiler.cmake | 6 - .../CMakeFiles/3.27.8/CMakeSystem.cmake | 15 - .../3.27.8/CompilerIdC/CMakeCCompilerId.c | 866 ----------- .../CMakeFiles/3.27.8/CompilerIdC/a.exe | Bin 43144 -> 0 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 855 ----------- .../CMakeFiles/3.27.8/CompilerIdCXX/a.exe | Bin 43172 -> 0 bytes .../CMakeFiles/CMakeConfigureLog.yaml | 524 ------- .../CMakeFiles/TargetDirectories.txt | 3 - .../CMakeFiles/clion-Debug-log.txt | 15 - .../CMakeFiles/clion-environment.txt | 4 - .../CMakeFiles/cmake.check_cache | 1 - cmake-build-debug/CMakeFiles/rules.ninja | 64 - .../Testing/Temporary/LastTest.log | 3 - cmake-build-debug/build.ninja | 149 -- cmake-build-debug/cmake_install.cmake | 49 - main.cpp => src/main.cpp | 0 vcpkg.json | 3 +- 34 files changed, 13 insertions(+), 5690 deletions(-) delete mode 100644 cmake-build-debug/.cmake/api/v1/query/cache-v2 delete mode 100644 cmake-build-debug/.cmake/api/v1/query/cmakeFiles-v1 delete mode 100644 cmake-build-debug/.cmake/api/v1/query/codemodel-v2 delete mode 100644 cmake-build-debug/.cmake/api/v1/query/toolchains-v1 delete mode 100644 cmake-build-debug/.cmake/api/v1/reply/cache-v2-f3dd4993d2a31adf07fc.json delete mode 100644 cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-a9713d0eb26ffcdb9f0c.json delete mode 100644 cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-eb524d5c8b7e2a82889e.json delete mode 100644 cmake-build-debug/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json delete mode 100644 cmake-build-debug/.cmake/api/v1/reply/index-2024-08-01T13-15-03-0158.json delete mode 100644 cmake-build-debug/.cmake/api/v1/reply/target-hang_man-Debug-ee1c830d361c5aa53aab.json delete mode 100644 cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-bed37bf679256979c644.json delete mode 100644 cmake-build-debug/CMakeCache.txt delete mode 100644 cmake-build-debug/CMakeFiles/3.27.8/CMakeCCompiler.cmake delete mode 100644 cmake-build-debug/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake delete mode 100644 cmake-build-debug/CMakeFiles/3.27.8/CMakeDetermineCompilerABI_C.bin delete mode 100644 cmake-build-debug/CMakeFiles/3.27.8/CMakeDetermineCompilerABI_CXX.bin delete mode 100644 cmake-build-debug/CMakeFiles/3.27.8/CMakeRCCompiler.cmake delete mode 100644 cmake-build-debug/CMakeFiles/3.27.8/CMakeSystem.cmake delete mode 100644 cmake-build-debug/CMakeFiles/3.27.8/CompilerIdC/CMakeCCompilerId.c delete mode 100644 cmake-build-debug/CMakeFiles/3.27.8/CompilerIdC/a.exe delete mode 100644 cmake-build-debug/CMakeFiles/3.27.8/CompilerIdCXX/CMakeCXXCompilerId.cpp delete mode 100644 cmake-build-debug/CMakeFiles/3.27.8/CompilerIdCXX/a.exe delete mode 100644 cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml delete mode 100644 cmake-build-debug/CMakeFiles/TargetDirectories.txt delete mode 100644 cmake-build-debug/CMakeFiles/clion-Debug-log.txt delete mode 100644 cmake-build-debug/CMakeFiles/clion-environment.txt delete mode 100644 cmake-build-debug/CMakeFiles/cmake.check_cache delete mode 100644 cmake-build-debug/CMakeFiles/rules.ninja delete mode 100644 cmake-build-debug/Testing/Temporary/LastTest.log delete mode 100644 cmake-build-debug/build.ninja delete mode 100644 cmake-build-debug/cmake_install.cmake rename main.cpp => src/main.cpp (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8983a4d..0ac52d2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,9 +3,17 @@ project(hang_man) set(CMAKE_CXX_STANDARD 20) +if (NOT DEFINED CMAKE_TOOLCHAIN_FILE) + set(CMAKE_TOOLCHAIN_FILE "${CMAKE_SOURCE_DIR}/vcpkg/scripts/buildsystems/vcpkg.cmake") +endif () -find_package(SDL2 REQUIRED CONFIG) +find_package(SDL2 CONFIG REQUIRED) +find_package(CURL REQUIRED) -add_executable(hang_man main.cpp) +add_executable(hang_man src/main.cpp) -target_link_libraries(hang_man SDL2::SDL2 SDL2::SDL2main) +target_link_libraries(hang_man PRIVATE + SDL2::SDL2 + SDL2::SDL2main + CURL::libcurl +) diff --git a/cmake-build-debug/.cmake/api/v1/query/cache-v2 b/cmake-build-debug/.cmake/api/v1/query/cache-v2 deleted file mode 100644 index e69de29..0000000 diff --git a/cmake-build-debug/.cmake/api/v1/query/cmakeFiles-v1 b/cmake-build-debug/.cmake/api/v1/query/cmakeFiles-v1 deleted file mode 100644 index e69de29..0000000 diff --git a/cmake-build-debug/.cmake/api/v1/query/codemodel-v2 b/cmake-build-debug/.cmake/api/v1/query/codemodel-v2 deleted file mode 100644 index e69de29..0000000 diff --git a/cmake-build-debug/.cmake/api/v1/query/toolchains-v1 b/cmake-build-debug/.cmake/api/v1/query/toolchains-v1 deleted file mode 100644 index e69de29..0000000 diff --git a/cmake-build-debug/.cmake/api/v1/reply/cache-v2-f3dd4993d2a31adf07fc.json b/cmake-build-debug/.cmake/api/v1/reply/cache-v2-f3dd4993d2a31adf07fc.json deleted file mode 100644 index f92bc19..0000000 --- a/cmake-build-debug/.cmake/api/v1/reply/cache-v2-f3dd4993d2a31adf07fc.json +++ /dev/null @@ -1,1327 +0,0 @@ -{ - "entries" : - [ - { - "name" : "CMAKE_ADDR2LINE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/addr2line.exe" - }, - { - "name" : "CMAKE_AR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/ar.exe" - }, - { - "name" : "CMAKE_BUILD_TYPE", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." - } - ], - "type" : "STRING", - "value" : "Debug" - }, - { - "name" : "CMAKE_CACHEFILE_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "This is the directory where this CMakeCache.txt was created" - } - ], - "type" : "INTERNAL", - "value" : "c:/Users/Love/Documents/Code/hang-man/cmake-build-debug" - }, - { - "name" : "CMAKE_CACHE_MAJOR_VERSION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Major version of cmake used to create the current loaded cache" - } - ], - "type" : "INTERNAL", - "value" : "3" - }, - { - "name" : "CMAKE_CACHE_MINOR_VERSION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Minor version of cmake used to create the current loaded cache" - } - ], - "type" : "INTERNAL", - "value" : "27" - }, - { - "name" : "CMAKE_CACHE_PATCH_VERSION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Patch version of cmake used to create the current loaded cache" - } - ], - "type" : "INTERNAL", - "value" : "8" - }, - { - "name" : "CMAKE_COLOR_DIAGNOSTICS", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Enable colored diagnostics throughout." - } - ], - "type" : "BOOL", - "value" : "ON" - }, - { - "name" : "CMAKE_COMMAND", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to CMake executable." - } - ], - "type" : "INTERNAL", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/cmake.exe" - }, - { - "name" : "CMAKE_CPACK_COMMAND", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to cpack program executable." - } - ], - "type" : "INTERNAL", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/cpack.exe" - }, - { - "name" : "CMAKE_CTEST_COMMAND", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to ctest program executable." - } - ], - "type" : "INTERNAL", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/ctest.exe" - }, - { - "name" : "CMAKE_CXX_COMPILER", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "CXX compiler" - } - ], - "type" : "FILEPATH", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/g++.exe" - }, - { - "name" : "CMAKE_CXX_COMPILER_AR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" - } - ], - "type" : "FILEPATH", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/gcc-ar.exe" - }, - { - "name" : "CMAKE_CXX_COMPILER_RANLIB", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" - } - ], - "type" : "FILEPATH", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/gcc-ranlib.exe" - }, - { - "name" : "CMAKE_CXX_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_CXX_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "-g" - }, - { - "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "-Os -DNDEBUG" - }, - { - "name" : "CMAKE_CXX_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "-O3 -DNDEBUG" - }, - { - "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "-O2 -g -DNDEBUG" - }, - { - "name" : "CMAKE_CXX_STANDARD_LIBRARIES", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Libraries linked by default with all C++ applications." - } - ], - "type" : "STRING", - "value" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32" - }, - { - "name" : "CMAKE_C_COMPILER", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "C compiler" - } - ], - "type" : "FILEPATH", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/gcc.exe" - }, - { - "name" : "CMAKE_C_COMPILER_AR", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" - } - ], - "type" : "FILEPATH", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/gcc-ar.exe" - }, - { - "name" : "CMAKE_C_COMPILER_RANLIB", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" - } - ], - "type" : "FILEPATH", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/gcc-ranlib.exe" - }, - { - "name" : "CMAKE_C_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the C compiler during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_C_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the C compiler during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "-g" - }, - { - "name" : "CMAKE_C_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the C compiler during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "-Os -DNDEBUG" - }, - { - "name" : "CMAKE_C_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the C compiler during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "-O3 -DNDEBUG" - }, - { - "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "-O2 -g -DNDEBUG" - }, - { - "name" : "CMAKE_C_STANDARD_LIBRARIES", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Libraries linked by default with all C applications." - } - ], - "type" : "STRING", - "value" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32" - }, - { - "name" : "CMAKE_DLLTOOL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/dlltool.exe" - }, - { - "name" : "CMAKE_EXECUTABLE_FORMAT", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Executable file format" - } - ], - "type" : "INTERNAL", - "value" : "Unknown" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Enable/Disable output of compile commands during generation." - } - ], - "type" : "BOOL", - "value" : "" - }, - { - "name" : "CMAKE_EXTRA_GENERATOR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Name of external makefile project generator." - } - ], - "type" : "INTERNAL", - "value" : "" - }, - { - "name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake." - } - ], - "type" : "STATIC", - "value" : "C:/Users/Love/Documents/Code/hang-man/cmake-build-debug/CMakeFiles/pkgRedirects" - }, - { - "name" : "CMAKE_GENERATOR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Name of generator." - } - ], - "type" : "INTERNAL", - "value" : "Ninja" - }, - { - "name" : "CMAKE_GENERATOR_INSTANCE", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Generator instance identifier." - } - ], - "type" : "INTERNAL", - "value" : "" - }, - { - "name" : "CMAKE_GENERATOR_PLATFORM", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Name of generator platform." - } - ], - "type" : "INTERNAL", - "value" : "" - }, - { - "name" : "CMAKE_GENERATOR_TOOLSET", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Name of generator toolset." - } - ], - "type" : "INTERNAL", - "value" : "" - }, - { - "name" : "CMAKE_GNUtoMS", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Convert GNU import libraries to MS format (requires Visual Studio)" - } - ], - "type" : "BOOL", - "value" : "OFF" - }, - { - "name" : "CMAKE_HOME_DIRECTORY", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Source directory with the top level CMakeLists.txt file for this project" - } - ], - "type" : "INTERNAL", - "value" : "C:/Users/Love/Documents/Code/hang-man" - }, - { - "name" : "CMAKE_INSTALL_PREFIX", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Install path prefix, prepended onto install directories." - } - ], - "type" : "PATH", - "value" : "C:/Program Files (x86)/hang_man" - }, - { - "name" : "CMAKE_LINKER", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/ld.exe" - }, - { - "name" : "CMAKE_MAKE_PROGRAM", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "No help, variable specified on the command line." - } - ], - "type" : "UNINITIALIZED", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/ninja/win/x64/ninja.exe" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_NM", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/nm.exe" - }, - { - "name" : "CMAKE_NUMBER_OF_MAKEFILES", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "number of local generators" - } - ], - "type" : "INTERNAL", - "value" : "1" - }, - { - "name" : "CMAKE_OBJCOPY", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/objcopy.exe" - }, - { - "name" : "CMAKE_OBJDUMP", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/objdump.exe" - }, - { - "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Platform information initialized" - } - ], - "type" : "INTERNAL", - "value" : "1" - }, - { - "name" : "CMAKE_PROJECT_DESCRIPTION", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "" - }, - { - "name" : "CMAKE_PROJECT_HOMEPAGE_URL", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "" - }, - { - "name" : "CMAKE_PROJECT_NAME", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "hang_man" - }, - { - "name" : "CMAKE_RANLIB", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/ranlib.exe" - }, - { - "name" : "CMAKE_RC_COMPILER", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "RC compiler" - } - ], - "type" : "FILEPATH", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/windres.exe" - }, - { - "name" : "CMAKE_RC_COMPILER_WORKS", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "" - } - ], - "type" : "INTERNAL", - "value" : "1" - }, - { - "name" : "CMAKE_RC_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags for Windows Resource Compiler during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_RC_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags for Windows Resource Compiler during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_RC_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags for Windows Resource Compiler during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_RC_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags for Windows Resource Compiler during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_RC_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags for Windows Resource Compiler during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_READELF", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/readelf.exe" - }, - { - "name" : "CMAKE_ROOT", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Path to CMake installation." - } - ], - "type" : "INTERNAL", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_SKIP_INSTALL_RPATH", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." - } - ], - "type" : "BOOL", - "value" : "NO" - }, - { - "name" : "CMAKE_SKIP_RPATH", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "If set, runtime paths are not added when using shared libraries." - } - ], - "type" : "BOOL", - "value" : "NO" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during all build types." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." - } - ], - "type" : "STRING", - "value" : "" - }, - { - "name" : "CMAKE_STRIP", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/strip.exe" - }, - { - "name" : "CMAKE_TAPI", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "Path to a program." - } - ], - "type" : "FILEPATH", - "value" : "CMAKE_TAPI-NOTFOUND" - }, - { - "name" : "CMAKE_VERBOSE_MAKEFILE", - "properties" : - [ - { - "name" : "ADVANCED", - "value" : "1" - }, - { - "name" : "HELPSTRING", - "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." - } - ], - "type" : "BOOL", - "value" : "FALSE" - }, - { - "name" : "_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "linker supports push/pop state" - } - ], - "type" : "INTERNAL", - "value" : "TRUE" - }, - { - "name" : "hang_man_BINARY_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "C:/Users/Love/Documents/Code/hang-man/cmake-build-debug" - }, - { - "name" : "hang_man_IS_TOP_LEVEL", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "ON" - }, - { - "name" : "hang_man_SOURCE_DIR", - "properties" : - [ - { - "name" : "HELPSTRING", - "value" : "Value Computed by CMake" - } - ], - "type" : "STATIC", - "value" : "C:/Users/Love/Documents/Code/hang-man" - } - ], - "kind" : "cache", - "version" : - { - "major" : 2, - "minor" : 0 - } -} diff --git a/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-a9713d0eb26ffcdb9f0c.json b/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-a9713d0eb26ffcdb9f0c.json deleted file mode 100644 index eef72c9..0000000 --- a/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-a9713d0eb26ffcdb9f0c.json +++ /dev/null @@ -1,793 +0,0 @@ -{ - "inputs" : - [ - { - "path" : "CMakeLists.txt" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineSystem.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeSystem.cmake.in" - }, - { - "isGenerated" : true, - "path" : "cmake-build-debug/CMakeFiles/3.27.8/CMakeSystem.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-Initialize.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCompilerIdDetection.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/ADSP-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/ARMCC-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/ARMClang-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/AppleClang-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Borland-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Clang-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Cray-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GHS-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GNU-C-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/HP-C-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IAR-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Intel-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/LCC-C-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/MSVC-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/NVHPC-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/PGI-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/PathScale-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/SCO-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/TI-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Tasking-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Watcom-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/XL-C-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/zOS-C-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeFindBinUtils.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GNU-FindBinUtils.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCCompiler.cmake.in" - }, - { - "isGenerated" : true, - "path" : "cmake-build-debug/CMakeFiles/3.27.8/CMakeCCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCXXCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-Determine-CXX.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCompilerIdDetection.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/ADSP-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/ARMCC-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/ARMClang-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/AppleClang-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Borland-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Clang-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Cray-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GHS-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IAR-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Intel-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/MSVC-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/NVHPC-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/PGI-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/PathScale-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/SCO-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/TI-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Tasking-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Watcom-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeFindBinUtils.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GNU-FindBinUtils.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCXXCompiler.cmake.in" - }, - { - "isGenerated" : true, - "path" : "cmake-build-debug/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeGenericSystem.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/WindowsPaths.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-GNU-C.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-GNU.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineRCCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeRCCompiler.cmake.in" - }, - { - "isGenerated" : true, - "path" : "cmake-build-debug/CMakeFiles/3.27.8/CMakeRCCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeRCInformation.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-windres.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestRCCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestCCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestCompilerCommon.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeParseImplicitIncludeInfo.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeParseImplicitLinkInfo.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeParseLibraryArchitecture.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestCompilerCommon.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCCompilerABI.c" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompileFeatures.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Internal/FeatureTesting.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCCompiler.cmake.in" - }, - { - "isGenerated" : true, - "path" : "cmake-build-debug/CMakeFiles/3.27.8/CMakeCCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-GNU-C-ABI.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-GNU-CXX.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-GNU.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestCompilerCommon.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeParseImplicitIncludeInfo.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeParseImplicitLinkInfo.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeParseLibraryArchitecture.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestCompilerCommon.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompileFeatures.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Internal/FeatureTesting.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCXXCompiler.cmake.in" - }, - { - "isGenerated" : true, - "path" : "cmake-build-debug/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake" - }, - { - "isCMake" : true, - "isExternal" : true, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-GNU-CXX-ABI.cmake" - } - ], - "kind" : "cmakeFiles", - "paths" : - { - "build" : "C:/Users/Love/Documents/Code/hang-man/cmake-build-debug", - "source" : "C:/Users/Love/Documents/Code/hang-man" - }, - "version" : - { - "major" : 1, - "minor" : 0 - } -} diff --git a/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-eb524d5c8b7e2a82889e.json b/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-eb524d5c8b7e2a82889e.json deleted file mode 100644 index 3818a1f..0000000 --- a/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-eb524d5c8b7e2a82889e.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "configurations" : - [ - { - "directories" : - [ - { - "build" : ".", - "jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json", - "minimumCMakeVersion" : - { - "string" : "3.27" - }, - "projectIndex" : 0, - "source" : ".", - "targetIndexes" : - [ - 0 - ] - } - ], - "name" : "Debug", - "projects" : - [ - { - "directoryIndexes" : - [ - 0 - ], - "name" : "hang_man", - "targetIndexes" : - [ - 0 - ] - } - ], - "targets" : - [ - { - "directoryIndex" : 0, - "id" : "hang_man::@6890427a1f51a3e7e1df", - "jsonFile" : "target-hang_man-Debug-ee1c830d361c5aa53aab.json", - "name" : "hang_man", - "projectIndex" : 0 - } - ] - } - ], - "kind" : "codemodel", - "paths" : - { - "build" : "C:/Users/Love/Documents/Code/hang-man/cmake-build-debug", - "source" : "C:/Users/Love/Documents/Code/hang-man" - }, - "version" : - { - "major" : 2, - "minor" : 6 - } -} diff --git a/cmake-build-debug/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json b/cmake-build-debug/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json deleted file mode 100644 index 3a67af9..0000000 --- a/cmake-build-debug/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "backtraceGraph" : - { - "commands" : [], - "files" : [], - "nodes" : [] - }, - "installers" : [], - "paths" : - { - "build" : ".", - "source" : "." - } -} diff --git a/cmake-build-debug/.cmake/api/v1/reply/index-2024-08-01T13-15-03-0158.json b/cmake-build-debug/.cmake/api/v1/reply/index-2024-08-01T13-15-03-0158.json deleted file mode 100644 index 7ee0649..0000000 --- a/cmake-build-debug/.cmake/api/v1/reply/index-2024-08-01T13-15-03-0158.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cmake" : - { - "generator" : - { - "multiConfig" : false, - "name" : "Ninja" - }, - "paths" : - { - "cmake" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/cmake.exe", - "cpack" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/cpack.exe", - "ctest" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/ctest.exe", - "root" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27" - }, - "version" : - { - "isDirty" : false, - "major" : 3, - "minor" : 27, - "patch" : 8, - "string" : "3.27.8", - "suffix" : "" - } - }, - "objects" : - [ - { - "jsonFile" : "codemodel-v2-eb524d5c8b7e2a82889e.json", - "kind" : "codemodel", - "version" : - { - "major" : 2, - "minor" : 6 - } - }, - { - "jsonFile" : "cache-v2-f3dd4993d2a31adf07fc.json", - "kind" : "cache", - "version" : - { - "major" : 2, - "minor" : 0 - } - }, - { - "jsonFile" : "cmakeFiles-v1-a9713d0eb26ffcdb9f0c.json", - "kind" : "cmakeFiles", - "version" : - { - "major" : 1, - "minor" : 0 - } - }, - { - "jsonFile" : "toolchains-v1-bed37bf679256979c644.json", - "kind" : "toolchains", - "version" : - { - "major" : 1, - "minor" : 0 - } - } - ], - "reply" : - { - "cache-v2" : - { - "jsonFile" : "cache-v2-f3dd4993d2a31adf07fc.json", - "kind" : "cache", - "version" : - { - "major" : 2, - "minor" : 0 - } - }, - "cmakeFiles-v1" : - { - "jsonFile" : "cmakeFiles-v1-a9713d0eb26ffcdb9f0c.json", - "kind" : "cmakeFiles", - "version" : - { - "major" : 1, - "minor" : 0 - } - }, - "codemodel-v2" : - { - "jsonFile" : "codemodel-v2-eb524d5c8b7e2a82889e.json", - "kind" : "codemodel", - "version" : - { - "major" : 2, - "minor" : 6 - } - }, - "toolchains-v1" : - { - "jsonFile" : "toolchains-v1-bed37bf679256979c644.json", - "kind" : "toolchains", - "version" : - { - "major" : 1, - "minor" : 0 - } - } - } -} diff --git a/cmake-build-debug/.cmake/api/v1/reply/target-hang_man-Debug-ee1c830d361c5aa53aab.json b/cmake-build-debug/.cmake/api/v1/reply/target-hang_man-Debug-ee1c830d361c5aa53aab.json deleted file mode 100644 index af69254..0000000 --- a/cmake-build-debug/.cmake/api/v1/reply/target-hang_man-Debug-ee1c830d361c5aa53aab.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "artifacts" : - [ - { - "path" : "hang_man.exe" - }, - { - "path" : "hang_man.pdb" - } - ], - "backtrace" : 1, - "backtraceGraph" : - { - "commands" : - [ - "add_executable" - ], - "files" : - [ - "CMakeLists.txt" - ], - "nodes" : - [ - { - "file" : 0 - }, - { - "command" : 0, - "file" : 0, - "line" : 6, - "parent" : 0 - } - ] - }, - "compileGroups" : - [ - { - "compileCommandFragments" : - [ - { - "fragment" : "-g -std=gnu++20 -fdiagnostics-color=always" - } - ], - "language" : "CXX", - "languageStandard" : - { - "backtraces" : - [ - 1 - ], - "standard" : "20" - }, - "sourceIndexes" : - [ - 0 - ] - } - ], - "id" : "hang_man::@6890427a1f51a3e7e1df", - "link" : - { - "commandFragments" : - [ - { - "fragment" : "-g", - "role" : "flags" - }, - { - "fragment" : "", - "role" : "flags" - }, - { - "fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32", - "role" : "libraries" - } - ], - "language" : "CXX" - }, - "name" : "hang_man", - "nameOnDisk" : "hang_man.exe", - "paths" : - { - "build" : ".", - "source" : "." - }, - "sourceGroups" : - [ - { - "name" : "Source Files", - "sourceIndexes" : - [ - 0 - ] - } - ], - "sources" : - [ - { - "backtrace" : 1, - "compileGroupIndex" : 0, - "path" : "main.cpp", - "sourceGroupIndex" : 0 - } - ], - "type" : "EXECUTABLE" -} diff --git a/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-bed37bf679256979c644.json b/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-bed37bf679256979c644.json deleted file mode 100644 index 363f50d..0000000 --- a/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-bed37bf679256979c644.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "kind" : "toolchains", - "toolchains" : - [ - { - "compiler" : - { - "id" : "GNU", - "implicit" : - { - "includeDirectories" : - [ - "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include", - "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/include", - "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed", - "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/include" - ], - "linkDirectories" : - [ - "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0", - "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc", - "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/lib", - "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib" - ], - "linkFrameworkDirectories" : [], - "linkLibraries" : - [ - "mingw32", - "gcc", - "moldname", - "mingwex", - "kernel32", - "pthread", - "advapi32", - "shell32", - "user32", - "kernel32", - "iconv", - "mingw32", - "gcc", - "moldname", - "mingwex", - "kernel32" - ] - }, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/gcc.exe", - "version" : "13.1.0" - }, - "language" : "C", - "sourceFileExtensions" : - [ - "c", - "m" - ] - }, - { - "compiler" : - { - "id" : "GNU", - "implicit" : - { - "includeDirectories" : - [ - "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++", - "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32", - "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward", - "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include", - "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/include", - "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed", - "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/include" - ], - "linkDirectories" : - [ - "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0", - "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc", - "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/lib", - "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib" - ], - "linkFrameworkDirectories" : [], - "linkLibraries" : - [ - "stdc++", - "mingw32", - "gcc_s", - "gcc", - "moldname", - "mingwex", - "kernel32", - "pthread", - "advapi32", - "shell32", - "user32", - "kernel32", - "iconv", - "mingw32", - "gcc_s", - "gcc", - "moldname", - "mingwex", - "kernel32" - ] - }, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/g++.exe", - "version" : "13.1.0" - }, - "language" : "CXX", - "sourceFileExtensions" : - [ - "C", - "M", - "c++", - "cc", - "cpp", - "cxx", - "mm", - "mpp", - "CPP", - "ixx", - "cppm", - "ccm", - "cxxm", - "c++m" - ] - }, - { - "compiler" : - { - "implicit" : {}, - "path" : "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/windres.exe" - }, - "language" : "RC", - "sourceFileExtensions" : - [ - "rc", - "RC" - ] - } - ], - "version" : - { - "major" : 1, - "minor" : 0 - } -} diff --git a/cmake-build-debug/CMakeCache.txt b/cmake-build-debug/CMakeCache.txt deleted file mode 100644 index 737d040..0000000 --- a/cmake-build-debug/CMakeCache.txt +++ /dev/null @@ -1,421 +0,0 @@ -# This is the CMakeCache file. -# For build in directory: c:/Users/Love/Documents/Code/hang-man/cmake-build-debug -# It was generated by CMake: C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/cmake.exe -# You can edit this file to change values found and used by cmake. -# If you do not want to change any of the values, simply exit the editor. -# If you do want to change a value, simply edit, save, and exit the editor. -# The syntax for the file is as follows: -# KEY:TYPE=VALUE -# KEY is the name of a variable in the cache. -# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. -# VALUE is the current value for the KEY. - -######################## -# EXTERNAL cache entries -######################## - -//Path to a program. -CMAKE_ADDR2LINE:FILEPATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/addr2line.exe - -//Path to a program. -CMAKE_AR:FILEPATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/ar.exe - -//Choose the type of build, options are: None Debug Release RelWithDebInfo -// MinSizeRel ... -CMAKE_BUILD_TYPE:STRING=Debug - -//Enable colored diagnostics throughout. -CMAKE_COLOR_DIAGNOSTICS:BOOL=ON - -//CXX compiler -CMAKE_CXX_COMPILER:FILEPATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/g++.exe - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/gcc-ar.exe - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/gcc-ranlib.exe - -//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 - -//Libraries linked by default with all C++ applications. -CMAKE_CXX_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 - -//C compiler -CMAKE_C_COMPILER:FILEPATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/gcc.exe - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_AR:FILEPATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/gcc-ar.exe - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/gcc-ranlib.exe - -//Flags used by the C compiler during all build types. -CMAKE_C_FLAGS:STRING= - -//Flags used by the C compiler during 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 - -//Libraries linked by default with all C applications. -CMAKE_C_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 - -//Path to a program. -CMAKE_DLLTOOL:FILEPATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/dlltool.exe - -//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=C:/Users/Love/Documents/Code/hang-man/cmake-build-debug/CMakeFiles/pkgRedirects - -//Convert GNU import libraries to MS format (requires Visual Studio) -CMAKE_GNUtoMS:BOOL=OFF - -//Install path prefix, prepended onto install directories. -CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/hang_man - -//Path to a program. -CMAKE_LINKER:FILEPATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/ld.exe - -//No help, variable specified on the command line. -CMAKE_MAKE_PROGRAM:UNINITIALIZED=C:/Users/Love/AppData/Local/Programs/CLion/bin/ninja/win/x64/ninja.exe - -//Flags used by the linker during the creation of modules during -// all build types. -CMAKE_MODULE_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of modules during -// DEBUG builds. -CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of modules during -// MINSIZEREL builds. -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of modules during -// RELEASE builds. -CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of modules during -// RELWITHDEBINFO builds. -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_NM:FILEPATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/nm.exe - -//Path to a program. -CMAKE_OBJCOPY:FILEPATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/objcopy.exe - -//Path to a program. -CMAKE_OBJDUMP:FILEPATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/objdump.exe - -//Value Computed by CMake -CMAKE_PROJECT_DESCRIPTION:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_HOMEPAGE_URL:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_NAME:STATIC=hang_man - -//Path to a program. -CMAKE_RANLIB:FILEPATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/ranlib.exe - -//RC compiler -CMAKE_RC_COMPILER:FILEPATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/windres.exe - -//Flags for Windows Resource Compiler during all build types. -CMAKE_RC_FLAGS:STRING= - -//Flags for Windows Resource Compiler during DEBUG builds. -CMAKE_RC_FLAGS_DEBUG:STRING= - -//Flags for Windows Resource Compiler during MINSIZEREL builds. -CMAKE_RC_FLAGS_MINSIZEREL:STRING= - -//Flags for Windows Resource Compiler during RELEASE builds. -CMAKE_RC_FLAGS_RELEASE:STRING= - -//Flags for Windows Resource Compiler during RELWITHDEBINFO builds. -CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_READELF:FILEPATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/readelf.exe - -//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=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/strip.exe - -//Path to a program. -CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND - -//If this value is on, makefiles will be generated without the -// .SILENT directive, and all commands will be echoed to the console -// during the make. This is useful for debugging only. With Visual -// Studio IDE projects all commands are done without /nologo. -CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE - -//The directory containing a CMake configuration file for SDL2. -SDL2_DIR:PATH=SDL2_DIR-NOTFOUND - -//Value Computed by CMake -hang_man_BINARY_DIR:STATIC=C:/Users/Love/Documents/Code/hang-man/cmake-build-debug - -//Value Computed by CMake -hang_man_IS_TOP_LEVEL:STATIC=ON - -//Value Computed by CMake -hang_man_SOURCE_DIR:STATIC=C:/Users/Love/Documents/Code/hang-man - -//The directory containing a CMake configuration file for sdl2. -sdl2_DIR:PATH=sdl2_DIR-NOTFOUND - - -######################## -# 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=c:/Users/Love/Documents/Code/hang-man/cmake-build-debug -//Major version of cmake used to create the current loaded cache -CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 -//Minor version of cmake used to create the current loaded cache -CMAKE_CACHE_MINOR_VERSION:INTERNAL=27 -//Patch version of cmake used to create the current loaded cache -CMAKE_CACHE_PATCH_VERSION:INTERNAL=8 -//Path to CMake executable. -CMAKE_COMMAND:INTERNAL=C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/cmake.exe -//Path to cpack program executable. -CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/cpack.exe -//Path to ctest program executable. -CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/ctest.exe -//ADVANCED property for variable: CMAKE_CXX_COMPILER -CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR -CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB -CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS -CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_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_CXX_STANDARD_LIBRARIES -CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER -CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_AR -CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB -CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS -CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG -CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL -CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE -CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO -CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES -CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_DLLTOOL -CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 -//Executable file format -CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS -CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG -CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE -CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS -CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 -//Name of external makefile project generator. -CMAKE_EXTRA_GENERATOR:INTERNAL= -//Name of generator. -CMAKE_GENERATOR:INTERNAL=Ninja -//Generator instance identifier. -CMAKE_GENERATOR_INSTANCE:INTERNAL= -//Name of generator platform. -CMAKE_GENERATOR_PLATFORM:INTERNAL= -//Name of generator toolset. -CMAKE_GENERATOR_TOOLSET:INTERNAL= -//Source directory with the top level CMakeLists.txt file for this -// project -CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/Love/Documents/Code/hang-man -//ADVANCED property for variable: CMAKE_LINKER -CMAKE_LINKER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS -CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG -CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE -CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_NM -CMAKE_NM-ADVANCED:INTERNAL=1 -//number of local generators -CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJCOPY -CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJDUMP -CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 -//Platform information initialized -CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RANLIB -CMAKE_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RC_COMPILER -CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1 -CMAKE_RC_COMPILER_WORKS:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RC_FLAGS -CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG -CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL -CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE -CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO -CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_READELF -CMAKE_READELF-ADVANCED:INTERNAL=1 -//Path to CMake installation. -CMAKE_ROOT:INTERNAL=C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS -CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG -CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE -CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH -CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_RPATH -CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS -CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG -CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE -CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STRIP -CMAKE_STRIP-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_TAPI -CMAKE_TAPI-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE -CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 -//linker supports push/pop state -_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE - diff --git a/cmake-build-debug/CMakeFiles/3.27.8/CMakeCCompiler.cmake b/cmake-build-debug/CMakeFiles/3.27.8/CMakeCCompiler.cmake deleted file mode 100644 index 15a3bf8..0000000 --- a/cmake-build-debug/CMakeFiles/3.27.8/CMakeCCompiler.cmake +++ /dev/null @@ -1,74 +0,0 @@ -set(CMAKE_C_COMPILER "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/gcc.exe") -set(CMAKE_C_COMPILER_ARG1 "") -set(CMAKE_C_COMPILER_ID "GNU") -set(CMAKE_C_COMPILER_VERSION "13.1.0") -set(CMAKE_C_COMPILER_VERSION_INTERNAL "") -set(CMAKE_C_COMPILER_WRAPPER "") -set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") -set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") -set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") -set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") -set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") -set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") -set(CMAKE_C17_COMPILE_FEATURES "c_std_17") -set(CMAKE_C23_COMPILE_FEATURES "c_std_23") - -set(CMAKE_C_PLATFORM_ID "MinGW") -set(CMAKE_C_SIMULATE_ID "") -set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") -set(CMAKE_C_SIMULATE_VERSION "") - - - - -set(CMAKE_AR "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/ar.exe") -set(CMAKE_C_COMPILER_AR "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/gcc-ar.exe") -set(CMAKE_RANLIB "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/ranlib.exe") -set(CMAKE_C_COMPILER_RANLIB "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/gcc-ranlib.exe") -set(CMAKE_LINKER "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/ld.exe") -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -set(CMAKE_COMPILER_IS_GNUCC 1) -set(CMAKE_C_COMPILER_LOADED 1) -set(CMAKE_C_COMPILER_WORKS TRUE) -set(CMAKE_C_ABI_COMPILED TRUE) - -set(CMAKE_C_COMPILER_ENV_VAR "CC") - -set(CMAKE_C_COMPILER_ID_RUN 1) -set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) -set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) -set(CMAKE_C_LINKER_PREFERENCE 10) -set(CMAKE_C_LINKER_DEPFILE_SUPPORTED TRUE) - -# Save compiler ABI information. -set(CMAKE_C_SIZEOF_DATA_PTR "8") -set(CMAKE_C_COMPILER_ABI "") -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 "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/include;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/include") -set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "mingw32;gcc;moldname;mingwex;kernel32;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc;moldname;mingwex;kernel32") -set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/lib;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib") -set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/cmake-build-debug/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake b/cmake-build-debug/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake deleted file mode 100644 index 1a9c451..0000000 --- a/cmake-build-debug/CMakeFiles/3.27.8/CMakeCXXCompiler.cmake +++ /dev/null @@ -1,85 +0,0 @@ -set(CMAKE_CXX_COMPILER "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/g++.exe") -set(CMAKE_CXX_COMPILER_ARG1 "") -set(CMAKE_CXX_COMPILER_ID "GNU") -set(CMAKE_CXX_COMPILER_VERSION "13.1.0") -set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") -set(CMAKE_CXX_COMPILER_WRAPPER "") -set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") -set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") -set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") -set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") -set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") -set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") -set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") -set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") -set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") - -set(CMAKE_CXX_PLATFORM_ID "MinGW") -set(CMAKE_CXX_SIMULATE_ID "") -set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") -set(CMAKE_CXX_SIMULATE_VERSION "") - - - - -set(CMAKE_AR "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/ar.exe") -set(CMAKE_CXX_COMPILER_AR "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/gcc-ar.exe") -set(CMAKE_RANLIB "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/ranlib.exe") -set(CMAKE_CXX_COMPILER_RANLIB "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/gcc-ranlib.exe") -set(CMAKE_LINKER "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/ld.exe") -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -set(CMAKE_COMPILER_IS_GNUCXX 1) -set(CMAKE_CXX_COMPILER_LOADED 1) -set(CMAKE_CXX_COMPILER_WORKS TRUE) -set(CMAKE_CXX_ABI_COMPILED TRUE) - -set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") - -set(CMAKE_CXX_COMPILER_ID_RUN 1) -set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) -set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) - -foreach (lang C OBJC OBJCXX) - if (CMAKE_${lang}_COMPILER_ID_RUN) - foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) - list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) - endforeach() - endif() -endforeach() - -set(CMAKE_CXX_LINKER_PREFERENCE 30) -set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) -set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED TRUE) - -# Save compiler ABI information. -set(CMAKE_CXX_SIZEOF_DATA_PTR "8") -set(CMAKE_CXX_COMPILER_ABI "") -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 "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/include;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/include") -set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;mingw32;gcc_s;gcc;moldname;mingwex;kernel32;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc_s;gcc;moldname;mingwex;kernel32") -set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/lib;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib") -set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/cmake-build-debug/CMakeFiles/3.27.8/CMakeDetermineCompilerABI_C.bin b/cmake-build-debug/CMakeFiles/3.27.8/CMakeDetermineCompilerABI_C.bin deleted file mode 100644 index 0fdbc63fd572b10ff5357dcc7e20783ba9bba5e3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 43069 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 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_C) -# define COMPILER_ID "SunPro" -# if __SUNPRO_C >= 0x5100 - /* __SUNPRO_C = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# endif - -#elif defined(__HP_cc) -# define COMPILER_ID "HP" - /* __HP_cc = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) - -#elif defined(__DECC) -# define COMPILER_ID "Compaq" - /* __DECC_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) - -#elif defined(__IBMC__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__open_xl__) && defined(__clang__) -# define COMPILER_ID "IBMClang" -# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) -# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) -# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) - - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 -# define COMPILER_ID "XL" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__NVCOMPILER) -# define COMPILER_ID "NVHPC" -# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -# if defined(__NVCOMPILER_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -# endif - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__CLANG_FUJITSU) -# define COMPILER_ID "FujitsuClang" -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(__FUJITSU) -# define COMPILER_ID "Fujitsu" -# if defined(__FCC_version__) -# define COMPILER_VERSION __FCC_version__ -# elif defined(__FCC_major__) -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# endif -# if defined(__fcc_version) -# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -# elif defined(__FCC_VERSION) -# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -# endif - - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__TASKING__) -# define COMPILER_ID "Tasking" - # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) - # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) -# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) - -#elif defined(__TINYC__) -# define COMPILER_ID "TinyCC" - -#elif defined(__BCC__) -# define COMPILER_ID "Bruce" - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) -# define COMPILER_ID "LCC" -# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) -# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) -# if defined(__LCC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) -# endif -# if defined(__GNUC__) && defined(__GNUC_MINOR__) -# define SIMULATE_ID "GNU" -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif -# endif - -#elif defined(__GNUC__) -# define COMPILER_ID "GNU" -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(_ADI_COMPILER) -# define COMPILER_ID "ADSP" -#if defined(__VERSIONNUM__) - /* __VERSIONNUM__ = 0xVVRRPPTT */ -# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) -# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) -# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) -# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - -#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) -# define COMPILER_ID "SDCC" -# if defined(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) -# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) -# else - /* SDCC = VRP */ -# define COMPILER_VERSION_MAJOR DEC(SDCC/100) -# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) -# define COMPILER_VERSION_PATCH DEC(SDCC % 10) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__MSYS__) -# define PLATFORM_ID "MSYS" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# elif defined(__VXWORKS__) -# define PLATFORM_ID "VxWorks" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -# elif defined(_ADI_COMPILER) -# define PLATFORM_ID "ADSP" - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_ARM64EC) -# define ARCHITECTURE_ID "ARM64EC" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__ICCSTM8__) -# define ARCHITECTURE_ID "STM8" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__TI_COMPILER_VERSION__) -# if defined(__TI_ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__MSP430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__TMS320C28XX__) -# define ARCHITECTURE_ID "TMS320C28x" - -# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -# define ARCHITECTURE_ID "TMS320C6x" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -# elif defined(__ADSPSHARC__) -# define ARCHITECTURE_ID "SHARC" - -# elif defined(__ADSPBLACKFIN__) -# define ARCHITECTURE_ID "Blackfin" - -#elif defined(__TASKING__) - -# if defined(__CTC__) || defined(__CPTC__) -# define ARCHITECTURE_ID "TriCore" - -# elif defined(__CMCS__) -# define ARCHITECTURE_ID "MCS" - -# elif defined(__CARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__CARC__) -# define ARCHITECTURE_ID "ARC" - -# elif defined(__C51__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__CPCP__) -# define ARCHITECTURE_ID "PCP" - -# else -# define ARCHITECTURE_ID "" -# endif - -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number. */ -#ifdef COMPILER_VERSION -char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; - -/* Construct a string literal encoding the version number components. */ -#elif defined(COMPILER_VERSION_MAJOR) -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#elif defined(COMPILER_VERSION_INTERNAL_STR) -char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - -#if !defined(__STDC__) && !defined(__clang__) -# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) -# define C_VERSION "90" -# else -# define C_VERSION -# endif -#elif __STDC_VERSION__ > 201710L -# define C_VERSION "23" -#elif __STDC_VERSION__ >= 201710L -# define C_VERSION "17" -#elif __STDC_VERSION__ >= 201000L -# define C_VERSION "11" -#elif __STDC_VERSION__ >= 199901L -# define C_VERSION "99" -#else -# define C_VERSION "90" -#endif -const char* info_language_standard_default = - "INFO" ":" "standard_default[" C_VERSION "]"; - -const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ - defined(__TI_COMPILER_VERSION__)) && \ - !defined(__STRICT_ANSI__) - "ON" -#else - "OFF" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -#ifdef ID_VOID_MAIN -void main() {} -#else -# if defined(__CLASSIC_C__) -int main(argc, argv) int argc; char *argv[]; -# else -int main(int argc, char* argv[]) -# endif -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; - require += info_arch[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) - require += info_cray[argc]; -#endif - require += info_language_standard_default[argc]; - require += info_language_extensions_default[argc]; - (void)argv; - return require; -} -#endif diff --git a/cmake-build-debug/CMakeFiles/3.27.8/CompilerIdC/a.exe b/cmake-build-debug/CMakeFiles/3.27.8/CompilerIdC/a.exe deleted file mode 100644 index 4535a5fcfcfc31fa2a5390b401094df1ca0b0fb2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 43144 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

n$AttwY9bDsyhRlg4Ll7n?kjL+Q0^_ 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 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_CC) -# define COMPILER_ID "SunPro" -# if __SUNPRO_CC >= 0x5100 - /* __SUNPRO_CC = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# endif - -#elif defined(__HP_aCC) -# define COMPILER_ID "HP" - /* __HP_aCC = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) - -#elif defined(__DECCXX) -# define COMPILER_ID "Compaq" - /* __DECCXX_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) - -#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__open_xl__) && defined(__clang__) -# define COMPILER_ID "IBMClang" -# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) -# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) -# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) - - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 -# define COMPILER_ID "XL" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__NVCOMPILER) -# define COMPILER_ID "NVHPC" -# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -# if defined(__NVCOMPILER_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -# endif - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__CLANG_FUJITSU) -# define COMPILER_ID "FujitsuClang" -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(__FUJITSU) -# define COMPILER_ID "Fujitsu" -# if defined(__FCC_version__) -# define COMPILER_VERSION __FCC_version__ -# elif defined(__FCC_major__) -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# endif -# if defined(__fcc_version) -# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -# elif defined(__FCC_VERSION) -# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -# endif - - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__TASKING__) -# define COMPILER_ID "Tasking" - # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) - # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) -# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) -# define COMPILER_ID "LCC" -# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) -# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) -# if defined(__LCC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) -# endif -# if defined(__GNUC__) && defined(__GNUC_MINOR__) -# define SIMULATE_ID "GNU" -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif -# endif - -#elif defined(__GNUC__) || defined(__GNUG__) -# define COMPILER_ID "GNU" -# if defined(__GNUC__) -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# else -# define COMPILER_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(_ADI_COMPILER) -# define COMPILER_ID "ADSP" -#if defined(__VERSIONNUM__) - /* __VERSIONNUM__ = 0xVVRRPPTT */ -# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) -# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) -# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) -# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__MSYS__) -# define PLATFORM_ID "MSYS" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# elif defined(__VXWORKS__) -# define PLATFORM_ID "VxWorks" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -# elif defined(_ADI_COMPILER) -# define PLATFORM_ID "ADSP" - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_ARM64EC) -# define ARCHITECTURE_ID "ARM64EC" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__ICCSTM8__) -# define ARCHITECTURE_ID "STM8" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__TI_COMPILER_VERSION__) -# if defined(__TI_ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__MSP430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__TMS320C28XX__) -# define ARCHITECTURE_ID "TMS320C28x" - -# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -# define ARCHITECTURE_ID "TMS320C6x" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -# elif defined(__ADSPSHARC__) -# define ARCHITECTURE_ID "SHARC" - -# elif defined(__ADSPBLACKFIN__) -# define ARCHITECTURE_ID "Blackfin" - -#elif defined(__TASKING__) - -# if defined(__CTC__) || defined(__CPTC__) -# define ARCHITECTURE_ID "TriCore" - -# elif defined(__CMCS__) -# define ARCHITECTURE_ID "MCS" - -# elif defined(__CARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__CARC__) -# define ARCHITECTURE_ID "ARC" - -# elif defined(__C51__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__CPCP__) -# define ARCHITECTURE_ID "PCP" - -# else -# define ARCHITECTURE_ID "" -# endif - -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number. */ -#ifdef COMPILER_VERSION -char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; - -/* Construct a string literal encoding the version number components. */ -#elif defined(COMPILER_VERSION_MAJOR) -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#elif defined(COMPILER_VERSION_INTERNAL_STR) -char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - -#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L -# if defined(__INTEL_CXX11_MODE__) -# if defined(__cpp_aggregate_nsdmi) -# define CXX_STD 201402L -# else -# define CXX_STD 201103L -# endif -# else -# define CXX_STD 199711L -# endif -#elif defined(_MSC_VER) && defined(_MSVC_LANG) -# define CXX_STD _MSVC_LANG -#else -# define CXX_STD __cplusplus -#endif - -const char* info_language_standard_default = "INFO" ":" "standard_default[" -#if CXX_STD > 202002L - "23" -#elif CXX_STD > 201703L - "20" -#elif CXX_STD >= 201703L - "17" -#elif CXX_STD >= 201402L - "14" -#elif CXX_STD >= 201103L - "11" -#else - "98" -#endif -"]"; - -const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ - defined(__TI_COMPILER_VERSION__)) && \ - !defined(__STRICT_ANSI__) - "ON" -#else - "OFF" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -int main(int argc, char* argv[]) -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; - require += info_arch[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) - require += info_cray[argc]; -#endif - require += info_language_standard_default[argc]; - require += info_language_extensions_default[argc]; - (void)argv; - return require; -} diff --git a/cmake-build-debug/CMakeFiles/3.27.8/CompilerIdCXX/a.exe b/cmake-build-debug/CMakeFiles/3.27.8/CompilerIdCXX/a.exe deleted file mode 100644 index 3c66cc6e07e00243f7ad4591454580d92f599c30..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 43172 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 ZNJ85q(&xEDv0e&>jiRqHme+cl`wt?bd=LNt diff --git a/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml b/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml deleted file mode 100644 index fb6632e..0000000 --- a/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml +++ /dev/null @@ -1,524 +0,0 @@ - ---- -events: - - - kind: "message-v1" - backtrace: - - "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineSystem.cmake:211 (message)" - - "CMakeLists.txt:2 (project)" - message: | - The system is: Windows - 10.0.22631 - AMD64 - - - kind: "message-v1" - backtrace: - - "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - - "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" - - "CMakeLists.txt:2 (project)" - message: | - Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. - Compiler: C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/gcc.exe - Build flags: - Id flags: - - The output was: - 0 - - - Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.exe" - - The C compiler identification is GNU, found in: - C:/Users/Love/Documents/Code/hang-man/cmake-build-debug/CMakeFiles/3.27.8/CompilerIdC/a.exe - - - - kind: "message-v1" - backtrace: - - "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - - "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" - - "CMakeLists.txt:2 (project)" - message: | - Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. - Compiler: C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/g++.exe - Build flags: - Id flags: - - The output was: - 0 - - - Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.exe" - - The CXX compiler identification is GNU, found in: - C:/Users/Love/Documents/Code/hang-man/cmake-build-debug/CMakeFiles/3.27.8/CompilerIdCXX/a.exe - - - - kind: "try_compile-v1" - backtrace: - - "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" - - "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" - checks: - - "Detecting C compiler ABI info" - directories: - source: "C:/Users/Love/Documents/Code/hang-man/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-qu4br2" - binary: "C:/Users/Love/Documents/Code/hang-man/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-qu4br2" - cmakeVariables: - CMAKE_C_FLAGS: "" - CMAKE_C_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "" - buildResult: - variable: "CMAKE_C_ABI_COMPILED" - cached: true - stdout: | - Change Dir: 'C:/Users/Love/Documents/Code/hang-man/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-qu4br2' - - Run Build Command(s): C:/Users/Love/AppData/Local/Programs/CLion/bin/ninja/win/x64/ninja.exe -v cmTC_77b68 - [1/2] C:\\Users\\Love\\AppData\\Local\\Programs\\CLion\\bin\\mingw\\bin\\gcc.exe -fdiagnostics-color=always -v -o CMakeFiles/cmTC_77b68.dir/CMakeCCompilerABI.c.obj -c C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCCompilerABI.c - Using built-in specs. - COLLECT_GCC=C:\\Users\\Love\\AppData\\Local\\Programs\\CLion\\bin\\mingw\\bin\\gcc.exe - Target: x86_64-w64-mingw32 - Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends - Thread model: posix - Supported LTO compression algorithms: zlib - gcc version 13.1.0 (GCC) - COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_77b68.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_77b68.dir/' - C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1.exe -quiet -v -iprefix C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_77b68.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\Love\\AppData\\Local\\Temp\\cc26qAEP.s - GNU C17 (GCC) version 13.1.0 (x86_64-w64-mingw32) - compiled by GNU C version 13.1.0, GMP version 6.2.1, MPFR version 4.2.0-p4, MPC version 1.3.1, isl version none - GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 - ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include" - ignoring nonexistent directory "/win/include" - ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../include" - ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed" - ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include" - ignoring nonexistent directory "/mingw/include" - #include "..." search starts here: - #include <...> search starts here: - C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include - C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include - C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed - C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include - End of search list. - Compiler executable checksum: 2aa4fcf5c9208168c5e2d38a58fc2a97 - COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_77b68.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_77b68.dir/' - as -v -o CMakeFiles/cmTC_77b68.dir/CMakeCCompilerABI.c.obj C:\\Users\\Love\\AppData\\Local\\Temp\\cc26qAEP.s - GNU assembler version 2.40 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.40 - COMPILER_PATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/ - LIBRARY_PATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../ - COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_77b68.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_77b68.dir/CMakeCCompilerABI.c.' - [2/2] cmd.exe /C "cd . && C:\\Users\\Love\\AppData\\Local\\Programs\\CLion\\bin\\mingw\\bin\\gcc.exe -v CMakeFiles/cmTC_77b68.dir/CMakeCCompilerABI.c.obj -o cmTC_77b68.exe -Wl,--out-implib,libcmTC_77b68.dll.a -Wl,--major-image-version,0,--minor-image-version,0 && cd ." - Using built-in specs. - COLLECT_GCC=C:\\Users\\Love\\AppData\\Local\\Programs\\CLion\\bin\\mingw\\bin\\gcc.exe - COLLECT_LTO_WRAPPER=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe - Target: x86_64-w64-mingw32 - Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends - Thread model: posix - Supported LTO compression algorithms: zlib - gcc version 13.1.0 (GCC) - COMPILER_PATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/ - LIBRARY_PATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../ - COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_77b68.exe' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_77b68.' - C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -m i386pep -Bdynamic -o cmTC_77b68.exe C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. CMakeFiles/cmTC_77b68.dir/CMakeCCompilerABI.c.obj --out-implib libcmTC_77b68.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o - COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_77b68.exe' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_77b68.' - - exitCode: 0 - - - kind: "message-v1" - backtrace: - - "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" - - "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" - message: | - Parsed C implicit include dir info: rv=done - found start of include info - found start of implicit include info - add: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] - add: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include] - add: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] - add: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] - end of search list found - collapse include dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include] - collapse include dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/include] - collapse include dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] - collapse include dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/include] - implicit include dirs: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/include;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/include] - - - - - kind: "message-v1" - backtrace: - - "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:152 (message)" - - "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" - message: | - Parsed C implicit link information: - link line regex: [^( *|.*[/\\])(ld\\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] - ignore line: [Change Dir: 'C:/Users/Love/Documents/Code/hang-man/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-qu4br2'] - ignore line: [] - ignore line: [Run Build Command(s): C:/Users/Love/AppData/Local/Programs/CLion/bin/ninja/win/x64/ninja.exe -v cmTC_77b68] - ignore line: [[1/2] C:\\Users\\Love\\AppData\\Local\\Programs\\CLion\\bin\\mingw\\bin\\gcc.exe -fdiagnostics-color=always -v -o CMakeFiles/cmTC_77b68.dir/CMakeCCompilerABI.c.obj -c C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCCompilerABI.c] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=C:\\Users\\Love\\AppData\\Local\\Programs\\CLion\\bin\\mingw\\bin\\gcc.exe] - ignore line: [Target: x86_64-w64-mingw32] - ignore line: [Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib] - ignore line: [gcc version 13.1.0 (GCC) ] - ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_77b68.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_77b68.dir/'] - ignore line: [ C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1.exe -quiet -v -iprefix C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_77b68.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\Love\\AppData\\Local\\Temp\\cc26qAEP.s] - ignore line: [GNU C17 (GCC) version 13.1.0 (x86_64-w64-mingw32)] - ignore line: [ compiled by GNU C version 13.1.0 GMP version 6.2.1 MPFR version 4.2.0-p4 MPC version 1.3.1 isl version none] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include"] - ignore line: [ignoring nonexistent directory "/win/include"] - ignore line: [ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../include"] - ignore line: [ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed"] - ignore line: [ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include"] - ignore line: [ignoring nonexistent directory "/mingw/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] - ignore line: [ C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include] - ignore line: [ C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] - ignore line: [ C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] - ignore line: [End of search list.] - ignore line: [Compiler executable checksum: 2aa4fcf5c9208168c5e2d38a58fc2a97] - ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_77b68.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_77b68.dir/'] - ignore line: [ as -v -o CMakeFiles/cmTC_77b68.dir/CMakeCCompilerABI.c.obj C:\\Users\\Love\\AppData\\Local\\Temp\\cc26qAEP.s] - ignore line: [GNU assembler version 2.40 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.40] - ignore line: [COMPILER_PATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/] - ignore line: [LIBRARY_PATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../] - ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_77b68.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_77b68.dir/CMakeCCompilerABI.c.'] - ignore line: [[2/2] cmd.exe /C "cd . && C:\\Users\\Love\\AppData\\Local\\Programs\\CLion\\bin\\mingw\\bin\\gcc.exe -v CMakeFiles/cmTC_77b68.dir/CMakeCCompilerABI.c.obj -o cmTC_77b68.exe -Wl --out-implib libcmTC_77b68.dll.a -Wl --major-image-version 0 --minor-image-version 0 && cd ."] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=C:\\Users\\Love\\AppData\\Local\\Programs\\CLion\\bin\\mingw\\bin\\gcc.exe] - ignore line: [COLLECT_LTO_WRAPPER=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe] - ignore line: [Target: x86_64-w64-mingw32] - ignore line: [Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib] - ignore line: [gcc version 13.1.0 (GCC) ] - ignore line: [COMPILER_PATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/] - ignore line: [LIBRARY_PATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_77b68.exe' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_77b68.'] - link line: [ C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -m i386pep -Bdynamic -o cmTC_77b68.exe C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. CMakeFiles/cmTC_77b68.dir/CMakeCCompilerABI.c.obj --out-implib libcmTC_77b68.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] - arg [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe] ==> ignore - arg [-m] ==> ignore - arg [i386pep] ==> ignore - arg [-Bdynamic] ==> search dynamic - arg [-o] ==> ignore - arg [cmTC_77b68.exe] ==> ignore - arg [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> obj [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] - arg [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o] ==> obj [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o] - arg [-LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0] ==> dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0] - arg [-LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc] ==> dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc] - arg [-LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib] - arg [-LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib] ==> dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib] - arg [-LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib] ==> dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib] - arg [-LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../..] ==> dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../..] - arg [CMakeFiles/cmTC_77b68.dir/CMakeCCompilerABI.c.obj] ==> ignore - arg [--out-implib] ==> ignore - arg [libcmTC_77b68.dll.a] ==> ignore - arg [--major-image-version] ==> ignore - arg [0] ==> ignore - arg [--minor-image-version] ==> ignore - arg [0] ==> ignore - arg [-lmingw32] ==> lib [mingw32] - arg [-lgcc] ==> lib [gcc] - arg [-lgcc_eh] ==> lib [gcc_eh] - arg [-lmoldname] ==> lib [moldname] - arg [-lmingwex] ==> lib [mingwex] - arg [-lmsvcrt] ==> lib [msvcrt] - arg [-lkernel32] ==> lib [kernel32] - arg [-lpthread] ==> lib [pthread] - arg [-ladvapi32] ==> lib [advapi32] - arg [-lshell32] ==> lib [shell32] - arg [-luser32] ==> lib [user32] - arg [-lkernel32] ==> lib [kernel32] - arg [-liconv] ==> lib [iconv] - arg [-lmingw32] ==> lib [mingw32] - arg [-lgcc] ==> lib [gcc] - arg [-lgcc_eh] ==> lib [gcc_eh] - arg [-lmoldname] ==> lib [moldname] - arg [-lmingwex] ==> lib [mingwex] - arg [-lmsvcrt] ==> lib [msvcrt] - arg [-lkernel32] ==> lib [kernel32] - arg [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o] ==> obj [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o] - arg [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] ==> obj [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] - remove lib [gcc_eh] - remove lib [msvcrt] - remove lib [gcc_eh] - remove lib [msvcrt] - collapse obj [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/lib/crt2.o] - collapse obj [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o] - collapse obj [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/lib/default-manifest.o] - collapse obj [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] - collapse library dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0] - collapse library dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc] - collapse library dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/lib] - collapse library dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib] - collapse library dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/lib] - collapse library dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../..] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib] - implicit libs: [mingw32;gcc;moldname;mingwex;kernel32;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc;moldname;mingwex;kernel32] - implicit objs: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/lib/crt2.o;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/lib/default-manifest.o;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] - implicit dirs: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/lib;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib] - implicit fwks: [] - - - - - kind: "try_compile-v1" - backtrace: - - "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" - - "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" - checks: - - "Detecting CXX compiler ABI info" - directories: - source: "C:/Users/Love/Documents/Code/hang-man/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-8sthu8" - binary: "C:/Users/Love/Documents/Code/hang-man/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-8sthu8" - cmakeVariables: - CMAKE_CXX_FLAGS: "" - CMAKE_CXX_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "" - buildResult: - variable: "CMAKE_CXX_ABI_COMPILED" - cached: true - stdout: | - Change Dir: 'C:/Users/Love/Documents/Code/hang-man/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-8sthu8' - - Run Build Command(s): C:/Users/Love/AppData/Local/Programs/CLion/bin/ninja/win/x64/ninja.exe -v cmTC_d3573 - [1/2] C:\\Users\\Love\\AppData\\Local\\Programs\\CLion\\bin\\mingw\\bin\\g++.exe -fdiagnostics-color=always -v -o CMakeFiles/cmTC_d3573.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp - Using built-in specs. - COLLECT_GCC=C:\\Users\\Love\\AppData\\Local\\Programs\\CLion\\bin\\mingw\\bin\\g++.exe - Target: x86_64-w64-mingw32 - Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends - Thread model: posix - Supported LTO compression algorithms: zlib - gcc version 13.1.0 (GCC) - COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_d3573.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_d3573.dir/' - C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1plus.exe -quiet -v -iprefix C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_d3573.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\Love\\AppData\\Local\\Temp\\cc4Blkoe.s - GNU C++17 (GCC) version 13.1.0 (x86_64-w64-mingw32) - compiled by GNU C version 13.1.0, GMP version 6.2.1, MPFR version 4.2.0-p4, MPC version 1.3.1, isl version none - GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 - ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++" - ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32" - ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward" - ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include" - ignoring nonexistent directory "/win/include" - ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../include" - ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed" - ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include" - ignoring nonexistent directory "/mingw/include" - #include "..." search starts here: - #include <...> search starts here: - C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++ - C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32 - C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward - C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include - C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include - C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed - C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include - End of search list. - Compiler executable checksum: e75de627edc3c57e31324b930b15b056 - COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_d3573.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_d3573.dir/' - as -v -o CMakeFiles/cmTC_d3573.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\Love\\AppData\\Local\\Temp\\cc4Blkoe.s - GNU assembler version 2.40 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.40 - COMPILER_PATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/ - LIBRARY_PATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../ - COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_d3573.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_d3573.dir/CMakeCXXCompilerABI.cpp.' - [2/2] cmd.exe /C "cd . && C:\\Users\\Love\\AppData\\Local\\Programs\\CLion\\bin\\mingw\\bin\\g++.exe -v CMakeFiles/cmTC_d3573.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_d3573.exe -Wl,--out-implib,libcmTC_d3573.dll.a -Wl,--major-image-version,0,--minor-image-version,0 && cd ." - Using built-in specs. - COLLECT_GCC=C:\\Users\\Love\\AppData\\Local\\Programs\\CLion\\bin\\mingw\\bin\\g++.exe - COLLECT_LTO_WRAPPER=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe - Target: x86_64-w64-mingw32 - Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends - Thread model: posix - Supported LTO compression algorithms: zlib - gcc version 13.1.0 (GCC) - COMPILER_PATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/ - LIBRARY_PATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../ - COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_d3573.exe' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_d3573.' - C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -m i386pep -Bdynamic -o cmTC_d3573.exe C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. CMakeFiles/cmTC_d3573.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_d3573.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o - COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_d3573.exe' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_d3573.' - - exitCode: 0 - - - kind: "message-v1" - backtrace: - - "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:127 (message)" - - "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" - message: | - Parsed CXX implicit include dir info: rv=done - found start of include info - found start of implicit include info - add: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] - add: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] - add: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] - add: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] - add: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include] - add: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] - add: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] - end of search list found - collapse include dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] - collapse include dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] - collapse include dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] - collapse include dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include] - collapse include dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/include] - collapse include dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] - collapse include dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/include] - implicit include dirs: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/include;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/include] - - - - - kind: "message-v1" - backtrace: - - "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake:152 (message)" - - "C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:2 (project)" - message: | - Parsed CXX implicit link information: - link line regex: [^( *|.*[/\\])(ld\\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] - ignore line: [Change Dir: 'C:/Users/Love/Documents/Code/hang-man/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-8sthu8'] - ignore line: [] - ignore line: [Run Build Command(s): C:/Users/Love/AppData/Local/Programs/CLion/bin/ninja/win/x64/ninja.exe -v cmTC_d3573] - ignore line: [[1/2] C:\\Users\\Love\\AppData\\Local\\Programs\\CLion\\bin\\mingw\\bin\\g++.exe -fdiagnostics-color=always -v -o CMakeFiles/cmTC_d3573.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=C:\\Users\\Love\\AppData\\Local\\Programs\\CLion\\bin\\mingw\\bin\\g++.exe] - ignore line: [Target: x86_64-w64-mingw32] - ignore line: [Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib] - ignore line: [gcc version 13.1.0 (GCC) ] - ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_d3573.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_d3573.dir/'] - ignore line: [ C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1plus.exe -quiet -v -iprefix C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT C:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_d3573.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\Love\\AppData\\Local\\Temp\\cc4Blkoe.s] - ignore line: [GNU C++17 (GCC) version 13.1.0 (x86_64-w64-mingw32)] - ignore line: [ compiled by GNU C version 13.1.0 GMP version 6.2.1 MPFR version 4.2.0-p4 MPC version 1.3.1 isl version none] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++"] - ignore line: [ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32"] - ignore line: [ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward"] - ignore line: [ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include"] - ignore line: [ignoring nonexistent directory "/win/include"] - ignore line: [ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../include"] - ignore line: [ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed"] - ignore line: [ignoring duplicate directory "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include"] - ignore line: [ignoring nonexistent directory "/mingw/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] - ignore line: [ C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] - ignore line: [ C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] - ignore line: [ C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] - ignore line: [ C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include] - ignore line: [ C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] - ignore line: [ C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] - ignore line: [End of search list.] - ignore line: [Compiler executable checksum: e75de627edc3c57e31324b930b15b056] - ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_d3573.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_d3573.dir/'] - ignore line: [ as -v -o CMakeFiles/cmTC_d3573.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\Love\\AppData\\Local\\Temp\\cc4Blkoe.s] - ignore line: [GNU assembler version 2.40 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.40] - ignore line: [COMPILER_PATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/] - ignore line: [LIBRARY_PATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../] - ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_d3573.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_d3573.dir/CMakeCXXCompilerABI.cpp.'] - ignore line: [[2/2] cmd.exe /C "cd . && C:\\Users\\Love\\AppData\\Local\\Programs\\CLion\\bin\\mingw\\bin\\g++.exe -v CMakeFiles/cmTC_d3573.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_d3573.exe -Wl --out-implib libcmTC_d3573.dll.a -Wl --major-image-version 0 --minor-image-version 0 && cd ."] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=C:\\Users\\Love\\AppData\\Local\\Programs\\CLion\\bin\\mingw\\bin\\g++.exe] - ignore line: [COLLECT_LTO_WRAPPER=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe] - ignore line: [Target: x86_64-w64-mingw32] - ignore line: [Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib] - ignore line: [gcc version 13.1.0 (GCC) ] - ignore line: [COMPILER_PATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/] - ignore line: [LIBRARY_PATH=C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/] - ignore line: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_d3573.exe' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_d3573.'] - link line: [ C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -m i386pep -Bdynamic -o cmTC_d3573.exe C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. CMakeFiles/cmTC_d3573.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_d3573.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] - arg [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe] ==> ignore - arg [-m] ==> ignore - arg [i386pep] ==> ignore - arg [-Bdynamic] ==> search dynamic - arg [-o] ==> ignore - arg [cmTC_d3573.exe] ==> ignore - arg [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> obj [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] - arg [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o] ==> obj [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o] - arg [-LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0] ==> dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0] - arg [-LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc] ==> dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc] - arg [-LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib] - arg [-LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib] ==> dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib] - arg [-LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib] ==> dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib] - arg [-LC:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../..] ==> dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../..] - arg [CMakeFiles/cmTC_d3573.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore - arg [--out-implib] ==> ignore - arg [libcmTC_d3573.dll.a] ==> ignore - arg [--major-image-version] ==> ignore - arg [0] ==> ignore - arg [--minor-image-version] ==> ignore - arg [0] ==> ignore - arg [-lstdc++] ==> lib [stdc++] - arg [-lmingw32] ==> lib [mingw32] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [-lmoldname] ==> lib [moldname] - arg [-lmingwex] ==> lib [mingwex] - arg [-lmsvcrt] ==> lib [msvcrt] - arg [-lkernel32] ==> lib [kernel32] - arg [-lpthread] ==> lib [pthread] - arg [-ladvapi32] ==> lib [advapi32] - arg [-lshell32] ==> lib [shell32] - arg [-luser32] ==> lib [user32] - arg [-lkernel32] ==> lib [kernel32] - arg [-liconv] ==> lib [iconv] - arg [-lmingw32] ==> lib [mingw32] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [-lmoldname] ==> lib [moldname] - arg [-lmingwex] ==> lib [mingwex] - arg [-lmsvcrt] ==> lib [msvcrt] - arg [-lkernel32] ==> lib [kernel32] - arg [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o] ==> obj [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o] - arg [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] ==> obj [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] - remove lib [msvcrt] - remove lib [msvcrt] - collapse obj [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/lib/crt2.o] - collapse obj [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o] - collapse obj [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/lib/default-manifest.o] - collapse obj [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] - collapse library dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0] - collapse library dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc] - collapse library dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/lib] - collapse library dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib] - collapse library dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/lib] - collapse library dir [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../..] ==> [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib] - implicit libs: [stdc++;mingw32;gcc_s;gcc;moldname;mingwex;kernel32;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc_s;gcc;moldname;mingwex;kernel32] - implicit objs: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/lib/crt2.o;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/lib/default-manifest.o;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] - implicit dirs: [C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib/gcc;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/lib;C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/lib] - implicit fwks: [] - - -... diff --git a/cmake-build-debug/CMakeFiles/TargetDirectories.txt b/cmake-build-debug/CMakeFiles/TargetDirectories.txt deleted file mode 100644 index c726bb7..0000000 --- a/cmake-build-debug/CMakeFiles/TargetDirectories.txt +++ /dev/null @@ -1,3 +0,0 @@ -C:/Users/Love/Documents/Code/hang-man/cmake-build-debug/CMakeFiles/hang_man.dir -C:/Users/Love/Documents/Code/hang-man/cmake-build-debug/CMakeFiles/edit_cache.dir -C:/Users/Love/Documents/Code/hang-man/cmake-build-debug/CMakeFiles/rebuild_cache.dir diff --git a/cmake-build-debug/CMakeFiles/clion-Debug-log.txt b/cmake-build-debug/CMakeFiles/clion-Debug-log.txt deleted file mode 100644 index aef2577..0000000 --- a/cmake-build-debug/CMakeFiles/clion-Debug-log.txt +++ /dev/null @@ -1,15 +0,0 @@ -C:\Users\Love\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -DCMAKE_BUILD_TYPE=Debug -DCMAKE_MAKE_PROGRAM=C:/Users/Love/AppData/Local/Programs/CLion/bin/ninja/win/x64/ninja.exe -G Ninja -S C:\Users\Love\Documents\Code\hang-man -B C:\Users\Love\Documents\Code\hang-man\cmake-build-debug -CMake Error at CMakeLists.txt:7 (find_package): - Could not find a package configuration file provided by "SDL2" with any of - the following names: - - SDL2Config.cmake - sdl2-config.cmake - - Add the installation prefix of "SDL2" to CMAKE_PREFIX_PATH or set - "SDL2_DIR" to a directory containing one of the above files. If "SDL2" - provides a separate development package or SDK, be sure it has been - installed. - - --- Configuring incomplete, errors occurred! diff --git a/cmake-build-debug/CMakeFiles/clion-environment.txt b/cmake-build-debug/CMakeFiles/clion-environment.txt deleted file mode 100644 index a4e93b8..0000000 --- a/cmake-build-debug/CMakeFiles/clion-environment.txt +++ /dev/null @@ -1,4 +0,0 @@ -ToolSet: 11.0 w64 (local)@C:\Users\Love\AppData\Local\Programs\CLion\bin\mingw -Options: - -Options:-DCMAKE_MAKE_PROGRAM=C:/Users/Love/AppData/Local/Programs/CLion/bin/ninja/win/x64/ninja.exe \ No newline at end of file diff --git a/cmake-build-debug/CMakeFiles/cmake.check_cache b/cmake-build-debug/CMakeFiles/cmake.check_cache deleted file mode 100644 index 3dccd73..0000000 --- a/cmake-build-debug/CMakeFiles/cmake.check_cache +++ /dev/null @@ -1 +0,0 @@ -# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/cmake-build-debug/CMakeFiles/rules.ninja b/cmake-build-debug/CMakeFiles/rules.ninja deleted file mode 100644 index d0edae5..0000000 --- a/cmake-build-debug/CMakeFiles/rules.ninja +++ /dev/null @@ -1,64 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Ninja" Generator, CMake Version 3.27 - -# This file contains all the rules used to get the outputs files -# built from the input files. -# It is included in the main 'build.ninja'. - -# ============================================================================= -# Project: hang_man -# Configurations: Debug -# ============================================================================= -# ============================================================================= - -############################################# -# Rule for compiling CXX files. - -rule CXX_COMPILER__hang_man_unscanned_Debug - depfile = $DEP_FILE - deps = gcc - command = ${LAUNCHER}${CODE_CHECK}C:\Users\Love\AppData\Local\Programs\CLion\bin\mingw\bin\g++.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building CXX object $out - - -############################################# -# Rule for linking CXX executable. - -rule CXX_EXECUTABLE_LINKER__hang_man_Debug - command = cmd.exe /C "$PRE_LINK && C:\Users\Love\AppData\Local\Programs\CLion\bin\mingw\bin\g++.exe $FLAGS $LINK_FLAGS $in -o $TARGET_FILE -Wl,--out-implib,$TARGET_IMPLIB -Wl,--major-image-version,0,--minor-image-version,0 $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" - description = Linking CXX executable $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for running custom commands. - -rule CUSTOM_COMMAND - command = $COMMAND - description = $DESC - - -############################################# -# Rule for re-running cmake. - -rule RERUN_CMAKE - command = C:\Users\Love\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe --regenerate-during-build -SC:\Users\Love\Documents\Code\hang-man -BC:\Users\Love\Documents\Code\hang-man\cmake-build-debug - description = Re-running CMake... - generator = 1 - - -############################################# -# Rule for cleaning all built files. - -rule CLEAN - command = C:\Users\Love\AppData\Local\Programs\CLion\bin\ninja\win\x64\ninja.exe $FILE_ARG -t clean $TARGETS - description = Cleaning all built files... - - -############################################# -# Rule for printing all primary targets available. - -rule HELP - command = C:\Users\Love\AppData\Local\Programs\CLion\bin\ninja\win\x64\ninja.exe -t targets - description = All primary targets available: - diff --git a/cmake-build-debug/Testing/Temporary/LastTest.log b/cmake-build-debug/Testing/Temporary/LastTest.log deleted file mode 100644 index e7a4ad7..0000000 --- a/cmake-build-debug/Testing/Temporary/LastTest.log +++ /dev/null @@ -1,3 +0,0 @@ -Start testing: Aug 01 15:23 W. Europe Summer Time ----------------------------------------------------------- -End testing: Aug 01 15:23 W. Europe Summer Time diff --git a/cmake-build-debug/build.ninja b/cmake-build-debug/build.ninja deleted file mode 100644 index d7df394..0000000 --- a/cmake-build-debug/build.ninja +++ /dev/null @@ -1,149 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Ninja" Generator, CMake Version 3.27 - -# This file contains all the build statements describing the -# compilation DAG. - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# -# Which is the root file. -# ============================================================================= - -# ============================================================================= -# Project: hang_man -# Configurations: Debug -# ============================================================================= - -############################################# -# Minimal version of Ninja required by this file - -ninja_required_version = 1.5 - - -############################################# -# Set configuration variable for custom commands. - -CONFIGURATION = Debug -# ============================================================================= -# Include auxiliary files. - - -############################################# -# Include rules file. - -include CMakeFiles/rules.ninja - -# ============================================================================= - -############################################# -# Logical path to working directory; prefix for absolute paths. - -cmake_ninja_workdir = C$:/Users/Love/Documents/Code/hang-man/cmake-build-debug/ -# ============================================================================= -# Object build statements for EXECUTABLE target hang_man - - -############################################# -# Order-only phony target for hang_man - -build cmake_object_order_depends_target_hang_man: phony || CMakeFiles/hang_man.dir - -build CMakeFiles/hang_man.dir/main.cpp.obj: CXX_COMPILER__hang_man_unscanned_Debug C$:/Users/Love/Documents/Code/hang-man/main.cpp || cmake_object_order_depends_target_hang_man - DEP_FILE = CMakeFiles\hang_man.dir\main.cpp.obj.d - FLAGS = -g -std=gnu++20 -fdiagnostics-color=always - OBJECT_DIR = CMakeFiles\hang_man.dir - OBJECT_FILE_DIR = CMakeFiles\hang_man.dir - TARGET_COMPILE_PDB = CMakeFiles\hang_man.dir\ - TARGET_PDB = hang_man.pdb - - -# ============================================================================= -# Link build statements for EXECUTABLE target hang_man - - -############################################# -# Link the executable hang_man.exe - -build hang_man.exe: CXX_EXECUTABLE_LINKER__hang_man_Debug CMakeFiles/hang_man.dir/main.cpp.obj - FLAGS = -g - LINK_LIBRARIES = -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 - OBJECT_DIR = CMakeFiles\hang_man.dir - POST_BUILD = cd . - PRE_LINK = cd . - TARGET_COMPILE_PDB = CMakeFiles\hang_man.dir\ - TARGET_FILE = hang_man.exe - TARGET_IMPLIB = libhang_man.dll.a - TARGET_PDB = hang_man.pdb - - -############################################# -# Utility command for edit_cache - -build CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cmd.exe /C "cd /D C:\Users\Love\Documents\Code\hang-man\cmake-build-debug && C:\Users\Love\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -E echo "No interactive CMake dialog available."" - DESC = No interactive CMake dialog available... - restat = 1 - -build edit_cache: phony CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cmd.exe /C "cd /D C:\Users\Love\Documents\Code\hang-man\cmake-build-debug && C:\Users\Love\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe --regenerate-during-build -SC:\Users\Love\Documents\Code\hang-man -BC:\Users\Love\Documents\Code\hang-man\cmake-build-debug" - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build rebuild_cache: phony CMakeFiles/rebuild_cache.util - -# ============================================================================= -# Target aliases. - -build hang_man: phony hang_man.exe - -# ============================================================================= -# Folder targets. - -# ============================================================================= - -############################################# -# Folder: C:/Users/Love/Documents/Code/hang-man/cmake-build-debug - -build all: phony hang_man.exe - -# ============================================================================= -# Built-in targets - - -############################################# -# Re-run CMake if any of its inputs changed. - -build build.ninja: RERUN_CMAKE | C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCCompiler.cmake.in C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCCompilerABI.c C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCXXCompiler.cmake.in C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCompilerIdDetection.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompileFeatures.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineRCCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineSystem.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeFindBinUtils.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeGenericSystem.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeRCCompiler.cmake.in C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeRCInformation.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeSystem.cmake.in C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestCCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestCompilerCommon.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestRCCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Internal/FeatureTesting.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-Determine-CXX.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-GNU-C-ABI.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-GNU-C.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-GNU-CXX-ABI.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-GNU-CXX.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-GNU.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-Initialize.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-windres.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/WindowsPaths.cmake C$:/Users/Love/Documents/Code/hang-man/CMakeLists.txt CMakeCache.txt CMakeFiles/3.27.8/CMakeCCompiler.cmake CMakeFiles/3.27.8/CMakeCXXCompiler.cmake CMakeFiles/3.27.8/CMakeRCCompiler.cmake CMakeFiles/3.27.8/CMakeSystem.cmake - pool = console - - -############################################# -# A missing CMake input file is not an error. - -build C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCCompiler.cmake.in C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCCompilerABI.c C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCInformation.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCXXCompiler.cmake.in C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCXXInformation.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeCompilerIdDetection.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCXXCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompileFeatures.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerABI.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineCompilerId.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineRCCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeDetermineSystem.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeFindBinUtils.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeGenericSystem.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeInitializeConfigs.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeLanguageInformation.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeParseImplicitLinkInfo.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeParseLibraryArchitecture.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeRCCompiler.cmake.in C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeRCInformation.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeSystem.cmake.in C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestCCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestCXXCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestCompilerCommon.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/CMakeTestRCCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GNU-C.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GNU-CXX.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GNU-FindBinUtils.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/GNU.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/TI-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Internal/FeatureTesting.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-Determine-CXX.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-GNU-C-ABI.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-GNU-C.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-GNU-CXX-ABI.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-GNU-CXX.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-GNU.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-Initialize.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows-windres.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/Windows.cmake C$:/Users/Love/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.27/Modules/Platform/WindowsPaths.cmake C$:/Users/Love/Documents/Code/hang-man/CMakeLists.txt CMakeCache.txt CMakeFiles/3.27.8/CMakeCCompiler.cmake CMakeFiles/3.27.8/CMakeCXXCompiler.cmake CMakeFiles/3.27.8/CMakeRCCompiler.cmake CMakeFiles/3.27.8/CMakeSystem.cmake: phony - - -############################################# -# Clean all the built files. - -build clean: CLEAN - - -############################################# -# Print all primary targets available. - -build help: HELP - - -############################################# -# Make the all target the default. - -default all diff --git a/cmake-build-debug/cmake_install.cmake b/cmake-build-debug/cmake_install.cmake deleted file mode 100644 index 7b04734..0000000 --- a/cmake-build-debug/cmake_install.cmake +++ /dev/null @@ -1,49 +0,0 @@ -# Install script for directory: C:/Users/Love/Documents/Code/hang-man - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/hang_man") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Debug") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# 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 "C:/Users/Love/AppData/Local/Programs/CLion/bin/mingw/bin/objdump.exe") -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 "C:/Users/Love/Documents/Code/hang-man/cmake-build-debug/${CMAKE_INSTALL_MANIFEST}" - "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/main.cpp b/src/main.cpp similarity index 100% rename from main.cpp rename to src/main.cpp diff --git a/vcpkg.json b/vcpkg.json index 193a656..0bfe902 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -8,6 +8,7 @@ "name": "sdl2", "default-features": true, "version>=": "2.0.20" - } + }, + "curl" ] }