diff --git a/.idea/.gitignore b/.idea/.gitignore
deleted file mode 100644
index 13566b8..0000000
--- a/.idea/.gitignore
+++ /dev/null
@@ -1,8 +0,0 @@
-# Default ignored files
-/shelf/
-/workspace.xml
-# Editor-based HTTP Client requests
-/httpRequests/
-# Datasource local storage ignored files
-/dataSources/
-/dataSources.local.xml
diff --git a/.idea/Prog3B_Anke.iml b/.idea/Prog3B_Anke.iml
deleted file mode 100644
index f08604b..0000000
--- a/.idea/Prog3B_Anke.iml
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
\ No newline at end of file
diff --git a/.idea/editor.xml b/.idea/editor.xml
deleted file mode 100644
index b0d69ef..0000000
--- a/.idea/editor.xml
+++ /dev/null
@@ -1,483 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
deleted file mode 100644
index 0b76fe5..0000000
--- a/.idea/misc.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
deleted file mode 100644
index 1be49a0..0000000
--- a/.idea/modules.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
index 35eb1dd..d843f34 100644
--- a/.idea/vcs.xml
+++ b/.idea/vcs.xml
@@ -1,6 +1,4 @@
-
-
-
+
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
new file mode 100644
index 0000000..1ac928b
--- /dev/null
+++ b/.idea/workspace.xml
@@ -0,0 +1,4 @@
+
+
+ {}
+
\ No newline at end of file
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4fadb72..ec568bd 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,50 +1,44 @@
cmake_minimum_required(VERSION 3.28)
project(Prog3B)
+
set(EXECUTABLE_NAME Prog3B)
-set(OS_NAME windows)
-
-# Generate compile_commands.json
-set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(CMAKE_CXX_STANDARD 20)
+set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
-# Set the default build type if not specified
+# Default build type
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release CACHE STRING "Build type" FORCE)
endif()
+# Quell- und Header-Dateien
set(SRC_FILES
- src/main.cpp
- src/gamecube.cpp
+ ${CMAKE_CURRENT_LIST_DIR}/src/main.cpp
+ ${CMAKE_CURRENT_LIST_DIR}/src/gamecube.cpp
+ ${CMAKE_CURRENT_LIST_DIR}/src/gamematrix.cpp
)
-# â
/linux mit /includes geändert
+#automatisch hinzufĂźgen
+#file(GLOB SRC_FILES "${CMAKE_CURRENT_LIST_DIR}/src/*.cpp")
+
set(INCLUDE_DIRS
${CMAKE_CURRENT_LIST_DIR}/includes
+ ${CMAKE_CURRENT_LIST_DIR}/raylib
)
+# Executable erstellen
add_executable(${EXECUTABLE_NAME} ${SRC_FILES})
+
+# Include-Verzeichnisse hinzufĂźgen
target_include_directories(${EXECUTABLE_NAME} PRIVATE ${INCLUDE_DIRS})
+
+
+# Nur noch raylib und systemabhängige Libraries linken
target_link_libraries(${EXECUTABLE_NAME} PRIVATE
- ${CMAKE_CURRENT_LIST_DIR}/${OS_NAME}/libgamematrix.a
- ${CMAKE_CURRENT_LIST_DIR}/${OS_NAME}/libraylib.a
-)
-# â
Raylib ordner hinzugefĂźgt
-set(INCLUDE_DIRS
- ${CMAKE_CURRENT_LIST_DIR}/includes # deine eigenen Header
- ${CMAKE_CURRENT_LIST_DIR}/raylib # Raylib Header
-)
+ ${CMAKE_CURRENT_LIST_DIR}/windows/libraylib.a
+ winmm)
-# Zu target_include_directories hinzufĂźgen
-target_include_directories(${EXECUTABLE_NAME} PRIVATE ${INCLUDE_DIRS})
-
-
-
-if (WIN32)
- target_link_libraries(Prog3B PRIVATE winmm)
-endif()
-
-# Checks if OSX and links appropriate frameworks (Only required on MacOS)
-if (APPLE)
- target_link_libraries(Prog3B "-framework IOKit")
- target_link_libraries(Prog3B "-framework Cocoa")
- target_link_libraries(Prog3B "-framework OpenGL")
+# MacOS Frameworks (falls benĂśtigt)
+if(APPLE)
+ target_link_libraries(${EXECUTABLE_NAME} PRIVATE "-framework IOKit")
+ target_link_libraries(${EXECUTABLE_NAME} PRIVATE "-framework Cocoa")
+ target_link_libraries(${EXECUTABLE_NAME} PRIVATE "-framework OpenGL")
endif()
diff --git a/cmake-build-debug/.cmake/api/v1/reply/cache-v2-bb0469ee8c5e3decfa47.json b/cmake-build-debug/.cmake/api/v1/reply/cache-v2-bb0469ee8c5e3decfa47.json
new file mode 100644
index 0000000..a96e2b6
--- /dev/null
+++ b/cmake-build-debug/.cmake/api/v1/reply/cache-v2-bb0469ee8c5e3decfa47.json
@@ -0,0 +1,1327 @@
+{
+ "entries" :
+ [
+ {
+ "name" : "CMAKE_ADDR2LINE",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a program."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/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/amina/AppData/Local/JetBrains/CLion 2024.3.4/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:/ME-2/Prog2B-wdh/Prog3B_Anke/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" : "30"
+ },
+ {
+ "name" : "CMAKE_CACHE_PATCH_VERSION",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Patch version of cmake used to create the current loaded cache"
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "5"
+ },
+ {
+ "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/amina/AppData/Local/JetBrains/CLion 2024.3.4/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/amina/AppData/Local/JetBrains/CLion 2024.3.4/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/amina/AppData/Local/JetBrains/CLion 2024.3.4/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/amina/AppData/Local/JetBrains/CLion 2024.3.4/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/amina/AppData/Local/JetBrains/CLion 2024.3.4/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/amina/AppData/Local/JetBrains/CLion 2024.3.4/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/amina/AppData/Local/JetBrains/CLion 2024.3.4/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/amina/AppData/Local/JetBrains/CLion 2024.3.4/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/amina/AppData/Local/JetBrains/CLion 2024.3.4/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/amina/AppData/Local/JetBrains/CLion 2024.3.4/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:/ME-2/Prog2B-wdh/Prog3B_Anke/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:/ME-2/Prog2B-wdh/Prog3B_Anke"
+ },
+ {
+ "name" : "CMAKE_INSTALL_PREFIX",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Install path prefix, prepended onto install directories."
+ }
+ ],
+ "type" : "PATH",
+ "value" : "C:/Program Files (x86)/Prog3B"
+ },
+ {
+ "name" : "CMAKE_LINKER",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a program."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/ld.exe"
+ },
+ {
+ "name" : "CMAKE_MAKE_PROGRAM",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "make program"
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/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/amina/AppData/Local/JetBrains/CLion 2024.3.4/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/amina/AppData/Local/JetBrains/CLion 2024.3.4/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/amina/AppData/Local/JetBrains/CLion 2024.3.4/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" : "Prog3B"
+ },
+ {
+ "name" : "CMAKE_RANLIB",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a program."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/ranlib.exe"
+ },
+ {
+ "name" : "CMAKE_RC_COMPILER",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "RC compiler"
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/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/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/readelf.exe"
+ },
+ {
+ "name" : "CMAKE_ROOT",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to CMake installation."
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30"
+ },
+ {
+ "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/amina/AppData/Local/JetBrains/CLion 2024.3.4/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" : "Prog3B_BINARY_DIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Value Computed by CMake"
+ }
+ ],
+ "type" : "STATIC",
+ "value" : "C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug"
+ },
+ {
+ "name" : "Prog3B_IS_TOP_LEVEL",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Value Computed by CMake"
+ }
+ ],
+ "type" : "STATIC",
+ "value" : "ON"
+ },
+ {
+ "name" : "Prog3B_SOURCE_DIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Value Computed by CMake"
+ }
+ ],
+ "type" : "STATIC",
+ "value" : "C:/ME-2/Prog2B-wdh/Prog3B_Anke"
+ },
+ {
+ "name" : "_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "linker supports push/pop state"
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "TRUE"
+ }
+ ],
+ "kind" : "cache",
+ "version" :
+ {
+ "major" : 2,
+ "minor" : 0
+ }
+}
diff --git a/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-fe765cc3ed39f16d3190.json b/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-fe765cc3ed39f16d3190.json
new file mode 100644
index 0000000..4d4ba3b
--- /dev/null
+++ b/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-fe765cc3ed39f16d3190.json
@@ -0,0 +1,165 @@
+{
+ "inputs" :
+ [
+ {
+ "path" : "CMakeLists.txt"
+ },
+ {
+ "isGenerated" : true,
+ "path" : "cmake-build-debug/CMakeFiles/3.30.5/CMakeSystem.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-Initialize.cmake"
+ },
+ {
+ "isGenerated" : true,
+ "path" : "cmake-build-debug/CMakeFiles/3.30.5/CMakeCCompiler.cmake"
+ },
+ {
+ "isGenerated" : true,
+ "path" : "cmake-build-debug/CMakeFiles/3.30.5/CMakeCXXCompiler.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeGenericSystem.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/WindowsPaths.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-C.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-C.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU.cmake"
+ },
+ {
+ "isGenerated" : true,
+ "path" : "cmake-build-debug/CMakeFiles/3.30.5/CMakeRCCompiler.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeRCInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-windres.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-C-ABI.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-CXX.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-CXX-ABI.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake"
+ }
+ ],
+ "kind" : "cmakeFiles",
+ "paths" :
+ {
+ "build" : "C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug",
+ "source" : "C:/ME-2/Prog2B-wdh/Prog3B_Anke"
+ },
+ "version" :
+ {
+ "major" : 1,
+ "minor" : 1
+ }
+}
diff --git a/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-8d7f8630001fb7bf1f8e.json b/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-8d7f8630001fb7bf1f8e.json
new file mode 100644
index 0000000..a8de9a8
--- /dev/null
+++ b/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-8d7f8630001fb7bf1f8e.json
@@ -0,0 +1,60 @@
+{
+ "configurations" :
+ [
+ {
+ "directories" :
+ [
+ {
+ "build" : ".",
+ "jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.28"
+ },
+ "projectIndex" : 0,
+ "source" : ".",
+ "targetIndexes" :
+ [
+ 0
+ ]
+ }
+ ],
+ "name" : "Debug",
+ "projects" :
+ [
+ {
+ "directoryIndexes" :
+ [
+ 0
+ ],
+ "name" : "Prog3B",
+ "targetIndexes" :
+ [
+ 0
+ ]
+ }
+ ],
+ "targets" :
+ [
+ {
+ "directoryIndex" : 0,
+ "id" : "Prog3B::@6890427a1f51a3e7e1df",
+ "jsonFile" : "target-Prog3B-Debug-b6813447086d7f63b98f.json",
+ "name" : "Prog3B",
+ "projectIndex" : 0
+ }
+ ]
+ }
+ ],
+ "kind" : "codemodel",
+ "paths" :
+ {
+ "build" : "C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug",
+ "source" : "C:/ME-2/Prog2B-wdh/Prog3B_Anke"
+ },
+ "version" :
+ {
+ "major" : 2,
+ "minor" : 7
+ }
+}
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
new file mode 100644
index 0000000..3a67af9
--- /dev/null
+++ b/cmake-build-debug/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json
@@ -0,0 +1,14 @@
+{
+ "backtraceGraph" :
+ {
+ "commands" : [],
+ "files" : [],
+ "nodes" : []
+ },
+ "installers" : [],
+ "paths" :
+ {
+ "build" : ".",
+ "source" : "."
+ }
+}
diff --git a/cmake-build-debug/.cmake/api/v1/reply/index-2025-12-08T15-00-02-0713.json b/cmake-build-debug/.cmake/api/v1/reply/index-2025-12-08T15-00-02-0713.json
new file mode 100644
index 0000000..fcca022
--- /dev/null
+++ b/cmake-build-debug/.cmake/api/v1/reply/index-2025-12-08T15-00-02-0713.json
@@ -0,0 +1,108 @@
+{
+ "cmake" :
+ {
+ "generator" :
+ {
+ "multiConfig" : false,
+ "name" : "Ninja"
+ },
+ "paths" :
+ {
+ "cmake" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/bin/cmake.exe",
+ "cpack" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/bin/cpack.exe",
+ "ctest" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/bin/ctest.exe",
+ "root" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30"
+ },
+ "version" :
+ {
+ "isDirty" : false,
+ "major" : 3,
+ "minor" : 30,
+ "patch" : 5,
+ "string" : "3.30.5",
+ "suffix" : ""
+ }
+ },
+ "objects" :
+ [
+ {
+ "jsonFile" : "codemodel-v2-8d7f8630001fb7bf1f8e.json",
+ "kind" : "codemodel",
+ "version" :
+ {
+ "major" : 2,
+ "minor" : 7
+ }
+ },
+ {
+ "jsonFile" : "cache-v2-bb0469ee8c5e3decfa47.json",
+ "kind" : "cache",
+ "version" :
+ {
+ "major" : 2,
+ "minor" : 0
+ }
+ },
+ {
+ "jsonFile" : "cmakeFiles-v1-fe765cc3ed39f16d3190.json",
+ "kind" : "cmakeFiles",
+ "version" :
+ {
+ "major" : 1,
+ "minor" : 1
+ }
+ },
+ {
+ "jsonFile" : "toolchains-v1-097e44f534b5fc58f7c2.json",
+ "kind" : "toolchains",
+ "version" :
+ {
+ "major" : 1,
+ "minor" : 0
+ }
+ }
+ ],
+ "reply" :
+ {
+ "cache-v2" :
+ {
+ "jsonFile" : "cache-v2-bb0469ee8c5e3decfa47.json",
+ "kind" : "cache",
+ "version" :
+ {
+ "major" : 2,
+ "minor" : 0
+ }
+ },
+ "cmakeFiles-v1" :
+ {
+ "jsonFile" : "cmakeFiles-v1-fe765cc3ed39f16d3190.json",
+ "kind" : "cmakeFiles",
+ "version" :
+ {
+ "major" : 1,
+ "minor" : 1
+ }
+ },
+ "codemodel-v2" :
+ {
+ "jsonFile" : "codemodel-v2-8d7f8630001fb7bf1f8e.json",
+ "kind" : "codemodel",
+ "version" :
+ {
+ "major" : 2,
+ "minor" : 7
+ }
+ },
+ "toolchains-v1" :
+ {
+ "jsonFile" : "toolchains-v1-097e44f534b5fc58f7c2.json",
+ "kind" : "toolchains",
+ "version" :
+ {
+ "major" : 1,
+ "minor" : 0
+ }
+ }
+ }
+}
diff --git a/cmake-build-debug/.cmake/api/v1/reply/target-Prog3B-Debug-b6813447086d7f63b98f.json b/cmake-build-debug/.cmake/api/v1/reply/target-Prog3B-Debug-b6813447086d7f63b98f.json
new file mode 100644
index 0000000..431691b
--- /dev/null
+++ b/cmake-build-debug/.cmake/api/v1/reply/target-Prog3B-Debug-b6813447086d7f63b98f.json
@@ -0,0 +1,157 @@
+{
+ "artifacts" :
+ [
+ {
+ "path" : "Prog3B.exe"
+ },
+ {
+ "path" : "Prog3B.pdb"
+ }
+ ],
+ "backtrace" : 1,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "add_executable",
+ "target_link_libraries",
+ "target_include_directories"
+ ],
+ "files" :
+ [
+ "CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 28,
+ "parent" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 35,
+ "parent" : 0
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 31,
+ "parent" : 0
+ }
+ ]
+ },
+ "compileGroups" :
+ [
+ {
+ "compileCommandFragments" :
+ [
+ {
+ "fragment" : "-g -std=gnu++20 -fdiagnostics-color=always"
+ }
+ ],
+ "includes" :
+ [
+ {
+ "backtrace" : 3,
+ "path" : "C:/ME-2/Prog2B-wdh/Prog3B_Anke/includes"
+ },
+ {
+ "backtrace" : 3,
+ "path" : "C:/ME-2/Prog2B-wdh/Prog3B_Anke/raylib"
+ }
+ ],
+ "language" : "CXX",
+ "languageStandard" :
+ {
+ "backtraces" :
+ [
+ 1
+ ],
+ "standard" : "20"
+ },
+ "sourceIndexes" :
+ [
+ 0,
+ 1,
+ 2
+ ]
+ }
+ ],
+ "id" : "Prog3B::@6890427a1f51a3e7e1df",
+ "link" :
+ {
+ "commandFragments" :
+ [
+ {
+ "fragment" : "-g",
+ "role" : "flags"
+ },
+ {
+ "fragment" : "",
+ "role" : "flags"
+ },
+ {
+ "backtrace" : 2,
+ "fragment" : "C:\\ME-2\\Prog2B-wdh\\Prog3B_Anke\\windows\\libraylib.a",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 2,
+ "fragment" : "-lwinmm",
+ "role" : "libraries"
+ },
+ {
+ "fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32",
+ "role" : "libraries"
+ }
+ ],
+ "language" : "CXX"
+ },
+ "name" : "Prog3B",
+ "nameOnDisk" : "Prog3B.exe",
+ "paths" :
+ {
+ "build" : ".",
+ "source" : "."
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "Source Files",
+ "sourceIndexes" :
+ [
+ 0,
+ 1,
+ 2
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/main.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gamecube.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gamematrix.cpp",
+ "sourceGroupIndex" : 0
+ }
+ ],
+ "type" : "EXECUTABLE"
+}
diff --git a/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-097e44f534b5fc58f7c2.json b/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-097e44f534b5fc58f7c2.json
new file mode 100644
index 0000000..8e8bf90
--- /dev/null
+++ b/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-097e44f534b5fc58f7c2.json
@@ -0,0 +1,93 @@
+{
+ "kind" : "toolchains",
+ "toolchains" :
+ [
+ {
+ "compiler" :
+ {
+ "id" : "GNU",
+ "implicit" :
+ {
+ "includeDirectories" :
+ [
+ "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include",
+ "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/include",
+ "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed",
+ "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/x86_64-w64-mingw32/include"
+ ],
+ "linkDirectories" : [],
+ "linkFrameworkDirectories" : [],
+ "linkLibraries" : []
+ },
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/gcc.exe",
+ "version" : "13.1.0"
+ },
+ "language" : "C",
+ "sourceFileExtensions" :
+ [
+ "c",
+ "m"
+ ]
+ },
+ {
+ "compiler" :
+ {
+ "id" : "GNU",
+ "implicit" :
+ {
+ "includeDirectories" :
+ [
+ "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++",
+ "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32",
+ "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward",
+ "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include",
+ "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/include",
+ "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed",
+ "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/x86_64-w64-mingw32/include"
+ ],
+ "linkDirectories" : [],
+ "linkFrameworkDirectories" : [],
+ "linkLibraries" : []
+ },
+ "path" : "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/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/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/windres.exe"
+ },
+ "language" : "RC",
+ "sourceFileExtensions" :
+ [
+ "rc",
+ "RC"
+ ]
+ }
+ ],
+ "version" :
+ {
+ "major" : 1,
+ "minor" : 0
+ }
+}
diff --git a/cmake-build-debug/.ninja_deps b/cmake-build-debug/.ninja_deps
new file mode 100644
index 0000000..90cdc01
Binary files /dev/null and b/cmake-build-debug/.ninja_deps differ
diff --git a/cmake-build-debug/.ninja_log b/cmake-build-debug/.ninja_log
new file mode 100644
index 0000000..4025a7a
--- /dev/null
+++ b/cmake-build-debug/.ninja_log
@@ -0,0 +1,7 @@
+# ninja log v6
+50 5642 7869092088043504 CMakeFiles/Prog3B.dir/src/gamematrix.cpp.obj 4ee11655d92de599
+25 5653 7869092087796984 CMakeFiles/Prog3B.dir/src/gamecube.cpp.obj 1570054f97f56be7
+6 6713 7869092087606978 CMakeFiles/Prog3B.dir/src/main.cpp.obj 9e1ccef05a63a36f
+6713 7712 7869092154680074 Prog3B.exe a6630699d72184d9
+41 2002 7869095317348454 CMakeFiles/Prog3B.dir/src/main.cpp.obj 9e1ccef05a63a36f
+2004 2486 7869095336976606 Prog3B.exe a6630699d72184d9
diff --git a/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_C.bin b/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_C.bin
index d06fbdf..8eeb3f2 100644
Binary files a/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_C.bin and b/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_C.bin differ
diff --git a/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_CXX.bin b/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_CXX.bin
index 30af835..6e747da 100644
Binary files a/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_CXX.bin and b/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_CXX.bin differ
diff --git a/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdC/a.exe b/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdC/a.exe
index 7a575d3..645add3 100644
Binary files a/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdC/a.exe and b/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdC/a.exe differ
diff --git a/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdCXX/a.exe b/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdCXX/a.exe
index 4aedb45..4832b8b 100644
Binary files a/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdCXX/a.exe and b/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdCXX/a.exe differ
diff --git a/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml b/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml
index 135cfc2..eca0ae4 100644
--- a/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml
+++ b/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml
@@ -61,8 +61,8 @@ events:
checks:
- "Detecting C compiler ABI info"
directories:
- source: "C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-exn1ws"
- binary: "C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-exn1ws"
+ source: "C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kuzf4t"
+ binary: "C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kuzf4t"
cmakeVariables:
CMAKE_C_FLAGS: ""
CMAKE_C_FLAGS_DEBUG: "-g"
@@ -71,10 +71,10 @@ events:
variable: "CMAKE_C_ABI_COMPILED"
cached: true
stdout: |
- Change Dir: 'C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-exn1ws'
+ Change Dir: 'C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kuzf4t'
- Run Build Command(s): "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/ninja/win/x64/ninja.exe" -v cmTC_7798c
- [1/2] C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\gcc.exe -fdiagnostics-color=always -v -o CMakeFiles/cmTC_7798c.dir/CMakeCCompilerABI.c.obj -c "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCCompilerABI.c"
+ Run Build Command(s): "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/ninja/win/x64/ninja.exe" -v cmTC_da8b8
+ [1/2] C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\gcc.exe -fdiagnostics-color=always -v -o CMakeFiles/cmTC_da8b8.dir/CMakeCCompilerABI.c.obj -c "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCCompilerABI.c"
Using built-in specs.
COLLECT_GCC=C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\gcc.exe
Target: x86_64-w64-mingw32
@@ -82,8 +82,8 @@ events:
Thread model: posix
Supported LTO compression algorithms: zlib
gcc version 13.1.0 (GCC)
- COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_7798c.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_7798c.dir/'
- C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1.exe -quiet -v -iprefix C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_7798c.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\amina\\AppData\\Local\\Temp\\ccwvhnDf.s
+ COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_da8b8.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_da8b8.dir/'
+ C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1.exe -quiet -v -iprefix C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_da8b8.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\amina\\AppData\\Local\\Temp\\cculvaHB.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
@@ -101,13 +101,13 @@ events:
C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/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_7798c.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_7798c.dir/'
- as -v -o CMakeFiles/cmTC_7798c.dir/CMakeCCompilerABI.c.obj C:\\Users\\amina\\AppData\\Local\\Temp\\ccwvhnDf.s
+ COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_da8b8.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_da8b8.dir/'
+ as -v -o CMakeFiles/cmTC_da8b8.dir/CMakeCCompilerABI.c.obj C:\\Users\\amina\\AppData\\Local\\Temp\\cculvaHB.s
GNU assembler version 2.40 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.40
COMPILER_PATH=C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/
LIBRARY_PATH=C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../\x0d
- COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_7798c.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_7798c.dir/CMakeCCompilerABI.c.'\x0d
- [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\gcc.exe -v -Wl,-v CMakeFiles/cmTC_7798c.dir/CMakeCCompilerABI.c.obj -o cmTC_7798c.exe -Wl,--out-implib,libcmTC_7798c.dll.a -Wl,--major-image-version,0,--minor-image-version,0 && cd ."
+ COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_da8b8.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_da8b8.dir/CMakeCCompilerABI.c.'\x0d
+ [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\gcc.exe -v -Wl,-v CMakeFiles/cmTC_da8b8.dir/CMakeCCompilerABI.c.obj -o cmTC_da8b8.exe -Wl,--out-implib,libcmTC_da8b8.dll.a -Wl,--major-image-version,0,--minor-image-version,0 && cd ."
Using built-in specs.
COLLECT_GCC=C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\gcc.exe
COLLECT_LTO_WRAPPER=C:/Users/amina/AppData/Local/JetBrains/CLion\\ 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe
@@ -118,12 +118,12 @@ events:
gcc version 13.1.0 (GCC)
COMPILER_PATH=C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/
LIBRARY_PATH=C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../
- COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_7798c.exe' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_7798c.'
- C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -m i386pep -Bdynamic -o cmTC_7798c.exe C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_7798c.dir/CMakeCCompilerABI.c.obj --out-implib libcmTC_7798c.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/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o
+ COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_da8b8.exe' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_da8b8.'
+ C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -m i386pep -Bdynamic -o cmTC_da8b8.exe C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_da8b8.dir/CMakeCCompilerABI.c.obj --out-implib libcmTC_da8b8.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/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o
collect2 version 13.1.0
- C:\\Users\\amina\\AppData\\Local\\JetBrains\\CLion 2024.3.4\\bin\\mingw\\bin/ld.exe -m i386pep -Bdynamic -o cmTC_7798c.exe C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_7798c.dir/CMakeCCompilerABI.c.obj --out-implib libcmTC_7798c.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/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o\x0d
+ C:\\Users\\amina\\AppData\\Local\\JetBrains\\CLion 2024.3.4\\bin\\mingw\\bin/ld.exe -m i386pep -Bdynamic -o cmTC_da8b8.exe C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_da8b8.dir/CMakeCCompilerABI.c.obj --out-implib libcmTC_da8b8.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/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o\x0d
GNU ld (GNU Binutils) 2.40\x0d
- COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_7798c.exe' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_7798c.'\x0d
+ COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_da8b8.exe' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_da8b8.'\x0d
exitCode: 0
-
@@ -158,10 +158,10 @@ events:
Parsed C implicit link information:
link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)]
- ignore line: [Change Dir: 'C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-exn1ws']
+ ignore line: [Change Dir: 'C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kuzf4t']
ignore line: []
- ignore line: [Run Build Command(s): "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/ninja/win/x64/ninja.exe" -v cmTC_7798c]
- ignore line: [[1/2] C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\gcc.exe -fdiagnostics-color=always -v -o CMakeFiles/cmTC_7798c.dir/CMakeCCompilerABI.c.obj -c "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCCompilerABI.c"]
+ ignore line: [Run Build Command(s): "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/ninja/win/x64/ninja.exe" -v cmTC_da8b8]
+ ignore line: [[1/2] C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\gcc.exe -fdiagnostics-color=always -v -o CMakeFiles/cmTC_da8b8.dir/CMakeCCompilerABI.c.obj -c "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCCompilerABI.c"]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\gcc.exe]
ignore line: [Target: x86_64-w64-mingw32]
@@ -169,8 +169,8 @@ events:
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_7798c.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_7798c.dir/']
- ignore line: [ C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1.exe -quiet -v -iprefix C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_7798c.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\amina\\AppData\\Local\\Temp\\ccwvhnDf.s]
+ ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_da8b8.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_da8b8.dir/']
+ ignore line: [ C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1.exe -quiet -v -iprefix C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_da8b8.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\amina\\AppData\\Local\\Temp\\cculvaHB.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]
@@ -188,8 +188,8 @@ events:
ignore line: [ C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/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_7798c.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_7798c.dir/']
- ignore line: [ as -v -o CMakeFiles/cmTC_7798c.dir/CMakeCCompilerABI.c.obj C:\\Users\\amina\\AppData\\Local\\Temp\\ccwvhnDf.s]
+ ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_da8b8.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_da8b8.dir/']
+ ignore line: [ as -v -o CMakeFiles/cmTC_da8b8.dir/CMakeCCompilerABI.c.obj C:\\Users\\amina\\AppData\\Local\\Temp\\cculvaHB.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/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/]
ignore line: [C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/]
@@ -199,8 +199,8 @@ events:
ignore line: [C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/]
ignore line: [C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/]
ignore line: [C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../\x0d]
- ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_7798c.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_7798c.dir/CMakeCCompilerABI.c.'\x0d]
- ignore line: [[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\gcc.exe -v -Wl -v CMakeFiles/cmTC_7798c.dir/CMakeCCompilerABI.c.obj -o cmTC_7798c.exe -Wl --out-implib libcmTC_7798c.dll.a -Wl --major-image-version 0 --minor-image-version 0 && cd ."]
+ ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_da8b8.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_da8b8.dir/CMakeCCompilerABI.c.'\x0d]
+ ignore line: [[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\gcc.exe -v -Wl -v CMakeFiles/cmTC_da8b8.dir/CMakeCCompilerABI.c.obj -o cmTC_da8b8.exe -Wl --out-implib libcmTC_da8b8.dll.a -Wl --major-image-version 0 --minor-image-version 0 && cd ."]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\gcc.exe]
ignore line: [COLLECT_LTO_WRAPPER=C:/Users/amina/AppData/Local/JetBrains/CLion\\ 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe]
@@ -217,12 +217,12 @@ events:
ignore line: [C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/]
ignore line: [C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/]
ignore line: [C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../]
- ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_7798c.exe' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_7798c.']
- ignore line: [ C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -m i386pep -Bdynamic -o cmTC_7798c.exe C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_7798c.dir/CMakeCCompilerABI.c.obj --out-implib libcmTC_7798c.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/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o]
+ ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_da8b8.exe' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_da8b8.']
+ ignore line: [ C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -m i386pep -Bdynamic -o cmTC_da8b8.exe C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_da8b8.dir/CMakeCCompilerABI.c.obj --out-implib libcmTC_da8b8.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/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o]
ignore line: [collect2 version 13.1.0]
- ignore line: [C:\\Users\\amina\\AppData\\Local\\JetBrains\\CLion 2024.3.4\\bin\\mingw\\bin/ld.exe -m i386pep -Bdynamic -o cmTC_7798c.exe C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_7798c.dir/CMakeCCompilerABI.c.obj --out-implib libcmTC_7798c.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/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o\x0d]
+ ignore line: [C:\\Users\\amina\\AppData\\Local\\JetBrains\\CLion 2024.3.4\\bin\\mingw\\bin/ld.exe -m i386pep -Bdynamic -o cmTC_da8b8.exe C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_da8b8.dir/CMakeCCompilerABI.c.obj --out-implib libcmTC_da8b8.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/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o\x0d]
ignore line: [GNU ld (GNU Binutils) 2.40\x0d]
- ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_7798c.exe' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_7798c.'\x0d]
+ ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_da8b8.exe' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_da8b8.'\x0d]
ignore line: []
ignore line: []
linker tool for 'C': C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/ld.exe
@@ -251,8 +251,8 @@ events:
checks:
- "Detecting CXX compiler ABI info"
directories:
- source: "C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-6x29q7"
- binary: "C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-6x29q7"
+ source: "C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-cla49b"
+ binary: "C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-cla49b"
cmakeVariables:
CMAKE_CXX_FLAGS: ""
CMAKE_CXX_FLAGS_DEBUG: "-g"
@@ -262,10 +262,10 @@ events:
variable: "CMAKE_CXX_ABI_COMPILED"
cached: true
stdout: |
- Change Dir: 'C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-6x29q7'
+ Change Dir: 'C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-cla49b'
- Run Build Command(s): "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/ninja/win/x64/ninja.exe" -v cmTC_c5df4
- [1/2] C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\G__~1.EXE -fdiagnostics-color=always -v -o CMakeFiles/cmTC_c5df4.dir/CMakeCXXCompilerABI.cpp.obj -c "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp"
+ Run Build Command(s): "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/ninja/win/x64/ninja.exe" -v cmTC_b07dd
+ [1/2] C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\G__~1.EXE -fdiagnostics-color=always -v -o CMakeFiles/cmTC_b07dd.dir/CMakeCXXCompilerABI.cpp.obj -c "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp"
Using built-in specs.
COLLECT_GCC=C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\G__~1.EXE
Target: x86_64-w64-mingw32
@@ -273,8 +273,8 @@ events:
Thread model: posix
Supported LTO compression algorithms: zlib
gcc version 13.1.0 (GCC)
- COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_c5df4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_c5df4.dir/'
- C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1plus.exe -quiet -v -iprefix C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_c5df4.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\amina\\AppData\\Local\\Temp\\cc7h4VfB.s
+ COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_b07dd.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_b07dd.dir/'
+ C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1plus.exe -quiet -v -iprefix C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_b07dd.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\amina\\AppData\\Local\\Temp\\ccu4H3yW.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
@@ -298,13 +298,13 @@ events:
C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/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_c5df4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_c5df4.dir/'
- as -v -o CMakeFiles/cmTC_c5df4.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\amina\\AppData\\Local\\Temp\\cc7h4VfB.s
+ COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_b07dd.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_b07dd.dir/'
+ as -v -o CMakeFiles/cmTC_b07dd.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\amina\\AppData\\Local\\Temp\\ccu4H3yW.s
GNU assembler version 2.40 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.40
COMPILER_PATH=C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/
LIBRARY_PATH=C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../\x0d
- COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_c5df4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_c5df4.dir/CMakeCXXCompilerABI.cpp.'\x0d
- [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\G__~1.EXE -v -Wl,-v CMakeFiles/cmTC_c5df4.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_c5df4.exe -Wl,--out-implib,libcmTC_c5df4.dll.a -Wl,--major-image-version,0,--minor-image-version,0 && cd ."
+ COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_b07dd.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_b07dd.dir/CMakeCXXCompilerABI.cpp.'\x0d
+ [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\G__~1.EXE -v -Wl,-v CMakeFiles/cmTC_b07dd.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_b07dd.exe -Wl,--out-implib,libcmTC_b07dd.dll.a -Wl,--major-image-version,0,--minor-image-version,0 && cd ."
Using built-in specs.
COLLECT_GCC=C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\G__~1.EXE
COLLECT_LTO_WRAPPER=C:/Users/amina/AppData/Local/JetBrains/CLion\\ 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe
@@ -315,12 +315,12 @@ events:
gcc version 13.1.0 (GCC)
COMPILER_PATH=C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/
LIBRARY_PATH=C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../
- COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_c5df4.exe' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_c5df4.'
- C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -m i386pep -Bdynamic -o cmTC_c5df4.exe C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_c5df4.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_c5df4.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/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o
+ COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_b07dd.exe' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_b07dd.'
+ C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -m i386pep -Bdynamic -o cmTC_b07dd.exe C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_b07dd.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_b07dd.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/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o
collect2 version 13.1.0
- C:\\Users\\amina\\AppData\\Local\\JetBrains\\CLion 2024.3.4\\bin\\mingw\\bin/ld.exe -m i386pep -Bdynamic -o cmTC_c5df4.exe C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_c5df4.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_c5df4.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/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o\x0d
+ C:\\Users\\amina\\AppData\\Local\\JetBrains\\CLion 2024.3.4\\bin\\mingw\\bin/ld.exe -m i386pep -Bdynamic -o cmTC_b07dd.exe C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_b07dd.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_b07dd.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/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o\x0d
GNU ld (GNU Binutils) 2.40\x0d
- COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_c5df4.exe' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_c5df4.'\x0d
+ COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_b07dd.exe' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_b07dd.'\x0d
exitCode: 0
-
@@ -361,10 +361,10 @@ events:
Parsed CXX implicit link information:
link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)]
- ignore line: [Change Dir: 'C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-6x29q7']
+ ignore line: [Change Dir: 'C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-cla49b']
ignore line: []
- ignore line: [Run Build Command(s): "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/ninja/win/x64/ninja.exe" -v cmTC_c5df4]
- ignore line: [[1/2] C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\G__~1.EXE -fdiagnostics-color=always -v -o CMakeFiles/cmTC_c5df4.dir/CMakeCXXCompilerABI.cpp.obj -c "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp"]
+ ignore line: [Run Build Command(s): "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/ninja/win/x64/ninja.exe" -v cmTC_b07dd]
+ ignore line: [[1/2] C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\G__~1.EXE -fdiagnostics-color=always -v -o CMakeFiles/cmTC_b07dd.dir/CMakeCXXCompilerABI.cpp.obj -c "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp"]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\G__~1.EXE]
ignore line: [Target: x86_64-w64-mingw32]
@@ -372,8 +372,8 @@ events:
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_c5df4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_c5df4.dir/']
- ignore line: [ C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1plus.exe -quiet -v -iprefix C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_c5df4.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\amina\\AppData\\Local\\Temp\\cc7h4VfB.s]
+ ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_b07dd.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_b07dd.dir/']
+ ignore line: [ C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1plus.exe -quiet -v -iprefix C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_b07dd.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\amina\\AppData\\Local\\Temp\\ccu4H3yW.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]
@@ -397,8 +397,8 @@ events:
ignore line: [ C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/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_c5df4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_c5df4.dir/']
- ignore line: [ as -v -o CMakeFiles/cmTC_c5df4.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\amina\\AppData\\Local\\Temp\\cc7h4VfB.s]
+ ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_b07dd.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_b07dd.dir/']
+ ignore line: [ as -v -o CMakeFiles/cmTC_b07dd.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\amina\\AppData\\Local\\Temp\\ccu4H3yW.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/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/]
ignore line: [C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/]
@@ -408,8 +408,8 @@ events:
ignore line: [C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/]
ignore line: [C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/]
ignore line: [C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../\x0d]
- ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_c5df4.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_c5df4.dir/CMakeCXXCompilerABI.cpp.'\x0d]
- ignore line: [[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\G__~1.EXE -v -Wl -v CMakeFiles/cmTC_c5df4.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_c5df4.exe -Wl --out-implib libcmTC_c5df4.dll.a -Wl --major-image-version 0 --minor-image-version 0 && cd ."]
+ ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_b07dd.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_b07dd.dir/CMakeCXXCompilerABI.cpp.'\x0d]
+ ignore line: [[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\G__~1.EXE -v -Wl -v CMakeFiles/cmTC_b07dd.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_b07dd.exe -Wl --out-implib libcmTC_b07dd.dll.a -Wl --major-image-version 0 --minor-image-version 0 && cd ."]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\G__~1.EXE]
ignore line: [COLLECT_LTO_WRAPPER=C:/Users/amina/AppData/Local/JetBrains/CLion\\ 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe]
@@ -426,12 +426,12 @@ events:
ignore line: [C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/]
ignore line: [C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/]
ignore line: [C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../]
- ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_c5df4.exe' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_c5df4.']
- ignore line: [ C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -m i386pep -Bdynamic -o cmTC_c5df4.exe C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_c5df4.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_c5df4.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/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o]
+ ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_b07dd.exe' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_b07dd.']
+ ignore line: [ C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -m i386pep -Bdynamic -o cmTC_b07dd.exe C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_b07dd.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_b07dd.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/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o]
ignore line: [collect2 version 13.1.0]
- ignore line: [C:\\Users\\amina\\AppData\\Local\\JetBrains\\CLion 2024.3.4\\bin\\mingw\\bin/ld.exe -m i386pep -Bdynamic -o cmTC_c5df4.exe C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_c5df4.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_c5df4.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/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o\x0d]
+ ignore line: [C:\\Users\\amina\\AppData\\Local\\JetBrains\\CLion 2024.3.4\\bin\\mingw\\bin/ld.exe -m i386pep -Bdynamic -o cmTC_b07dd.exe C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_b07dd.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_b07dd.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/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o\x0d]
ignore line: [GNU ld (GNU Binutils) 2.40\x0d]
- ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_c5df4.exe' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_c5df4.'\x0d]
+ ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_b07dd.exe' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_b07dd.'\x0d]
ignore line: []
ignore line: []
linker tool for 'CXX': C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/ld.exe
diff --git a/cmake-build-debug/CMakeFiles/Prog3B.dir/src/gamecube.cpp.obj b/cmake-build-debug/CMakeFiles/Prog3B.dir/src/gamecube.cpp.obj
new file mode 100644
index 0000000..12b89b1
Binary files /dev/null and b/cmake-build-debug/CMakeFiles/Prog3B.dir/src/gamecube.cpp.obj differ
diff --git a/cmake-build-debug/CMakeFiles/Prog3B.dir/src/gamematrix.cpp.obj b/cmake-build-debug/CMakeFiles/Prog3B.dir/src/gamematrix.cpp.obj
new file mode 100644
index 0000000..c0dde28
Binary files /dev/null and b/cmake-build-debug/CMakeFiles/Prog3B.dir/src/gamematrix.cpp.obj differ
diff --git a/cmake-build-debug/CMakeFiles/Prog3B.dir/src/main.cpp.obj b/cmake-build-debug/CMakeFiles/Prog3B.dir/src/main.cpp.obj
new file mode 100644
index 0000000..a9950bd
Binary files /dev/null and b/cmake-build-debug/CMakeFiles/Prog3B.dir/src/main.cpp.obj differ
diff --git a/cmake-build-debug/CMakeFiles/TargetDirectories.txt b/cmake-build-debug/CMakeFiles/TargetDirectories.txt
new file mode 100644
index 0000000..719e987
--- /dev/null
+++ b/cmake-build-debug/CMakeFiles/TargetDirectories.txt
@@ -0,0 +1,3 @@
+C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug/CMakeFiles/Prog3B.dir
+C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug/CMakeFiles/edit_cache.dir
+C:/ME-2/Prog2B-wdh/Prog3B_Anke/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
index ef9d331..bc7f603 100644
--- a/cmake-build-debug/CMakeFiles/clion-Debug-log.txt
+++ b/cmake-build-debug/CMakeFiles/clion-Debug-log.txt
@@ -1,25 +1,4 @@
"C:\Users\amina\AppData\Local\JetBrains\CLion 2024.3.4\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_BUILD_TYPE=Debug "-DCMAKE_MAKE_PROGRAM=C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/ninja/win/x64/ninja.exe" -G Ninja -S C:\ME-2\Prog2B-wdh\Prog3B_Anke -B C:\ME-2\Prog2B-wdh\Prog3B_Anke\cmake-build-debug
--- The C compiler identification is GNU 13.1.0
--- The CXX compiler identification is GNU 13.1.0
--- Detecting C compiler ABI info
--- Detecting C compiler ABI info - done
--- Check for working C compiler: C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/gcc.exe - skipped
--- Detecting C compile features
--- Detecting C compile features - done
--- Detecting CXX compiler ABI info
--- Detecting CXX compiler ABI info - done
--- Check for working CXX compiler: C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/g++.exe - skipped
--- Detecting CXX compile features
--- Detecting CXX compile features - done
--- Configuring done (9.1s)
-CMake Error at CMakeLists.txt:24 (add_executable):
- Cannot find source file:
-
- src/main.cpp
-
-
-CMake Error at CMakeLists.txt:24 (add_executable):
- No SOURCES given to target: Prog3B
-
-
-CMake Generate step failed. Build files cannot be regenerated correctly.
+-- Configuring done (0.8s)
+-- Generating done (0.1s)
+-- Build files have been written to: C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug
diff --git a/cmake-build-debug/CMakeFiles/rules.ninja b/cmake-build-debug/CMakeFiles/rules.ninja
new file mode 100644
index 0000000..b7e5e23
--- /dev/null
+++ b/cmake-build-debug/CMakeFiles/rules.ninja
@@ -0,0 +1,64 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Ninja" Generator, CMake Version 3.30
+
+# This file contains all the rules used to get the outputs files
+# built from the input files.
+# It is included in the main 'build.ninja'.
+
+# =============================================================================
+# Project: Prog3B
+# Configurations: Debug
+# =============================================================================
+# =============================================================================
+
+#############################################
+# Rule for compiling CXX files.
+
+rule CXX_COMPILER__Prog3B_unscanned_Debug
+ depfile = $DEP_FILE
+ deps = gcc
+ command = ${LAUNCHER}${CODE_CHECK}C:\Users\amina\AppData\Local\JETBRA~1\CLION2~1.4\bin\mingw\bin\G__~1.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__Prog3B_Debug
+ command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && C:\Users\amina\AppData\Local\JETBRA~1\CLION2~1.4\bin\mingw\bin\G__~1.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\amina\AppData\Local\JetBrains\CLion 2024.3.4\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\ME-2\Prog2B-wdh\Prog3B_Anke -BC:\ME-2\Prog2B-wdh\Prog3B_Anke\cmake-build-debug
+ description = Re-running CMake...
+ generator = 1
+
+
+#############################################
+# Rule for cleaning all built files.
+
+rule CLEAN
+ command = "C:\Users\amina\AppData\Local\JetBrains\CLion 2024.3.4\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\amina\AppData\Local\JetBrains\CLion 2024.3.4\bin\ninja\win\x64\ninja.exe" -t targets
+ description = All primary targets available:
+
diff --git a/cmake-build-debug/Prog3B.exe b/cmake-build-debug/Prog3B.exe
new file mode 100644
index 0000000..afecfb0
Binary files /dev/null and b/cmake-build-debug/Prog3B.exe differ
diff --git a/cmake-build-debug/Testing/Temporary/LastTest.log b/cmake-build-debug/Testing/Temporary/LastTest.log
new file mode 100644
index 0000000..181633d
--- /dev/null
+++ b/cmake-build-debug/Testing/Temporary/LastTest.log
@@ -0,0 +1,3 @@
+Start testing: Dec 08 16:05 Mitteleuropäische Zeit
+----------------------------------------------------------
+End testing: Dec 08 16:05 Mitteleuropäische Zeit
diff --git a/cmake-build-debug/build.ninja b/cmake-build-debug/build.ninja
new file mode 100644
index 0000000..91acdba
--- /dev/null
+++ b/cmake-build-debug/build.ninja
@@ -0,0 +1,161 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Ninja" Generator, CMake Version 3.30
+
+# This file contains all the build statements describing the
+# compilation DAG.
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+#
+# Which is the root file.
+# =============================================================================
+
+# =============================================================================
+# Project: Prog3B
+# 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$:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug/
+# =============================================================================
+# Object build statements for EXECUTABLE target Prog3B
+
+
+#############################################
+# Order-only phony target for Prog3B
+
+build cmake_object_order_depends_target_Prog3B: phony || .
+
+build CMakeFiles/Prog3B.dir/src/main.cpp.obj: CXX_COMPILER__Prog3B_unscanned_Debug C$:/ME-2/Prog2B-wdh/Prog3B_Anke/src/main.cpp || cmake_object_order_depends_target_Prog3B
+ DEP_FILE = CMakeFiles\Prog3B.dir\src\main.cpp.obj.d
+ FLAGS = -g -std=gnu++20 -fdiagnostics-color=always
+ INCLUDES = -IC:/ME-2/Prog2B-wdh/Prog3B_Anke/includes -IC:/ME-2/Prog2B-wdh/Prog3B_Anke/raylib
+ OBJECT_DIR = CMakeFiles\Prog3B.dir
+ OBJECT_FILE_DIR = CMakeFiles\Prog3B.dir\src
+
+build CMakeFiles/Prog3B.dir/src/gamecube.cpp.obj: CXX_COMPILER__Prog3B_unscanned_Debug C$:/ME-2/Prog2B-wdh/Prog3B_Anke/src/gamecube.cpp || cmake_object_order_depends_target_Prog3B
+ DEP_FILE = CMakeFiles\Prog3B.dir\src\gamecube.cpp.obj.d
+ FLAGS = -g -std=gnu++20 -fdiagnostics-color=always
+ INCLUDES = -IC:/ME-2/Prog2B-wdh/Prog3B_Anke/includes -IC:/ME-2/Prog2B-wdh/Prog3B_Anke/raylib
+ OBJECT_DIR = CMakeFiles\Prog3B.dir
+ OBJECT_FILE_DIR = CMakeFiles\Prog3B.dir\src
+
+build CMakeFiles/Prog3B.dir/src/gamematrix.cpp.obj: CXX_COMPILER__Prog3B_unscanned_Debug C$:/ME-2/Prog2B-wdh/Prog3B_Anke/src/gamematrix.cpp || cmake_object_order_depends_target_Prog3B
+ DEP_FILE = CMakeFiles\Prog3B.dir\src\gamematrix.cpp.obj.d
+ FLAGS = -g -std=gnu++20 -fdiagnostics-color=always
+ INCLUDES = -IC:/ME-2/Prog2B-wdh/Prog3B_Anke/includes -IC:/ME-2/Prog2B-wdh/Prog3B_Anke/raylib
+ OBJECT_DIR = CMakeFiles\Prog3B.dir
+ OBJECT_FILE_DIR = CMakeFiles\Prog3B.dir\src
+
+
+# =============================================================================
+# Link build statements for EXECUTABLE target Prog3B
+
+
+#############################################
+# Link the executable Prog3B.exe
+
+build Prog3B.exe: CXX_EXECUTABLE_LINKER__Prog3B_Debug CMakeFiles/Prog3B.dir/src/main.cpp.obj CMakeFiles/Prog3B.dir/src/gamecube.cpp.obj CMakeFiles/Prog3B.dir/src/gamematrix.cpp.obj | C$:/ME-2/Prog2B-wdh/Prog3B_Anke/windows/libraylib.a
+ FLAGS = -g
+ LINK_LIBRARIES = C:/ME-2/Prog2B-wdh/Prog3B_Anke/windows/libraylib.a -lwinmm -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
+ OBJECT_DIR = CMakeFiles\Prog3B.dir
+ POST_BUILD = cd .
+ PRE_LINK = cd .
+ TARGET_FILE = Prog3B.exe
+ TARGET_IMPLIB = libProg3B.dll.a
+ TARGET_PDB = Prog3B.exe.dbg
+
+
+#############################################
+# Utility command for edit_cache
+
+build CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\ME-2\Prog2B-wdh\Prog3B_Anke\cmake-build-debug && "C:\Users\amina\AppData\Local\JetBrains\CLion 2024.3.4\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 = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\ME-2\Prog2B-wdh\Prog3B_Anke\cmake-build-debug && "C:\Users\amina\AppData\Local\JetBrains\CLion 2024.3.4\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\ME-2\Prog2B-wdh\Prog3B_Anke -BC:\ME-2\Prog2B-wdh\Prog3B_Anke\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 Prog3B: phony Prog3B.exe
+
+# =============================================================================
+# Folder targets.
+
+# =============================================================================
+
+#############################################
+# Folder: C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug
+
+build all: phony Prog3B.exe
+
+# =============================================================================
+# Built-in targets
+
+
+#############################################
+# Re-run CMake if any of its inputs changed.
+
+build build.ninja: RERUN_CMAKE | C$:/ME-2/Prog2B-wdh/Prog3B_Anke/CMakeLists.txt C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCInformation.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXInformation.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeGenericSystem.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeRCInformation.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-C.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-C-ABI.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-C.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-CXX-ABI.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-CXX.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-Initialize.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-windres.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/WindowsPaths.cmake CMakeCache.txt CMakeFiles/3.30.5/CMakeCCompiler.cmake CMakeFiles/3.30.5/CMakeCXXCompiler.cmake CMakeFiles/3.30.5/CMakeRCCompiler.cmake CMakeFiles/3.30.5/CMakeSystem.cmake
+ pool = console
+
+
+#############################################
+# A missing CMake input file is not an error.
+
+build C$:/ME-2/Prog2B-wdh/Prog3B_Anke/CMakeLists.txt C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCInformation.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXInformation.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeGenericSystem.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeRCInformation.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-C.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-C-ABI.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-C.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-CXX-ABI.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-CXX.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-Initialize.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-windres.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows.cmake C$:/Users/amina/AppData/Local/JetBrains/CLion$ 2024.3.4/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/WindowsPaths.cmake CMakeCache.txt CMakeFiles/3.30.5/CMakeCCompiler.cmake CMakeFiles/3.30.5/CMakeCXXCompiler.cmake CMakeFiles/3.30.5/CMakeRCCompiler.cmake CMakeFiles/3.30.5/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
new file mode 100644
index 0000000..f4cb064
--- /dev/null
+++ b/cmake-build-debug/cmake_install.cmake
@@ -0,0 +1,57 @@
+# Install script for directory: C:/ME-2/Prog2B-wdh/Prog3B_Anke
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Prog3B")
+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 path to fallback-tool for dependency-resolution.
+if(NOT DEFINED CMAKE_OBJDUMP)
+ set(CMAKE_OBJDUMP "C:/Users/amina/AppData/Local/JetBrains/CLion 2024.3.4/bin/mingw/bin/objdump.exe")
+endif()
+
+if(CMAKE_INSTALL_COMPONENT)
+ if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$")
+ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
+ else()
+ string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}")
+ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt")
+ unset(CMAKE_INST_COMP_HASH)
+ endif()
+else()
+ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
+endif()
+
+if(NOT CMAKE_INSTALL_LOCAL_ONLY)
+ string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
+ "${CMAKE_INSTALL_MANIFEST_FILES}")
+ file(WRITE "C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug/${CMAKE_INSTALL_MANIFEST}"
+ "${CMAKE_INSTALL_MANIFEST_CONTENT}")
+endif()
diff --git a/cmake-build-debug/compile_commands.json b/cmake-build-debug/compile_commands.json
new file mode 100644
index 0000000..a14bea0
--- /dev/null
+++ b/cmake-build-debug/compile_commands.json
@@ -0,0 +1,20 @@
+[
+{
+ "directory": "C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug",
+ "command": "C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\G__~1.EXE -IC:/ME-2/Prog2B-wdh/Prog3B_Anke/includes -IC:/ME-2/Prog2B-wdh/Prog3B_Anke/raylib -g -std=gnu++20 -fdiagnostics-color=always -o CMakeFiles\\Prog3B.dir\\src\\main.cpp.obj -c C:\\ME-2\\Prog2B-wdh\\Prog3B_Anke\\src\\main.cpp",
+ "file": "C:\\ME-2\\Prog2B-wdh\\Prog3B_Anke\\src\\main.cpp",
+ "output": "CMakeFiles\\Prog3B.dir\\src\\main.cpp.obj"
+},
+{
+ "directory": "C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug",
+ "command": "C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\G__~1.EXE -IC:/ME-2/Prog2B-wdh/Prog3B_Anke/includes -IC:/ME-2/Prog2B-wdh/Prog3B_Anke/raylib -g -std=gnu++20 -fdiagnostics-color=always -o CMakeFiles\\Prog3B.dir\\src\\gamecube.cpp.obj -c C:\\ME-2\\Prog2B-wdh\\Prog3B_Anke\\src\\gamecube.cpp",
+ "file": "C:\\ME-2\\Prog2B-wdh\\Prog3B_Anke\\src\\gamecube.cpp",
+ "output": "CMakeFiles\\Prog3B.dir\\src\\gamecube.cpp.obj"
+},
+{
+ "directory": "C:/ME-2/Prog2B-wdh/Prog3B_Anke/cmake-build-debug",
+ "command": "C:\\Users\\amina\\AppData\\Local\\JETBRA~1\\CLION2~1.4\\bin\\mingw\\bin\\G__~1.EXE -IC:/ME-2/Prog2B-wdh/Prog3B_Anke/includes -IC:/ME-2/Prog2B-wdh/Prog3B_Anke/raylib -g -std=gnu++20 -fdiagnostics-color=always -o CMakeFiles\\Prog3B.dir\\src\\gamematrix.cpp.obj -c C:\\ME-2\\Prog2B-wdh\\Prog3B_Anke\\src\\gamematrix.cpp",
+ "file": "C:\\ME-2\\Prog2B-wdh\\Prog3B_Anke\\src\\gamematrix.cpp",
+ "output": "CMakeFiles\\Prog3B.dir\\src\\gamematrix.cpp.obj"
+}
+]
\ No newline at end of file
diff --git a/gamecube.h b/includes/gamecube.h
similarity index 100%
rename from gamecube.h
rename to includes/gamecube.h
diff --git a/gamematrix.h b/includes/gamematrix.h
similarity index 84%
rename from gamematrix.h
rename to includes/gamematrix.h
index 7a644d6..0d16060 100644
--- a/gamematrix.h
+++ b/includes/gamematrix.h
@@ -16,4 +16,9 @@ public:
// Verschiebung
static std::array,4> translate(const std::array& pos);
+
+ // 4x4 Einheitsmatrix
+ static std::array,4> identity(); // <-- add this
};
+
+
diff --git a/gamecube.cpp b/src/gamecube.cpp
similarity index 70%
rename from gamecube.cpp
rename to src/gamecube.cpp
index 6848d50..280fcbb 100644
--- a/gamecube.cpp
+++ b/src/gamecube.cpp
@@ -1,16 +1,27 @@
#include "gamecube.h"
+// Konstanten fĂźr Rotation und MatrixgrĂśĂe
+constexpr float ROTATION_HALF = 90.0f;
+constexpr float ROTATION_FULL = 180.0f;
+
+
+// Standardfarben
+const Color DEFAULT_COLOR = GRAY;
+const Color WIRES_COLOR = BLACK;
+
+
gamecube::gamecube(const Vec3 &pos, Color col)
: position(pos), color(col) {}
+// â
Klar strukturierte Funktion
void gamecube::Update(float flipSpeed)
{
if (flippingForward)
{
rotation += flipSpeed;
- if (rotation >= 180.0f)
+ if (rotation >= ROTATION_FULL) // â ď¸ Magic Number
{
- rotation = 180.0f;
+ rotation = ROTATION_FULL; // â ď¸ Magic Number
flippingForward = false;
flipped = true;
}
@@ -30,7 +41,7 @@ void gamecube::Update(float flipSpeed)
void gamecube::FlipForward() { flippingForward = true; }
void gamecube::FlipBackward() { flippingBackward = true; }
-bool gamecube::IsFlipped() const { return flipped; }
+bool gamecube::IsFlipped() const { return flipped; } // â
Getter sauber, const korrekt
bool gamecube::IsMatched() const { return matched; }
void gamecube::SetMatched(bool m) { matched = m; }
@@ -52,12 +63,12 @@ void gamecube::Draw() const
f[j * 4 + i] = model[i][j];
rlMultMatrixf(f);
- if (rotation < 90.0f)
- DrawCube({0,0,0}, 1,1,1, GRAY);
+ if (rotation < ROTATION_HALF) // â ď¸ Magic Number
+ DrawCube({0,0,0}, 1,1,1, DEFAULT_COLOR);
else
DrawCube({0,0,0}, 1,1,1, color);
- DrawCubeWires({0,0,0}, 1,1,1, BLACK);
+ DrawCubeWires({0,0,0}, 1,1,1,WIRES_COLOR);
rlPopMatrix();
}
diff --git a/src/gamematrix.cpp b/src/gamematrix.cpp
new file mode 100644
index 0000000..ecfb682
--- /dev/null
+++ b/src/gamematrix.cpp
@@ -0,0 +1,75 @@
+#include "gamematrix.h"
+#include
+#include
+
+// Matrix Multiplikation
+std::array,4> gameMatrix::matmul(
+ const std::array,4>& A,
+ const std::array,4>& B)
+{
+ std::array,4> result = {0};
+
+ for (int i = 0; i < 4; ++i)
+ for (int j = 0; j < 4; ++j)
+ {
+ result[i][j] = 0.0;
+ for (int k = 0; k < 4; ++k)
+ result[i][j] += A[i][k] * B[k][j];
+ }
+
+ return result;
+}
+
+// Rotationsmatrix
+std::array,4> gameMatrix::rot3D(double angle_deg, char axis)
+{
+ double angle_rad = angle_deg * M_PI / 180.0;
+ double c = std::cos(angle_rad);
+ double s = std::sin(angle_rad);
+
+ std::array,4> R = identity();
+
+ switch (axis)
+ {
+ case 'x': case 'X':
+ R[1][1] = c; R[1][2] = -s;
+ R[2][1] = s; R[2][2] = c;
+ break;
+
+ case 'y': case 'Y':
+ R[0][0] = c; R[0][2] = s;
+ R[2][0] = -s; R[2][2] = c;
+ break;
+
+ case 'z': case 'Z':
+ R[0][0] = c; R[0][1] = -s;
+ R[1][0] = s; R[1][1] = c;
+ break;
+
+ default:
+ throw std::invalid_argument("Invalid axis for rotation (use x, y, or z)");
+ }
+
+ return R;
+}
+
+// Translation
+std::array,4> gameMatrix::translate(const std::array& pos)
+{
+ std::array,4> T = identity();
+
+ T[0][3] = pos[0];
+ T[1][3] = pos[1];
+ T[2][3] = pos[2];
+
+ return T;
+}
+
+// Einheitsmatrix-Matrix
+std::array,4> gameMatrix::identity()
+{
+ std::array,4> I = {0};
+ for (int i = 0; i < 4; ++i)
+ I[i][i] = 1.0;
+ return I;
+}
diff --git a/main.cpp b/src/main.cpp
similarity index 76%
rename from main.cpp
rename to src/main.cpp
index 287251d..7e0c9ad 100644
--- a/main.cpp
+++ b/src/main.cpp
@@ -1,4 +1,4 @@
-#include "gamecube.h"
+#include "../includes/gamecube.h"
#include
#include
@@ -52,6 +52,12 @@ int main()
float flipSpeed = 5.0f; // Drehgeschwindigkeit
bool gameWon = false;
+ //***** Erweiterung des Spiels um Punkteanzeiger die Zeit zählt *****
+ int moves = 0; // zählt, wie viele Zßge gemacht wurden
+ float startTime = GetTime(); // merkt sich die Startzeit
+ float endTime = 0.0f; // wird gesetzt, wenn gewonnen
+
+
// -----------------------------------------------------------
// Hauptspielschleife
// -----------------------------------------------------------
@@ -90,6 +96,8 @@ int main()
// Matching-Logik
if (first && second)
{
+ moves++; //***** Erweiterung *****: Zähler erhÜhen
+
Color col1 = first->GetColor();
Color col2 = second->GetColor();
@@ -109,8 +117,15 @@ int main()
// GewinnprĂźfung
if (!gameWon)
- gameWon = std::all_of(cubes.begin(), cubes.end(), [](const gamecube &c){ return c.IsMatched(); });
+ {
+ gameWon = std::all_of(
+ cubes.begin(), cubes.end(),
+ [](const gamecube &c){ return c.IsMatched(); });
+ //****Erweiterung****: timer stoppen, wenn gewonnen
+ if (gameWon)
+ endTime = GetTime();
+ }
// -----------------------------------------------------------
// Zeichnen
// -----------------------------------------------------------
@@ -123,10 +138,21 @@ int main()
EndMode3D();
+ //*****Erweiterung*****: Anzeige von Zeit & ZĂźgen
if (gameWon)
+ {
+ float totalTime = endTime - startTime;
+
DrawText("Congrats! You found all pairs!", 150, 260, 30, DARKBLUE);
+ DrawText(TextFormat("Total Moves: %d", moves), 150, 310, 25, DARKGREEN);
+ DrawText(TextFormat("Total Time: %.2f seconds", totalTime), 150, 350, 25, DARKGREEN);
+ }
else
+ {
DrawText("Flip 2 cubes - find matching pairs!", 10, 10, 20, DARKGRAY);
+ DrawText(TextFormat("Moves: %d", moves), 10, 40, 20, DARKGRAY);
+ DrawText(TextFormat("Time: %.2f", GetTime() - startTime), 10, 70, 20, DARKGRAY);
+ }
EndDrawing();
}