diff --git a/assignment1/.idea/workspace.xml b/assignment1/.idea/workspace.xml
index ba49448..97f0bd7 100644
--- a/assignment1/.idea/workspace.xml
+++ b/assignment1/.idea/workspace.xml
@@ -19,9 +19,7 @@
-
-
-
+
@@ -29,12 +27,17 @@
-
+
-
-
-
-
+
+
+
+
+
+
+
+
+
@@ -88,6 +91,11 @@
}
}
+
+
+
+
+
@@ -99,6 +107,10 @@
+
+
+
+
@@ -110,11 +122,29 @@
-
+
+
+
+ 1761229247141
+
+
+
+ 1761229247141
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/assignment1/DeliveryAssignment1/CMakeLists.txt b/assignment1/DeliveryAssignment1/CMakeLists.txt
new file mode 100644
index 0000000..90ee4f4
--- /dev/null
+++ b/assignment1/DeliveryAssignment1/CMakeLists.txt
@@ -0,0 +1,12 @@
+cmake_minimum_required(VERSION 4.0)
+project(assignment1)
+
+set(CMAKE_CXX_STANDARD 20)
+
+add_executable(assignment1 main.cpp
+ TMovie.h
+ TMovie.cpp
+ TMovieList.cpp
+ TMovieList.h
+ TMovieNode.cpp
+ TMovieNode.h)
diff --git a/assignment1/DeliveryAssignment1/TMovie.cpp b/assignment1/DeliveryAssignment1/TMovie.cpp
new file mode 100644
index 0000000..a92d8dc
--- /dev/null
+++ b/assignment1/DeliveryAssignment1/TMovie.cpp
@@ -0,0 +1,5 @@
+//
+// Created by csand on 13/10/2025.
+//
+
+#include "TMovie.h"
diff --git a/assignment1/DeliveryAssignment1/TMovie.h b/assignment1/DeliveryAssignment1/TMovie.h
new file mode 100644
index 0000000..c830548
--- /dev/null
+++ b/assignment1/DeliveryAssignment1/TMovie.h
@@ -0,0 +1,59 @@
+
+
+#ifndef IKT203_TMOVIE_H
+#define IKT203_TMOVIE_H
+#include
+#include
+
+enum EMovieGenreType{
+ ACTION = 1 << 0,
+ COMEDY = 1<< 1,
+ SCIFI = 1 << 2,
+ HORROR = 1 << 3,
+ DRAMA = 1 << 4
+};
+
+
+class TMovie
+ {
+ private:
+ std::string title;
+ std::string director;
+ int year;
+ EMovieGenreType genre;
+ float score;
+
+ public:
+
+ TMovie(std::string T, std::string D, int Y, EMovieGenreType G, float S) :
+ title(std::move(T)), director(std::move(D)), year(Y), genre(G), score(S) {}
+
+ // Simple getters - using [[nodiscard]] to give warning if value is not used
+ [[nodiscard]] std::string GetTitle() const
+ {
+ return title;
+ }
+ [[nodiscard]] std::string GetDirector() const
+ {
+ return director;
+ }
+ [[nodiscard]] int GetYear() const
+ {
+ return year;
+ }
+ [[nodiscard]] EMovieGenreType GetGenre() const
+ {
+ return genre;
+ }
+ [[nodiscard]] float GetScore() const
+ {
+ return score;
+ }
+
+ // Not declaring a destructor since the default compiler destructor is
+
+
+};
+
+
+#endif //IKT203_TMOVIE_H
diff --git a/assignment1/DeliveryAssignment1/TMovieList.cpp b/assignment1/DeliveryAssignment1/TMovieList.cpp
new file mode 100644
index 0000000..4336c57
--- /dev/null
+++ b/assignment1/DeliveryAssignment1/TMovieList.cpp
@@ -0,0 +1,95 @@
+#include "TMovieList.h"
+
+#include
+
+using namespace std;
+
+void TMovieList::Append(TMovie* m)
+{
+ // Time complexity O(1) with using tail and prev nodes
+ auto* newNode = new TMovieNode(m);
+ newNode->SetPrevNode(tail);
+ tail->SetNextNode(newNode);
+ tail = newNode;
+ cout << "Appended '" << m->GetTitle() << "' into existing list of movies" <GetNextNode();
+ newNode->SetNextNode(head->GetNextNode());
+ head->SetNextNode(newNode);
+
+ newNode->SetPrevNode(head);
+ if (old)
+ old->SetPrevNode(newNode);
+
+ cout << "Prepended '" << m->GetTitle() << "' into list of movies" < ugyldig
+ if (index < 0)
+ return nullptr;
+
+ auto* node = head->GetNextNode();
+ int i = 0;
+ while (node != nullptr && i < index)
+ {
+ node = node->GetNextNode();
+ i++;
+ }
+
+ // Index større enn lista -> ugyldig
+ if (node == nullptr)
+ return nullptr;
+ return node;
+
+}
+
+TMovie* TMovieList::GetAtIndex(const int index) const
+{
+ auto* node = NavigateToNode(index);
+ return node ? node->GetMovie() : nullptr;
+}
+
+void TMovieList::Remove(const int index)
+{
+ auto* node = NavigateToNode(index);
+ if (node == nullptr)
+ return;
+
+ auto* prev = node->GetPrevNode();
+ auto* next = node->GetNextNode();
+
+ if (prev)
+ prev->SetNextNode(next);
+ if (next)
+ next->SetPrevNode(prev);
+ else
+ tail = (prev ? prev : head);
+
+
+ if (head->GetNextNode() == nullptr)
+ tail = head;
+
+ delete node;
+}
+
+TMovie *TMovieList::SearchFor(const FCheckMovie check_movie, void *criteria) const
+{
+ auto* node = head->GetNextNode();
+ while (node != nullptr)
+ {
+ if (check_movie(node->GetMovie(), criteria))
+ {
+ return node->GetMovie();
+ }
+ node = node->GetNextNode();
+ }
+ return nullptr;
+}
diff --git a/assignment1/DeliveryAssignment1/TMovieList.h b/assignment1/DeliveryAssignment1/TMovieList.h
new file mode 100644
index 0000000..6d9e02a
--- /dev/null
+++ b/assignment1/DeliveryAssignment1/TMovieList.h
@@ -0,0 +1,41 @@
+#ifndef IKT203_TMOVIELIST_H
+#define IKT203_TMOVIELIST_H
+
+#include "TMovie.h"
+#include "TMovieNode.h"
+
+// typedef to increase flexibility and reduce code recycling
+typedef bool (*FCheckMovie)(TMovie* movie, void* criteria);
+
+class TMovieList {
+private:
+ TMovieNode* head;
+ TMovieNode* tail;
+
+public:
+ TMovieList() : head(new TMovieNode(nullptr)), tail(head) {}
+
+ ~TMovieList()
+ {
+ TMovieNode* current = head;
+ while(current)
+ {
+ TMovieNode* next = current->GetNextNode();
+ delete current;
+ current = next;
+ }
+ head = nullptr;
+ tail = nullptr;
+ }
+ void Append(TMovie* m);
+ void Prepend(TMovie* m);
+ TMovie* SearchFor(FCheckMovie check_movie, void* criteria) const;
+
+ [[nodiscard]] TMovieNode *NavigateToNode(int index) const;
+
+ [[nodiscard]] TMovie* GetAtIndex(int index) const;
+ void Remove(int index);
+};
+
+
+#endif //IKT203_TMOVIELIST_H
diff --git a/assignment1/DeliveryAssignment1/TMovieNode.cpp b/assignment1/DeliveryAssignment1/TMovieNode.cpp
new file mode 100644
index 0000000..c63315d
--- /dev/null
+++ b/assignment1/DeliveryAssignment1/TMovieNode.cpp
@@ -0,0 +1,6 @@
+//
+// Created by csand on 13/10/2025.
+//
+
+#include "TMovieNode.h"
+
diff --git a/assignment1/DeliveryAssignment1/TMovieNode.h b/assignment1/DeliveryAssignment1/TMovieNode.h
new file mode 100644
index 0000000..13cc3c7
--- /dev/null
+++ b/assignment1/DeliveryAssignment1/TMovieNode.h
@@ -0,0 +1,52 @@
+#ifndef IKT203_TMOVIENODE_H
+#define IKT203_TMOVIENODE_H
+
+#include "TMovie.h"
+
+class TMovieNode {
+private:
+
+ TMovie* movie;
+ TMovieNode* nextNode;
+ TMovieNode* prevNode;
+
+public:
+
+ // constructor
+ explicit TMovieNode(TMovie* moviePointer) : movie(moviePointer), nextNode(nullptr), prevNode(nullptr) {}
+
+ // destructor
+ ~TMovieNode()
+ {
+ delete movie;
+ movie = nullptr;
+ }
+
+ // getters and setters for next and previous nodes
+ [[nodiscard]] TMovieNode* GetNextNode() const
+ {
+ return nextNode;
+ }
+
+ void SetNextNode(TMovieNode* next)
+ {
+ nextNode = next;
+ }
+
+ [[nodiscard]] TMovieNode* GetPrevNode() const
+ {
+ return prevNode;
+ }
+ void SetPrevNode(TMovieNode* prev)
+ {
+ prevNode = prev;
+ }
+ [[nodiscard]] TMovie* GetMovie() const
+ {
+ return movie;
+ }
+};
+
+
+
+#endif //IKT203_TMOVIENODE_H
diff --git a/assignment1/DeliveryAssignment1/main.cpp b/assignment1/DeliveryAssignment1/main.cpp
new file mode 100644
index 0000000..de37b87
--- /dev/null
+++ b/assignment1/DeliveryAssignment1/main.cpp
@@ -0,0 +1,32 @@
+#include
+#include "TMovieList.h"
+
+// specialised versions of SearchFor() from TMovieList
+bool SearchByTitle(const TMovie* m, void* c)
+{
+ const auto* title = static_cast(c);
+ return m->GetTitle() == *title;
+}
+
+bool SearchByDirector(const TMovie* m, void* criteria)
+{
+ const auto* director = static_cast(criteria);
+ return m->GetDirector() == *director;
+}
+
+bool SearchByGenre(const TMovie* m, void* criteria)
+{
+ const auto* genre = static_cast(criteria);
+ return m->GetGenre() == *genre;
+}
+
+
+
+
+
+int main()
+{
+
+
+
+}
diff --git a/assignment1/cmake-build-debug/.cmake/api/v1/reply/cache-v2-ccff222f1b3cbabba0e7.json b/assignment1/cmake-build-debug/.cmake/api/v1/reply/cache-v2-ccff222f1b3cbabba0e7.json
deleted file mode 100644
index 78f17c5..0000000
--- a/assignment1/cmake-build-debug/.cmake/api/v1/reply/cache-v2-ccff222f1b3cbabba0e7.json
+++ /dev/null
@@ -1,1327 +0,0 @@
-{
- "entries" :
- [
- {
- "name" : "CMAKE_ADDR2LINE",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Path to a program."
- }
- ],
- "type" : "FILEPATH",
- "value" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/bin/addr2line.exe"
- },
- {
- "name" : "CMAKE_AR",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Path to a program."
- }
- ],
- "type" : "FILEPATH",
- "value" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/bin/ar.exe"
- },
- {
- "name" : "CMAKE_BUILD_TYPE",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..."
- }
- ],
- "type" : "STRING",
- "value" : "Debug"
- },
- {
- "name" : "CMAKE_CACHEFILE_DIR",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "This is the directory where this CMakeCache.txt was created"
- }
- ],
- "type" : "INTERNAL",
- "value" : "c:/Users/thebe/datastructures-and-algorithms/assignment1/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/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/cmake.exe"
- },
- {
- "name" : "CMAKE_CPACK_COMMAND",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Path to cpack program executable."
- }
- ],
- "type" : "INTERNAL",
- "value" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/cpack.exe"
- },
- {
- "name" : "CMAKE_CTEST_COMMAND",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Path to ctest program executable."
- }
- ],
- "type" : "INTERNAL",
- "value" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/ctest.exe"
- },
- {
- "name" : "CMAKE_CXX_COMPILER",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "CXX compiler"
- }
- ],
- "type" : "FILEPATH",
- "value" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/bin/g++.exe"
- },
- {
- "name" : "CMAKE_CXX_COMPILER_AR",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler"
- }
- ],
- "type" : "FILEPATH",
- "value" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/bin/gcc-ar.exe"
- },
- {
- "name" : "CMAKE_CXX_COMPILER_RANLIB",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler"
- }
- ],
- "type" : "FILEPATH",
- "value" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/bin/gcc-ranlib.exe"
- },
- {
- "name" : "CMAKE_CXX_FLAGS",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags used by the CXX compiler during all build types."
- }
- ],
- "type" : "STRING",
- "value" : ""
- },
- {
- "name" : "CMAKE_CXX_FLAGS_DEBUG",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags used by the CXX compiler during DEBUG builds."
- }
- ],
- "type" : "STRING",
- "value" : "-g"
- },
- {
- "name" : "CMAKE_CXX_FLAGS_MINSIZEREL",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags used by the CXX compiler during MINSIZEREL builds."
- }
- ],
- "type" : "STRING",
- "value" : "-Os -DNDEBUG"
- },
- {
- "name" : "CMAKE_CXX_FLAGS_RELEASE",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags used by the CXX compiler during RELEASE builds."
- }
- ],
- "type" : "STRING",
- "value" : "-O3 -DNDEBUG"
- },
- {
- "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds."
- }
- ],
- "type" : "STRING",
- "value" : "-O2 -g -DNDEBUG"
- },
- {
- "name" : "CMAKE_CXX_STANDARD_LIBRARIES",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Libraries linked by default with all C++ applications."
- }
- ],
- "type" : "STRING",
- "value" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32"
- },
- {
- "name" : "CMAKE_C_COMPILER",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "C compiler"
- }
- ],
- "type" : "FILEPATH",
- "value" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/bin/gcc.exe"
- },
- {
- "name" : "CMAKE_C_COMPILER_AR",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler"
- }
- ],
- "type" : "FILEPATH",
- "value" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/bin/gcc-ar.exe"
- },
- {
- "name" : "CMAKE_C_COMPILER_RANLIB",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler"
- }
- ],
- "type" : "FILEPATH",
- "value" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/bin/gcc-ranlib.exe"
- },
- {
- "name" : "CMAKE_C_FLAGS",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags used by the C compiler during all build types."
- }
- ],
- "type" : "STRING",
- "value" : ""
- },
- {
- "name" : "CMAKE_C_FLAGS_DEBUG",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags used by the C compiler during DEBUG builds."
- }
- ],
- "type" : "STRING",
- "value" : "-g"
- },
- {
- "name" : "CMAKE_C_FLAGS_MINSIZEREL",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags used by the C compiler during MINSIZEREL builds."
- }
- ],
- "type" : "STRING",
- "value" : "-Os -DNDEBUG"
- },
- {
- "name" : "CMAKE_C_FLAGS_RELEASE",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags used by the C compiler during RELEASE builds."
- }
- ],
- "type" : "STRING",
- "value" : "-O3 -DNDEBUG"
- },
- {
- "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags used by the C compiler during RELWITHDEBINFO builds."
- }
- ],
- "type" : "STRING",
- "value" : "-O2 -g -DNDEBUG"
- },
- {
- "name" : "CMAKE_C_STANDARD_LIBRARIES",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Libraries linked by default with all C applications."
- }
- ],
- "type" : "STRING",
- "value" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32"
- },
- {
- "name" : "CMAKE_DLLTOOL",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Path to a program."
- }
- ],
- "type" : "FILEPATH",
- "value" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/bin/dlltool.exe"
- },
- {
- "name" : "CMAKE_EXECUTABLE_FORMAT",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Executable file format"
- }
- ],
- "type" : "INTERNAL",
- "value" : "Unknown"
- },
- {
- "name" : "CMAKE_EXE_LINKER_FLAGS",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags used by the linker during all build types."
- }
- ],
- "type" : "STRING",
- "value" : ""
- },
- {
- "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags used by the linker during DEBUG builds."
- }
- ],
- "type" : "STRING",
- "value" : ""
- },
- {
- "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags used by the linker during MINSIZEREL builds."
- }
- ],
- "type" : "STRING",
- "value" : ""
- },
- {
- "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags used by the linker during RELEASE builds."
- }
- ],
- "type" : "STRING",
- "value" : ""
- },
- {
- "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags used by the linker during RELWITHDEBINFO builds."
- }
- ],
- "type" : "STRING",
- "value" : ""
- },
- {
- "name" : "CMAKE_EXPORT_COMPILE_COMMANDS",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Enable/Disable output of compile commands during generation."
- }
- ],
- "type" : "BOOL",
- "value" : ""
- },
- {
- "name" : "CMAKE_EXTRA_GENERATOR",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Name of external makefile project generator."
- }
- ],
- "type" : "INTERNAL",
- "value" : ""
- },
- {
- "name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Value Computed by CMake."
- }
- ],
- "type" : "STATIC",
- "value" : "C:/Users/thebe/datastructures-and-algorithms/assignment1/cmake-build-debug/CMakeFiles/pkgRedirects"
- },
- {
- "name" : "CMAKE_GENERATOR",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Name of generator."
- }
- ],
- "type" : "INTERNAL",
- "value" : "Ninja"
- },
- {
- "name" : "CMAKE_GENERATOR_INSTANCE",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Generator instance identifier."
- }
- ],
- "type" : "INTERNAL",
- "value" : ""
- },
- {
- "name" : "CMAKE_GENERATOR_PLATFORM",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Name of generator platform."
- }
- ],
- "type" : "INTERNAL",
- "value" : ""
- },
- {
- "name" : "CMAKE_GENERATOR_TOOLSET",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Name of generator toolset."
- }
- ],
- "type" : "INTERNAL",
- "value" : ""
- },
- {
- "name" : "CMAKE_GNUtoMS",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Convert GNU import libraries to MS format (requires Visual Studio)"
- }
- ],
- "type" : "BOOL",
- "value" : "OFF"
- },
- {
- "name" : "CMAKE_HOME_DIRECTORY",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Source directory with the top level CMakeLists.txt file for this project"
- }
- ],
- "type" : "INTERNAL",
- "value" : "C:/Users/thebe/datastructures-and-algorithms/assignment1"
- },
- {
- "name" : "CMAKE_INSTALL_PREFIX",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Install path prefix, prepended onto install directories."
- }
- ],
- "type" : "PATH",
- "value" : "C:/Program Files (x86)/assignment1"
- },
- {
- "name" : "CMAKE_LINKER",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Path to a program."
- }
- ],
- "type" : "FILEPATH",
- "value" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/bin/ld.exe"
- },
- {
- "name" : "CMAKE_MAKE_PROGRAM",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "No help, variable specified on the command line."
- }
- ],
- "type" : "UNINITIALIZED",
- "value" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/ninja/win/x64/ninja.exe"
- },
- {
- "name" : "CMAKE_MODULE_LINKER_FLAGS",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags used by the linker during the creation of modules during all build types."
- }
- ],
- "type" : "STRING",
- "value" : ""
- },
- {
- "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags used by the linker during the creation of modules during DEBUG builds."
- }
- ],
- "type" : "STRING",
- "value" : ""
- },
- {
- "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds."
- }
- ],
- "type" : "STRING",
- "value" : ""
- },
- {
- "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags used by the linker during the creation of modules during RELEASE builds."
- }
- ],
- "type" : "STRING",
- "value" : ""
- },
- {
- "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds."
- }
- ],
- "type" : "STRING",
- "value" : ""
- },
- {
- "name" : "CMAKE_NM",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Path to a program."
- }
- ],
- "type" : "FILEPATH",
- "value" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/bin/nm.exe"
- },
- {
- "name" : "CMAKE_NUMBER_OF_MAKEFILES",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "number of local generators"
- }
- ],
- "type" : "INTERNAL",
- "value" : "1"
- },
- {
- "name" : "CMAKE_OBJCOPY",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Path to a program."
- }
- ],
- "type" : "FILEPATH",
- "value" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/bin/objcopy.exe"
- },
- {
- "name" : "CMAKE_OBJDUMP",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Path to a program."
- }
- ],
- "type" : "FILEPATH",
- "value" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/bin/objdump.exe"
- },
- {
- "name" : "CMAKE_PLATFORM_INFO_INITIALIZED",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Platform information initialized"
- }
- ],
- "type" : "INTERNAL",
- "value" : "1"
- },
- {
- "name" : "CMAKE_PROJECT_DESCRIPTION",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Value Computed by CMake"
- }
- ],
- "type" : "STATIC",
- "value" : ""
- },
- {
- "name" : "CMAKE_PROJECT_HOMEPAGE_URL",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Value Computed by CMake"
- }
- ],
- "type" : "STATIC",
- "value" : ""
- },
- {
- "name" : "CMAKE_PROJECT_NAME",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Value Computed by CMake"
- }
- ],
- "type" : "STATIC",
- "value" : "assignment1"
- },
- {
- "name" : "CMAKE_RANLIB",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Path to a program."
- }
- ],
- "type" : "FILEPATH",
- "value" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/bin/ranlib.exe"
- },
- {
- "name" : "CMAKE_RC_COMPILER",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "RC compiler"
- }
- ],
- "type" : "FILEPATH",
- "value" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/bin/windres.exe"
- },
- {
- "name" : "CMAKE_RC_COMPILER_WORKS",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : ""
- }
- ],
- "type" : "INTERNAL",
- "value" : "1"
- },
- {
- "name" : "CMAKE_RC_FLAGS",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags for Windows Resource Compiler during all build types."
- }
- ],
- "type" : "STRING",
- "value" : ""
- },
- {
- "name" : "CMAKE_RC_FLAGS_DEBUG",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags for Windows Resource Compiler during DEBUG builds."
- }
- ],
- "type" : "STRING",
- "value" : ""
- },
- {
- "name" : "CMAKE_RC_FLAGS_MINSIZEREL",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags for Windows Resource Compiler during MINSIZEREL builds."
- }
- ],
- "type" : "STRING",
- "value" : ""
- },
- {
- "name" : "CMAKE_RC_FLAGS_RELEASE",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags for Windows Resource Compiler during RELEASE builds."
- }
- ],
- "type" : "STRING",
- "value" : ""
- },
- {
- "name" : "CMAKE_RC_FLAGS_RELWITHDEBINFO",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Flags for Windows Resource Compiler during RELWITHDEBINFO builds."
- }
- ],
- "type" : "STRING",
- "value" : ""
- },
- {
- "name" : "CMAKE_READELF",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Path to a program."
- }
- ],
- "type" : "FILEPATH",
- "value" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/bin/readelf.exe"
- },
- {
- "name" : "CMAKE_ROOT",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Path to CMake installation."
- }
- ],
- "type" : "INTERNAL",
- "value" : "C:/Users/thebe/AppData/Local/Programs/CLion/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/thebe/AppData/Local/Programs/CLion/bin/mingw/bin/strip.exe"
- },
- {
- "name" : "CMAKE_TAPI",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "Path to a program."
- }
- ],
- "type" : "FILEPATH",
- "value" : "CMAKE_TAPI-NOTFOUND"
- },
- {
- "name" : "CMAKE_VERBOSE_MAKEFILE",
- "properties" :
- [
- {
- "name" : "ADVANCED",
- "value" : "1"
- },
- {
- "name" : "HELPSTRING",
- "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo."
- }
- ],
- "type" : "BOOL",
- "value" : "FALSE"
- },
- {
- "name" : "_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "linker supports push/pop state"
- }
- ],
- "type" : "INTERNAL",
- "value" : "TRUE"
- },
- {
- "name" : "assignment1_BINARY_DIR",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Value Computed by CMake"
- }
- ],
- "type" : "STATIC",
- "value" : "C:/Users/thebe/datastructures-and-algorithms/assignment1/cmake-build-debug"
- },
- {
- "name" : "assignment1_IS_TOP_LEVEL",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Value Computed by CMake"
- }
- ],
- "type" : "STATIC",
- "value" : "ON"
- },
- {
- "name" : "assignment1_SOURCE_DIR",
- "properties" :
- [
- {
- "name" : "HELPSTRING",
- "value" : "Value Computed by CMake"
- }
- ],
- "type" : "STATIC",
- "value" : "C:/Users/thebe/datastructures-and-algorithms/assignment1"
- }
- ],
- "kind" : "cache",
- "version" :
- {
- "major" : 2,
- "minor" : 0
- }
-}
diff --git a/assignment1/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-a2081dc58b18f43337f4.json b/assignment1/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-a2081dc58b18f43337f4.json
deleted file mode 100644
index fdccdd6..0000000
--- a/assignment1/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-a2081dc58b18f43337f4.json
+++ /dev/null
@@ -1,828 +0,0 @@
-{
- "inputs" :
- [
- {
- "path" : "CMakeLists.txt"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeSystem.cmake.in"
- },
- {
- "isGenerated" : true,
- "path" : "cmake-build-debug/CMakeFiles/3.30.5/CMakeSystem.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-Initialize.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCompilerIdDetection.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/ADSP-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Borland-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Bruce-C-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Compaq-C-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Cray-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/CrayClang-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GHS-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-C-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/HP-C-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/IAR-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Intel-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/LCC-C-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/MSVC-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/NVHPC-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/OrangeC-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/PGI-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/PathScale-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/SCO-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/SDCC-C-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/SunPro-C-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/TI-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/TIClang-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Tasking-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Watcom-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/XL-C-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/XLClang-C-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/zOS-C-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeFindBinUtils.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-FindBinUtils.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCCompiler.cmake.in"
- },
- {
- "isGenerated" : true,
- "path" : "cmake-build-debug/CMakeFiles/3.30.5/CMakeCCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-Determine-CXX.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCompilerIdDetection.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/ADSP-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Borland-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Cray-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/CrayClang-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GHS-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/HP-CXX-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/IAR-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Intel-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/MSVC-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/NVHPC-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/OrangeC-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/PGI-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/PathScale-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/SCO-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/TI-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/TIClang-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Tasking-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/Watcom-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/XL-CXX-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeFindBinUtils.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-FindBinUtils.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXCompiler.cmake.in"
- },
- {
- "isGenerated" : true,
- "path" : "cmake-build-debug/CMakeFiles/3.30.5/CMakeCXXCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeGenericSystem.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/WindowsPaths.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCInformation.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-C.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-C.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineRCCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeRCCompiler.cmake.in"
- },
- {
- "isGenerated" : true,
- "path" : "cmake-build-debug/CMakeFiles/3.30.5/CMakeRCCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeRCInformation.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-windres.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestRCCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeParseImplicitIncludeInfo.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeParseImplicitLinkInfo.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeParseLibraryArchitecture.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCCompilerABI.c"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerSupport.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/FeatureTesting.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCCompiler.cmake.in"
- },
- {
- "isGenerated" : true,
- "path" : "cmake-build-debug/CMakeFiles/3.30.5/CMakeCCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-C-ABI.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXInformation.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-CXX.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeParseImplicitIncludeInfo.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeParseImplicitLinkInfo.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeParseLibraryArchitecture.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCompilerCommon.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerSupport.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/FeatureTesting.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXCompiler.cmake.in"
- },
- {
- "isGenerated" : true,
- "path" : "cmake-build-debug/CMakeFiles/3.30.5/CMakeCXXCompiler.cmake"
- },
- {
- "isCMake" : true,
- "isExternal" : true,
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-CXX-ABI.cmake"
- }
- ],
- "kind" : "cmakeFiles",
- "paths" :
- {
- "build" : "C:/Users/thebe/datastructures-and-algorithms/assignment1/cmake-build-debug",
- "source" : "C:/Users/thebe/datastructures-and-algorithms/assignment1"
- },
- "version" :
- {
- "major" : 1,
- "minor" : 1
- }
-}
diff --git a/assignment1/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-ff0dda1a1cc638499b0e.json b/assignment1/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-ff0dda1a1cc638499b0e.json
deleted file mode 100644
index d206a03..0000000
--- a/assignment1/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-ff0dda1a1cc638499b0e.json
+++ /dev/null
@@ -1,60 +0,0 @@
-{
- "configurations" :
- [
- {
- "directories" :
- [
- {
- "build" : ".",
- "jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json",
- "minimumCMakeVersion" :
- {
- "string" : "3.30.5"
- },
- "projectIndex" : 0,
- "source" : ".",
- "targetIndexes" :
- [
- 0
- ]
- }
- ],
- "name" : "Debug",
- "projects" :
- [
- {
- "directoryIndexes" :
- [
- 0
- ],
- "name" : "assignment1",
- "targetIndexes" :
- [
- 0
- ]
- }
- ],
- "targets" :
- [
- {
- "directoryIndex" : 0,
- "id" : "assignment1::@6890427a1f51a3e7e1df",
- "jsonFile" : "target-assignment1-Debug-15c7ecfb0863a21b5b03.json",
- "name" : "assignment1",
- "projectIndex" : 0
- }
- ]
- }
- ],
- "kind" : "codemodel",
- "paths" :
- {
- "build" : "C:/Users/thebe/datastructures-and-algorithms/assignment1/cmake-build-debug",
- "source" : "C:/Users/thebe/datastructures-and-algorithms/assignment1"
- },
- "version" :
- {
- "major" : 2,
- "minor" : 7
- }
-}
diff --git a/assignment1/cmake-build-debug/.cmake/api/v1/reply/index-2025-10-15T09-09-43-0896.json b/assignment1/cmake-build-debug/.cmake/api/v1/reply/index-2025-10-15T09-09-43-0896.json
deleted file mode 100644
index 5d16cd0..0000000
--- a/assignment1/cmake-build-debug/.cmake/api/v1/reply/index-2025-10-15T09-09-43-0896.json
+++ /dev/null
@@ -1,108 +0,0 @@
-{
- "cmake" :
- {
- "generator" :
- {
- "multiConfig" : false,
- "name" : "Ninja"
- },
- "paths" :
- {
- "cmake" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/cmake.exe",
- "cpack" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/cpack.exe",
- "ctest" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/ctest.exe",
- "root" : "C:/Users/thebe/AppData/Local/Programs/CLion/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-ff0dda1a1cc638499b0e.json",
- "kind" : "codemodel",
- "version" :
- {
- "major" : 2,
- "minor" : 7
- }
- },
- {
- "jsonFile" : "cache-v2-ccff222f1b3cbabba0e7.json",
- "kind" : "cache",
- "version" :
- {
- "major" : 2,
- "minor" : 0
- }
- },
- {
- "jsonFile" : "cmakeFiles-v1-a2081dc58b18f43337f4.json",
- "kind" : "cmakeFiles",
- "version" :
- {
- "major" : 1,
- "minor" : 1
- }
- },
- {
- "jsonFile" : "toolchains-v1-afbd3872f093a0c1045e.json",
- "kind" : "toolchains",
- "version" :
- {
- "major" : 1,
- "minor" : 0
- }
- }
- ],
- "reply" :
- {
- "cache-v2" :
- {
- "jsonFile" : "cache-v2-ccff222f1b3cbabba0e7.json",
- "kind" : "cache",
- "version" :
- {
- "major" : 2,
- "minor" : 0
- }
- },
- "cmakeFiles-v1" :
- {
- "jsonFile" : "cmakeFiles-v1-a2081dc58b18f43337f4.json",
- "kind" : "cmakeFiles",
- "version" :
- {
- "major" : 1,
- "minor" : 1
- }
- },
- "codemodel-v2" :
- {
- "jsonFile" : "codemodel-v2-ff0dda1a1cc638499b0e.json",
- "kind" : "codemodel",
- "version" :
- {
- "major" : 2,
- "minor" : 7
- }
- },
- "toolchains-v1" :
- {
- "jsonFile" : "toolchains-v1-afbd3872f093a0c1045e.json",
- "kind" : "toolchains",
- "version" :
- {
- "major" : 1,
- "minor" : 0
- }
- }
- }
-}
diff --git a/assignment1/cmake-build-debug/.cmake/api/v1/reply/index-2025-10-13T15-51-08-0264.json b/assignment1/cmake-build-debug/.cmake/api/v1/reply/index-2025-10-23T14-37-49-0450.json
similarity index 100%
rename from assignment1/cmake-build-debug/.cmake/api/v1/reply/index-2025-10-13T15-51-08-0264.json
rename to assignment1/cmake-build-debug/.cmake/api/v1/reply/index-2025-10-23T14-37-49-0450.json
diff --git a/assignment1/cmake-build-debug/.cmake/api/v1/reply/target-assignment1-Debug-15c7ecfb0863a21b5b03.json b/assignment1/cmake-build-debug/.cmake/api/v1/reply/target-assignment1-Debug-15c7ecfb0863a21b5b03.json
deleted file mode 100644
index 2a38e4f..0000000
--- a/assignment1/cmake-build-debug/.cmake/api/v1/reply/target-assignment1-Debug-15c7ecfb0863a21b5b03.json
+++ /dev/null
@@ -1,154 +0,0 @@
-{
- "artifacts" :
- [
- {
- "path" : "assignment1.exe"
- },
- {
- "path" : "assignment1.pdb"
- }
- ],
- "backtrace" : 1,
- "backtraceGraph" :
- {
- "commands" :
- [
- "add_executable"
- ],
- "files" :
- [
- "CMakeLists.txt"
- ],
- "nodes" :
- [
- {
- "file" : 0
- },
- {
- "command" : 0,
- "file" : 0,
- "line" : 6,
- "parent" : 0
- }
- ]
- },
- "compileGroups" :
- [
- {
- "compileCommandFragments" :
- [
- {
- "fragment" : "-g -std=gnu++20 -fdiagnostics-color=always"
- }
- ],
- "language" : "CXX",
- "languageStandard" :
- {
- "backtraces" :
- [
- 1
- ],
- "standard" : "20"
- },
- "sourceIndexes" :
- [
- 0,
- 2,
- 3,
- 5
- ]
- }
- ],
- "id" : "assignment1::@6890427a1f51a3e7e1df",
- "link" :
- {
- "commandFragments" :
- [
- {
- "fragment" : "-g",
- "role" : "flags"
- },
- {
- "fragment" : "",
- "role" : "flags"
- },
- {
- "fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32",
- "role" : "libraries"
- }
- ],
- "language" : "CXX"
- },
- "name" : "assignment1",
- "nameOnDisk" : "assignment1.exe",
- "paths" :
- {
- "build" : ".",
- "source" : "."
- },
- "sourceGroups" :
- [
- {
- "name" : "Source Files",
- "sourceIndexes" :
- [
- 0,
- 2,
- 3,
- 5
- ]
- },
- {
- "name" : "Header Files",
- "sourceIndexes" :
- [
- 1,
- 4,
- 6
- ]
- }
- ],
- "sources" :
- [
- {
- "backtrace" : 1,
- "compileGroupIndex" : 0,
- "path" : "main.cpp",
- "sourceGroupIndex" : 0
- },
- {
- "backtrace" : 1,
- "path" : "TMovie.h",
- "sourceGroupIndex" : 1
- },
- {
- "backtrace" : 1,
- "compileGroupIndex" : 0,
- "path" : "TMovie.cpp",
- "sourceGroupIndex" : 0
- },
- {
- "backtrace" : 1,
- "compileGroupIndex" : 0,
- "path" : "TMovieList.cpp",
- "sourceGroupIndex" : 0
- },
- {
- "backtrace" : 1,
- "path" : "TMovieList.h",
- "sourceGroupIndex" : 1
- },
- {
- "backtrace" : 1,
- "compileGroupIndex" : 0,
- "path" : "TMovieNode.cpp",
- "sourceGroupIndex" : 0
- },
- {
- "backtrace" : 1,
- "path" : "TMovieNode.h",
- "sourceGroupIndex" : 1
- }
- ],
- "type" : "EXECUTABLE"
-}
diff --git a/assignment1/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-afbd3872f093a0c1045e.json b/assignment1/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-afbd3872f093a0c1045e.json
deleted file mode 100644
index a30348a..0000000
--- a/assignment1/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-afbd3872f093a0c1045e.json
+++ /dev/null
@@ -1,144 +0,0 @@
-{
- "kind" : "toolchains",
- "toolchains" :
- [
- {
- "compiler" :
- {
- "id" : "GNU",
- "implicit" :
- {
- "includeDirectories" :
- [
- "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include",
- "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/include",
- "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed",
- "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/include"
- ],
- "linkDirectories" :
- [
- "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0",
- "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/lib/gcc",
- "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/lib",
- "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/lib"
- ],
- "linkFrameworkDirectories" : [],
- "linkLibraries" :
- [
- "mingw32",
- "gcc",
- "moldname",
- "mingwex",
- "kernel32",
- "pthread",
- "advapi32",
- "shell32",
- "user32",
- "kernel32",
- "iconv",
- "mingw32",
- "gcc",
- "moldname",
- "mingwex",
- "kernel32"
- ]
- },
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/bin/gcc.exe",
- "version" : "13.1.0"
- },
- "language" : "C",
- "sourceFileExtensions" :
- [
- "c",
- "m"
- ]
- },
- {
- "compiler" :
- {
- "id" : "GNU",
- "implicit" :
- {
- "includeDirectories" :
- [
- "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++",
- "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32",
- "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward",
- "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include",
- "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/include",
- "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed",
- "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/include"
- ],
- "linkDirectories" :
- [
- "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0",
- "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/lib/gcc",
- "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/x86_64-w64-mingw32/lib",
- "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/lib"
- ],
- "linkFrameworkDirectories" : [],
- "linkLibraries" :
- [
- "stdc++",
- "mingw32",
- "gcc_s",
- "gcc",
- "moldname",
- "mingwex",
- "kernel32",
- "pthread",
- "advapi32",
- "shell32",
- "user32",
- "kernel32",
- "iconv",
- "mingw32",
- "gcc_s",
- "gcc",
- "moldname",
- "mingwex",
- "kernel32"
- ]
- },
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/bin/g++.exe",
- "version" : "13.1.0"
- },
- "language" : "CXX",
- "sourceFileExtensions" :
- [
- "C",
- "M",
- "c++",
- "cc",
- "cpp",
- "cxx",
- "mm",
- "mpp",
- "CPP",
- "ixx",
- "cppm",
- "ccm",
- "cxxm",
- "c++m"
- ]
- },
- {
- "compiler" :
- {
- "implicit" : {},
- "path" : "C:/Users/thebe/AppData/Local/Programs/CLion/bin/mingw/bin/windres.exe"
- },
- "language" : "RC",
- "sourceFileExtensions" :
- [
- "rc",
- "RC"
- ]
- }
- ],
- "version" :
- {
- "major" : 1,
- "minor" : 0
- }
-}
diff --git a/assignment1/cmake-build-debug/CMakeFiles/clion-Debug-log.txt b/assignment1/cmake-build-debug/CMakeFiles/clion-Debug-log.txt
index 9906b45..cabf286 100644
--- a/assignment1/cmake-build-debug/CMakeFiles/clion-Debug-log.txt
+++ b/assignment1/cmake-build-debug/CMakeFiles/clion-Debug-log.txt
@@ -1,4 +1,4 @@
C:\Users\csand\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -DCMAKE_BUILD_TYPE=Debug -DCMAKE_MAKE_PROGRAM=C:/Users/csand/AppData/Local/Programs/CLion/bin/ninja/win/x64/ninja.exe -G Ninja -S C:\Users\csand\IKT203\assignment1 -B C:\Users\csand\IKT203\assignment1\cmake-build-debug
--- Configuring done (0.3s)
+-- Configuring done (0.5s)
-- Generating done (0.0s)
-- Build files have been written to: C:/Users/csand/IKT203/assignment1/cmake-build-debug