diff --git a/sem1/KondyukovKR/class-derive.cpp b/sem1/KondyukovKR/class-derive.cpp deleted file mode 100644 index ff2c5232..00000000 --- a/sem1/KondyukovKR/class-derive.cpp +++ /dev/null @@ -1,24 +0,0 @@ -#include - - -class Figure { -public: - int a = 10; -}; - -class Rectangle : public Figure { -public: - int b = 100; -}; - -int main() { - - Figure figure; - Rectangle rectangle; - - std::cout<<"figure.a " << figure.a << '\n'; - std::cout<<"rectangle.a " << rectangle.a; - std::cout<<"rectangle.b " << rectangle.b; - - return 0; -} \ No newline at end of file diff --git a/sem1/KondyukovKR/class-incapsulation.cpp b/sem1/KondyukovKR/class-incapsulation.cpp deleted file mode 100644 index 4319666e..00000000 --- a/sem1/KondyukovKR/class-incapsulation.cpp +++ /dev/null @@ -1,17 +0,0 @@ -#include - - -class ReadOnly { -private: - std::string readonlyString = "важный текст"; -public: - std::string getString() {return readonlyString;} -}; - -int main() { - ReadOnly readOnly; - readOnly.getString() = "не очень важный бла бла"; - std::cout<<"readOnly " << readOnly.getString() << '\n'; - - return 0; -} \ No newline at end of file diff --git a/sem1/KondyukovKR/class.cpp b/sem1/KondyukovKR/class.cpp deleted file mode 100644 index be6892fd..00000000 --- a/sem1/KondyukovKR/class.cpp +++ /dev/null @@ -1,61 +0,0 @@ -#include - -class CBase{ -private: - int privateBase; -protected: - int protBase; -public: - int pubBase; -}; - -class CDerived : public CBase{ // пробуем protected и private тут - public: - void updateDerived() { - privateBase=0; - protBase=0; - pubBase=0; - } -}; - - -int main() { - CDerived cDerived; - cDerived.updateDerived(); - std::cout<<"privateBase " << cDerived.privateBase << '\n'; - std::cout<<"protBase " << cDerived.protBase << '\n'; - std::cout<<"pubBase " << cDerived.pubBase << '\n'; - - return 0; -} -class Base { -public: - Base() {cout << "\nBase created\n";} - ~Base() {cout << "Base destroyed\n\n,"; } -}; -class D_class1(): public Base { -public: - D_class1() {cout << "D_class1 created\n";} - ~D_class1() {cout << "D_class1 destroyed\n "; } -}; -int main(){ - D_class1 d1; - return 0; -} -#include - -class Base { -public: - void b() {std::cout << "b\n";} - void b(int n) {std::cout << "b int \n";} - void b(std::string n) {std::cout << "b string \n";} -}; - -int main(){ - Base myB; - myB.b(); - myB.b(123213); - myB.b("sdufhudhsfuhdsui;fh"); - - return 0; -} \ No newline at end of file diff --git a/sem1/KondyukovKR/credentials_file.cpp b/sem1/KondyukovKR/credentials_file.cpp deleted file mode 100644 index c977aa67..00000000 --- a/sem1/KondyukovKR/credentials_file.cpp +++ /dev/null @@ -1,37 +0,0 @@ -//Если надо считать всю строку целиком или все строки из файла, -//то лучше использовать ф - ю getline(), она принимает -//поток для чтения и переменную, в которую надо считать текст - -#include -#include -#include -#include // для std::getline -#include "conio.h" - -class Cred { -public: - int id; - std::string password; -}; - -int main() { - std::string line; - std::fstream stream("example.txt", std::ios_base::in); - std::vector creds; - - while (!stream.eof()) { - Cred cred; - stream >> cred.id >> cred.password; - creds.push_back(cred); - } - - stream.close(); // закрываем файл - - ///////////////////////////////////////////////////////////////////////////////////// - - for (Cred cred : creds) { - std::cout << cred.id << " " << cred.password << std::endl; - } - - _getch(); -} \ No newline at end of file diff --git a/sem1/KondyukovKR/credentials_random.cpp b/sem1/KondyukovKR/credentials_random.cpp deleted file mode 100644 index 70d76332..00000000 --- a/sem1/KondyukovKR/credentials_random.cpp +++ /dev/null @@ -1,47 +0,0 @@ -// Для записи в файл к объекту ofstream или fstream -// применяется оператор << (как и при выводе на консоль) : - -#include -#include -#include -#include "conio.h" -#include "math.h" - -class Cred{ -public: - int id; - std::string password; -}; - -int main() { - srand(time(NULL)); - - std::vector creds; - const int amountString = 1000; - const int stringLength = 10; - - for (int i = 0; i < amountString; i++) { - Cred tmpCred; - tmpCred.id = i; - for (int i = 0; i < stringLength; i++) { - tmpCred.password += (char) (rand() % 128 + 36); - } - creds.push_back(tmpCred); - } - - std::ofstream out; // поток для записи - out.open("example.txt"); // открываем файл для записи - - if (out.is_open()) { - for (Cred cred : creds) { - out << "id: " << cred.id << "; password: " << cred.password << std::endl; - } - std::cout << "File has been written" << std::endl; - } - else { - std::cout << "ERROR!!!!!" << std::endl; - } - - out.close(); - _getch(); -} \ No newline at end of file diff --git a/sem1/KondyukovKR/deque.cpp b/sem1/KondyukovKR/deque.cpp deleted file mode 100644 index ce538ac3..00000000 --- a/sem1/KondyukovKR/deque.cpp +++ /dev/null @@ -1,91 +0,0 @@ -#include - -class Node { -public: - Node(int curNum) { n = curNum; } - - int n; - Node* next; - Node* prev; -}; - -class SpecialList { -private: - int sizeCurrent; - Node* first; - Node* last; - Node* current; - -public: - SpecialList() { - first = new Node(0); - first->next = NULL; - first->prev = NULL; - last = first; - } - - void add() { - Node* node = new Node(last->n); - last->next = node; - node->prev = last; - node->next = NULL; - node->n++; - last = node; - - sizeCurrent++; - } - - void deleteFirst() { - first = first->next; - delete first->prev; - first->prev = NULL; - sizeCurrent--; - } - - void deleteLast() { - last = last->prev; - delete last->next; - last->next = NULL; - sizeCurrent--; - } - - void goForward() { - current = first; - while (current->next != NULL) { - std::cout << "Current node: " << current->n << std::endl; - current = current->next; - } - } - - void goBackwards() { - current = last; - while (current->prev != NULL) { - std::cout << "Current node: " << current->n << std::endl; - current = current->prev; - } - } - - Node* getFirst() { return first; } - Node* getLast() { return last; } - Node* getCurrent() { return current; } -}; - -int main() { - SpecialList list; - - int listSize = 10; - for (int i = 0; i < listSize - 1; i++) { // 10 элементов делаем - list.add(); - } - - std::cout << " >_< Hello, Kotik! ^_^ " << std::endl; - list.goForward(); - std::cout << "_^ " << std::endl; - list.goBackwards(); - std::cout << "_^ " << std::endl; - list.goForward(); - std::cout << "_^ " << std::endl; - list.goBackwards(); - std::cout << "_^ " << std::endl; - -} \ No newline at end of file diff --git a/sem1/KondyukovKR/list.cpp b/sem1/KondyukovKR/list.cpp deleted file mode 100644 index b05b31fc..00000000 --- a/sem1/KondyukovKR/list.cpp +++ /dev/null @@ -1,60 +0,0 @@ -#include - -class ListNode { -public: - ListNode(int curNum) { n = curNum; } - - int n; - ListNode* next; - ListNode* prev; - ListNode* rand; -}; - -class List { -public: - List() { - first = new ListNode(0); - first->next = NULL; - first->prev = NULL; - last = first; - } - - ListNode* add() { - ListNode* node = new ListNode(last->n); - last->next = node; - node->prev = last; - node->next = NULL; - node->n++; - last = node; - return node; - } - - void goForward() { - while (first != NULL){ - std::cout << "Current number: " << first->n << std::endl; - first = first->next; - } - } - - void goBackwards() { - while (last != NULL) { - std::cout << "Current number: " << last->n << std::endl; - last = last->prev; - } - } - -private: - ListNode* first; - ListNode* last; -}; - -int main() { - List list; - - int listSize = 10; - for (int i = 0; i < listSize - 1; i++) { // 10 элементов делаем - list.add(); - } - - list.goBackwards(); -} \ No newline at end of file diff --git a/sem1/KondyukovKR/stack.cpp b/sem1/KondyukovKR/stack.cpp deleted file mode 100644 index 8d779d86..00000000 --- a/sem1/KondyukovKR/stack.cpp +++ /dev/null @@ -1,67 +0,0 @@ -#include - -class StackNode { -public: - StackNode(int curNum) { n = curNum; } - - int n; - StackNode* next; - StackNode* prev; -}; - -class Stack { -public: - Stack(int maxSize) { - sizeMax = maxSize; - - last = new StackNode(0); - last->next = NULL; - last->prev = NULL; - } - - void push() { - if (sizeCurrent >= sizeMax) { - std::cout << "Stack overflow!" << std::endl; - return; - } - - StackNode* node = new StackNode(last->n); - last->next = node; - node->prev = last; - node->next = NULL; - node->n++; - last = node; - - sizeCurrent++; - } - - void pop() { - last = last->prev; - delete last->next; - last->next = NULL; - sizeCurrent--; - } - - StackNode* peek() { - return last; - } - -private: - int sizeMax; - int sizeCurrent; - StackNode* last; -}; - -int main() { - Stack stack(10); - - int listSize = 10; - for (int i = 0; i < listSize - 1; i++) { // 10 элементов делаем - stack.push(); - } - - std::cout << "Current n: " << stack.peek()->n << std::endl; - stack.pop(); - std::cout << "Current n: " << stack.peek()->n << std::endl; - -} \ No newline at end of file diff --git a/sem2/fedotow-p/MiniHW2/.idea/.gitignore b/sem2/fedotow-p/MiniHW2/.idea/.gitignore new file mode 100644 index 00000000..13566b81 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/sem2/fedotow-p/MiniHW2/.idea/MiniHW2.iml b/sem2/fedotow-p/MiniHW2/.idea/MiniHW2.iml new file mode 100644 index 00000000..f08604bb --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/.idea/MiniHW2.iml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/sem2/fedotow-p/MiniHW2/.idea/misc.xml b/sem2/fedotow-p/MiniHW2/.idea/misc.xml new file mode 100644 index 00000000..552c30b6 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + \ No newline at end of file diff --git a/sem2/fedotow-p/MiniHW2/.idea/modules.xml b/sem2/fedotow-p/MiniHW2/.idea/modules.xml new file mode 100644 index 00000000..ba58ab02 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/sem2/fedotow-p/MiniHW2/.idea/vcs.xml b/sem2/fedotow-p/MiniHW2/.idea/vcs.xml new file mode 100644 index 00000000..d843f340 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/.idea/vcs.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/sem2/fedotow-p/MiniHW2/CMakeLists.txt b/sem2/fedotow-p/MiniHW2/CMakeLists.txt new file mode 100644 index 00000000..fd2ab06c --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 3.30) +project(MiniHW2) + +set(CMAKE_CXX_STANDARD 20) + +include(FetchContent) +FetchContent_Declare(SFML + GIT_REPOSITORY https://github.com/SFML/SFML.git + GIT_TAG 3.0.0 + GIT_SHALLOW ON + EXCLUDE_FROM_ALL + SYSTEM) +FetchContent_MakeAvailable(SFML) + +add_executable(MiniHW2 main.cpp) + +target_link_libraries(MiniHW2 sfml-graphics) diff --git a/sem1/KondyukovKR/45454.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/query/cache-v2 similarity index 100% rename from sem1/KondyukovKR/45454.txt rename to sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/query/cache-v2 diff --git a/sem1/KondyukovKR/example.cpp b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/query/cmakeFiles-v1 similarity index 100% rename from sem1/KondyukovKR/example.cpp rename to sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/query/cmakeFiles-v1 diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/query/codemodel-v2 b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/query/codemodel-v2 new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/query/toolchains-v1 b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/query/toolchains-v1 new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/cache-v2-5eb8f59f9e3ac8aa2548.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/cache-v2-5eb8f59f9e3ac8aa2548.json new file mode 100644 index 00000000..ba2cfe06 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/cache-v2-5eb8f59f9e3ac8aa2548.json @@ -0,0 +1,3223 @@ +{ + "entries" : + [ + { + "name" : "ATOMIC_TEST", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test ATOMIC_TEST" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_ADDR2LINE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "G:/CLion 2024.3/bin/mingw/bin/addr2line.exe" + }, + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "G:/CLion 2024.3/bin/mingw/bin/ar.exe" + }, + { + "name" : "CMAKE_BUILD_TYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Choose the type of build (Debug or Release)" + } + ], + "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/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/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" : "G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "G:/CLion 2024.3/bin/cmake/win/x64/bin/cpack.exe" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "G:/CLion 2024.3/bin/cmake/win/x64/bin/ctest.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "CXX compiler" + } + ], + "type" : "FILEPATH", + "value" : "G:/CLion 2024.3/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" : "G:/CLion 2024.3/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" : "G:/CLion 2024.3/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" : "G:/CLion 2024.3/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" : "G:/CLion 2024.3/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" : "G:/CLion 2024.3/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" : "G:/CLion 2024.3/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/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/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_HAVE_LIBC_PTHREAD", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test CMAKE_HAVE_LIBC_PTHREAD" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_HOME_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Source directory with the top level CMakeLists.txt file for this project" + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2" + }, + { + "name" : "CMAKE_INSTALL_BINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "User executables (bin)" + } + ], + "type" : "PATH", + "value" : "bin" + }, + { + "name" : "CMAKE_INSTALL_DATADIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data (DATAROOTDIR)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_DATAROOTDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data root (share)" + } + ], + "type" : "PATH", + "value" : "share" + }, + { + "name" : "CMAKE_INSTALL_DOCDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Documentation root (DATAROOTDIR/doc/PROJECT_NAME)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_INCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files (include)" + } + ], + "type" : "PATH", + "value" : "include" + }, + { + "name" : "CMAKE_INSTALL_INFODIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Info documentation (DATAROOTDIR/info)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LIBDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Object code libraries (lib)" + } + ], + "type" : "PATH", + "value" : "lib" + }, + { + "name" : "CMAKE_INSTALL_LIBEXECDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Program executables (libexec)" + } + ], + "type" : "PATH", + "value" : "libexec" + }, + { + "name" : "CMAKE_INSTALL_LOCALEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Locale-dependent data (DATAROOTDIR/locale)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LOCALSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable single-machine data (var)" + } + ], + "type" : "PATH", + "value" : "var" + }, + { + "name" : "CMAKE_INSTALL_MANDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Man documentation (DATAROOTDIR/man)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_OLDINCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files for non-gcc (/usr/include)" + } + ], + "type" : "PATH", + "value" : "/usr/include" + }, + { + "name" : "CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install path prefix, prepended onto install directories." + } + ], + "type" : "PATH", + "value" : "C:/Program Files (x86)/MiniHW2" + }, + { + "name" : "CMAKE_INSTALL_RUNSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Run-time variable data (LOCALSTATEDIR/run)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_SBINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "System admin executables (sbin)" + } + ], + "type" : "PATH", + "value" : "sbin" + }, + { + "name" : "CMAKE_INSTALL_SHAREDSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable architecture-independent data (com)" + } + ], + "type" : "PATH", + "value" : "com" + }, + { + "name" : "CMAKE_INSTALL_SYSCONFDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only single-machine data (etc)" + } + ], + "type" : "PATH", + "value" : "etc" + }, + { + "name" : "CMAKE_LINKER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "G:/CLion 2024.3/bin/mingw/bin/ld.exe" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "make program" + } + ], + "type" : "FILEPATH", + "value" : "G:/CLion 2024.3/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" : "G:/CLion 2024.3/bin/mingw/bin/nm.exe" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "17" + }, + { + "name" : "CMAKE_OBJCOPY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "G:/CLion 2024.3/bin/mingw/bin/objcopy.exe" + }, + { + "name" : "CMAKE_OBJDUMP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "G:/CLion 2024.3/bin/mingw/bin/objdump.exe" + }, + { + "name" : "CMAKE_OSX_DEPLOYMENT_TARGET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The minimal iOS version that will be able to run the built binaries. Cannot be lower than 13.0" + } + ], + "type" : "STRING", + "value" : "13.0" + }, + { + "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" : "MiniHW2" + }, + { + "name" : "CMAKE_PROJECT_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "3.0.0" + }, + { + "name" : "CMAKE_PROJECT_VERSION_MAJOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "3" + }, + { + "name" : "CMAKE_PROJECT_VERSION_MINOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "0" + }, + { + "name" : "CMAKE_PROJECT_VERSION_PATCH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "0" + }, + { + "name" : "CMAKE_PROJECT_VERSION_TWEAK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "G:/CLion 2024.3/bin/mingw/bin/ranlib.exe" + }, + { + "name" : "CMAKE_RC_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "RC compiler" + } + ], + "type" : "FILEPATH", + "value" : "G:/CLion 2024.3/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" : "G:/CLion 2024.3/bin/mingw/bin/readelf.exe" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "G:/CLion 2024.3/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" : "G:/CLion 2024.3/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" : "CPACK_BINARY_7Z", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable to build 7-Zip packages" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "CPACK_BINARY_IFW", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable to build IFW packages" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "CPACK_BINARY_INNOSETUP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable to build Inno Setup packages" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "CPACK_BINARY_NSIS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable to build NSIS packages" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "CPACK_BINARY_NUGET", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable to build NuGet packages" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "CPACK_BINARY_WIX", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable to build WiX packages" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "CPACK_BINARY_ZIP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable to build ZIP packages" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "CPACK_SOURCE_7Z", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable to build 7-Zip source packages" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "CPACK_SOURCE_ZIP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable to build ZIP source packages" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "DINPUT_H_FOUND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Have include dinput.h" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "DODEFINE_EXTENSIONS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test DODEFINE_EXTENSIONS" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "ENABLE_64_BIT_WORDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Set FLAC__BYTES_PER_WORD to 8, for 64-bit machines. For 32-bit machines, turning this off might give a tiny speed improvement" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "ENABLE_WERROR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable -Werror in all Makefiles" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "FETCHCONTENT_BASE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Directory under which to collect all populated content" + } + ], + "type" : "PATH", + "value" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps" + }, + { + "name" : "FETCHCONTENT_FULLY_DISCONNECTED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Disables all attempts to download or update content and assumes source dirs already exist" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "FETCHCONTENT_QUIET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enables QUIET option for all content population" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "FETCHCONTENT_SOURCE_DIR_FLAC", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "When not empty, overrides where to find pre-populated content for flac" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "FETCHCONTENT_SOURCE_DIR_FREETYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "When not empty, overrides where to find pre-populated content for Freetype" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "FETCHCONTENT_SOURCE_DIR_OGG", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "When not empty, overrides where to find pre-populated content for ogg" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "FETCHCONTENT_SOURCE_DIR_SFML", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "When not empty, overrides where to find pre-populated content for SFML" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "FETCHCONTENT_SOURCE_DIR_VORBIS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "When not empty, overrides where to find pre-populated content for vorbis" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "FETCHCONTENT_UPDATES_DISCONNECTED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enables UPDATE_DISCONNECTED behavior for all content population" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "FETCHCONTENT_UPDATES_DISCONNECTED_FLAC", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enables UPDATE_DISCONNECTED behavior just for population of flac" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "FETCHCONTENT_UPDATES_DISCONNECTED_FREETYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enables UPDATE_DISCONNECTED behavior just for population of Freetype" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "FETCHCONTENT_UPDATES_DISCONNECTED_OGG", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enables UPDATE_DISCONNECTED behavior just for population of ogg" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "FETCHCONTENT_UPDATES_DISCONNECTED_SFML", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enables UPDATE_DISCONNECTED behavior just for population of SFML" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "FETCHCONTENT_UPDATES_DISCONNECTED_VORBIS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enables UPDATE_DISCONNECTED behavior just for population of vorbis" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_OpenGL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding OpenGL" + } + ], + "type" : "INTERNAL", + "value" : "[opengl32][cfound components: OpenGL ][v()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_Threads", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding Threads" + } + ], + "type" : "INTERNAL", + "value" : "[TRUE][v()]" + }, + { + "name" : "FLAC_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build" + }, + { + "name" : "FLAC_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "OFF" + }, + { + "name" : "FLAC_LIB_DEPENDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Dependencies for the target" + } + ], + "type" : "STATIC", + "value" : "general;Ogg::ogg;" + }, + { + "name" : "FLAC_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + }, + { + "name" : "FLAC__CPU_X86_64", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Result of CHECK_CPU_ARCH" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "FLAC__HAS_NEONINTRIN", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Have include arm_neon.h" + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "FLAC__HAS_X86INTRIN", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Have include x86intrin.h" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "GIT_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Git command line client" + } + ], + "type" : "FILEPATH", + "value" : "C:/Program Files/Git/cmd/git.exe" + }, + { + "name" : "HAVE_ASSOC_MATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test HAVE_ASSOC_MATH" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "HAVE_BSWAP16", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test HAVE_BSWAP16" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "HAVE_BSWAP32", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test HAVE_BSWAP32" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "HAVE_BYTESWAP_H", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Have include byteswap.h" + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "HAVE_CLOCK_GETTIME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Have function clock_gettime" + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "HAVE_CPUID_H", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Have include cpuid.h" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "HAVE_DECL_AFTER_STMT_FLAG", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test HAVE_DECL_AFTER_STMT_FLAG" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "HAVE_FLAC__CPU_X86_64", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Result of TRY_COMPILE" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "HAVE_FSEEKO", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Have function fseeko" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "HAVE_GIT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Program Files/Git/cmd/git.exe" + }, + { + "name" : "HAVE_INT16_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Result of TRY_COMPILE" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "HAVE_INT32_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Result of TRY_COMPILE" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "HAVE_INT64_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Result of TRY_COMPILE" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "HAVE_INTTYPES_H", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Have include inttypes.h" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "HAVE_INT_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Result of TRY_COMPILE" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "HAVE_LANGINFO_CODESET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test HAVE_LANGINFO_CODESET" + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "HAVE_LIBM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Have library m" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "HAVE_LONG_LONG_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Result of TRY_COMPILE" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "HAVE_LONG_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Result of TRY_COMPILE" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "HAVE_LROUND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Have function lround" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "HAVE_MBSTATE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test HAVE_MBSTATE" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "HAVE_SHORT_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Result of TRY_COMPILE" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "HAVE_STACKREALIGN_FLAG", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test HAVE_STACKREALIGN_FLAG" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "HAVE_STDBOOL_H", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Have include stdbool.h" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "HAVE_STDDEF_H", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Have include stddef.h" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "HAVE_STDINT_H", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Have include stdint.h" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "HAVE_SYS_PARAM_H", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Have include sys/param.h" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "HAVE_SYS_TYPES_H", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Have include sys/types.h" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "HAVE_UINT16_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Result of TRY_COMPILE" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "HAVE_UINT32_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Result of TRY_COMPILE" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "HAVE_U_INT16_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Result of TRY_COMPILE" + } + ], + "type" : "INTERNAL", + "value" : "FALSE" + }, + { + "name" : "HAVE_U_INT32_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Result of TRY_COMPILE" + } + ], + "type" : "INTERNAL", + "value" : "FALSE" + }, + { + "name" : "HAVE_WEFFCXX_FLAG", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test HAVE_WEFFCXX_FLAG" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "HAVE_WERROR_FLAG", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test HAVE_WERROR_FLAG" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "INCLUDE_INTTYPES_H", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Have include inttypes.h" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "INCLUDE_STDINT_H", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Have include stdint.h" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "INCLUDE_SYS_TYPES_H", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Have include sys/types.h" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "INSTALL_CMAKE_CONFIG_MODULE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install CMake package-config module" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "INSTALL_CMAKE_PACKAGE_MODULE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install CMake package configiguration module" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "INT16_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CHECK_TYPE_SIZE: sizeof(int16_t)" + } + ], + "type" : "INTERNAL", + "value" : "2" + }, + { + "name" : "INT32_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CHECK_TYPE_SIZE: sizeof(int32_t)" + } + ], + "type" : "INTERNAL", + "value" : "4" + }, + { + "name" : "INT64_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CHECK_TYPE_SIZE: sizeof(int64_t)" + } + ], + "type" : "INTERNAL", + "value" : "8" + }, + { + "name" : "INT_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CHECK_TYPE_SIZE: sizeof(int)" + } + ], + "type" : "INTERNAL", + "value" : "4" + }, + { + "name" : "LONG_LONG_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CHECK_TYPE_SIZE: sizeof(long long)" + } + ], + "type" : "INTERNAL", + "value" : "8" + }, + { + "name" : "LONG_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CHECK_TYPE_SIZE: sizeof(long)" + } + ], + "type" : "INTERNAL", + "value" : "4" + }, + { + "name" : "MiniHW2_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug" + }, + { + "name" : "MiniHW2_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "ON" + }, + { + "name" : "MiniHW2_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2" + }, + { + "name" : "OGG_FOUND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "ogg has already been built" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "OPENGL_gl_LIBRARY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "OpenGL library for win32" + } + ], + "type" : "STRING", + "value" : "opengl32" + }, + { + "name" : "OPENGL_glu_LIBRARY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "GLU library for win32" + } + ], + "type" : "STRING", + "value" : "glu32" + }, + { + "name" : "PKG_CONFIG_ARGN", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Arguments to supply to pkg-config" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "PKG_CONFIG_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "pkg-config executable" + } + ], + "type" : "FILEPATH", + "value" : "PKG_CONFIG_EXECUTABLE-NOTFOUND" + }, + { + "name" : "SFML_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build" + }, + { + "name" : "SFML_BUILD_AUDIO", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "ON to build SFML's Audio module." + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "SFML_BUILD_GRAPHICS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "ON to build SFML's Graphics module." + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "SFML_BUILD_NETWORK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "ON to build SFML's Network module." + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "SFML_BUILD_WINDOW", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "ON to build SFML's Window module. This setting is ignored, if the graphics module is built." + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "SFML_CONFIGURE_EXTRAS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "ON to configure extras, OFF to ignore them" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "SFML_ENABLE_PCH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "ON to enable precompiled headers for SFML builds -- only supported on Windows/Linux and for static library builds" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "SFML_ENABLE_SANITIZERS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable sanitizers" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "SFML_ENABLE_STDLIB_ASSERTIONS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable standard library assertions" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "SFML_INSTALL_PKGCONFIG_FILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "ON to automatically install pkg-config files so other projects can find SFML" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "SFML_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "OFF" + }, + { + "name" : "SFML_OPENGL_ES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "ON to use an OpenGL ES implementation, OFF to use a desktop OpenGL implementation" + } + ], + "type" : "BOOL", + "value" : "0" + }, + { + "name" : "SFML_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + }, + { + "name" : "SFML_USE_MESA3D", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "ON to use the Mesa 3D graphics library for rendering, OFF to use the system provided library for rendering" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "SFML_USE_STATIC_STD_LIBS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "ON to statically link to the standard libraries, OFF to use them as DLLs" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "SFML_USE_SYSTEM_DEPS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "ON to use system dependencies, OFF to use the bundled ones." + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "SFML_WARNINGS_AS_ERRORS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Treat compiler warnings as errors" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "SHORT_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CHECK_TYPE_SIZE: sizeof(short)" + } + ], + "type" : "INTERNAL", + "value" : "2" + }, + { + "name" : "UINT16_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CHECK_TYPE_SIZE: sizeof(uint16_t)" + } + ], + "type" : "INTERNAL", + "value" : "2" + }, + { + "name" : "UINT32_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CHECK_TYPE_SIZE: sizeof(uint32_t)" + } + ], + "type" : "INTERNAL", + "value" : "4" + }, + { + "name" : "U_INT16_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CHECK_TYPE_SIZE: u_int16_t unknown" + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "U_INT32_SIZE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CHECK_TYPE_SIZE: u_int32_t unknown" + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "WITH_ASM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Use any assembly optimization routines" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "WITH_OGG", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "ogg support (default: test for libogg)" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "linker supports push/pop state" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CMAKE_INSTALL_PREFIX during last run" + } + ], + "type" : "INTERNAL", + "value" : "C:/Program Files (x86)/MiniHW2" + }, + { + "name" : "freetype_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build" + }, + { + "name" : "freetype_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "OFF" + }, + { + "name" : "freetype_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + }, + { + "name" : "libogg_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build" + }, + { + "name" : "libogg_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "OFF" + }, + { + "name" : "libogg_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + }, + { + "name" : "vorbis_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build" + }, + { + "name" : "vorbis_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "OFF" + }, + { + "name" : "vorbis_LIB_DEPENDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Dependencies for the target" + } + ], + "type" : "STATIC", + "value" : "general;Ogg::ogg;" + }, + { + "name" : "vorbis_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + }, + { + "name" : "vorbisenc_LIB_DEPENDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Dependencies for the target" + } + ], + "type" : "STATIC", + "value" : "general;vorbis;" + }, + { + "name" : "vorbisfile_LIB_DEPENDS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Dependencies for the target" + } + ], + "type" : "STATIC", + "value" : "general;vorbis;" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-a1f98d06922ff2551b7e.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-a1f98d06922ff2551b7e.json new file mode 100644 index 00000000..6b74beaf --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/cmakeFiles-v1-a1f98d06922ff2551b7e.json @@ -0,0 +1,958 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/CMakeFiles/3.30.5/CMakeSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/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" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/WindowsPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/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" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeRCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-windres.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-C-ABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-CXX-ABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FetchContent.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindGit.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/gitclone.cmake.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/RepositoryInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/stepscript.cmake.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindGit.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/gitupdate.cmake.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/UpdateInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/stepscript.cmake.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/PatchInfo.txt.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/stepscript.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/sfml-src/CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/sfml-src/cmake/Config.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/GNUInstallDirs.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/sfml-src/cmake/Mesa3D.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/BasicConfigVersion-SameMajorVersion.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/sfml-src/cmake/SFMLConfig.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/sfml-src/cmake/Macros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeParseArguments.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/sfml-src/cmake/CompilerWarnings.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/System/CMakeLists.txt" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindThreads.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckLibraryExists.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFile.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/System/Dependencies.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Main/CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/CMakeLists.txt" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Dependencies.cmake.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindOpenGL.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFileCXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Network/CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/CMakeLists.txt" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Dependencies.cmake.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FetchContent.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindGit.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FetchContent/CMakeLists.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/freetype-src/CMakeLists.txt" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFile.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDependentOption.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPkgConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/GNUInstallDirs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/BasicConfigVersion-SameMajorVersion.cmake.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CPack.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CPackComponent.cmake" + }, + { + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Templates/CPackConfig.cmake.in" + }, + { + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Templates/CPackConfig.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/CMakeLists.txt" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FetchContent.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindGit.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FetchContent/CMakeLists.cmake.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindGit.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FetchContent/CMakeLists.cmake.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindGit.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FetchContent/CMakeLists.cmake.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindThreads.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckLibraryExists.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFile.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/Dependencies.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/ogg-src/CMakeLists.txt" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/GNUInstallDirs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CTest.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CTestUseLaunchers.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/ogg-src/cmake/CheckSizes.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFile.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFileCXX.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/ogg-src/include/ogg/config_types.h.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/ogg-src/ogg.pc.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/ogg-src/cmake/OggConfig.cmake.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/BasicConfigVersion-SameMajorVersion.cmake.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CPack.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CPackComponent.cmake" + }, + { + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Templates/CPackConfig.cmake.in" + }, + { + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Templates/CPackConfig.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/flac-src/CMakeLists.txt" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckSymbolExists.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckFunctionExists.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFile.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckLibraryExists.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/GNUInstallDirs.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/flac-src/cmake/UseSystemExtensions.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/TestBigEndian.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFile.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFileCXX.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/flac-src/config.cmake.h.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/flac-src/flac-config.cmake.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/BasicConfigVersion-AnyNewerVersion.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/flac-src/src/CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/CMakeLists.txt" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/flac-src/cmake/CheckCPUArch.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/flac-src/cmake/CheckA64NEON.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/flac-src/microbench/CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/vorbis-src/CMakeLists.txt" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/GNUInstallDirs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckLibraryExists.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/vorbis-src/vorbis.pc.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/vorbis-src/vorbisenc.pc.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/vorbis-src/vorbisfile.pc.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/CMakeLists.txt" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake" + }, + { + "isGenerated" : true, + "path" : "cmake-build-debug/_deps/vorbis-src/cmake/VorbisConfig.cmake.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/BasicConfigVersion-SameMajorVersion.cmake.in" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug", + "source" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2" + }, + "version" : + { + "major" : 1, + "minor" : 1 + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-d735a1db327539e47c6d.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-d735a1db327539e47c6d.json new file mode 100644 index 00000000..2808e27d --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/codemodel-v2-d735a1db327539e47c6d.json @@ -0,0 +1,519 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "childIndexes" : + [ + 1 + ], + "hasInstallRule" : true, + "jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json", + "minimumCMakeVersion" : + { + "string" : "3.30" + }, + "projectIndex" : 0, + "source" : ".", + "targetIndexes" : + [ + 1 + ] + }, + { + "build" : "_deps/sfml-build", + "childIndexes" : + [ + 2 + ], + "hasInstallRule" : true, + "jsonFile" : "directory-_deps.sfml-build-Debug-7d57744d6e1fa68b633d.json", + "minimumCMakeVersion" : + { + "string" : "3.24" + }, + "parentIndex" : 0, + "projectIndex" : 1, + "source" : "cmake-build-debug/_deps/sfml-src" + }, + { + "build" : "_deps/sfml-build/src/SFML", + "childIndexes" : + [ + 3, + 4, + 5, + 6, + 7, + 9 + ], + "hasInstallRule" : true, + "jsonFile" : "directory-_deps.sfml-build.src.SFML-Debug-59858f26345abeca2d61.json", + "minimumCMakeVersion" : + { + "string" : "3.24" + }, + "parentIndex" : 1, + "projectIndex" : 1, + "source" : "cmake-build-debug/_deps/sfml-src/src/SFML" + }, + { + "build" : "_deps/sfml-build/src/SFML/System", + "hasInstallRule" : true, + "jsonFile" : "directory-_deps.sfml-build.src.SFML.System-Debug-fe57406fdfc6eb930634.json", + "minimumCMakeVersion" : + { + "string" : "3.24" + }, + "parentIndex" : 2, + "projectIndex" : 1, + "source" : "cmake-build-debug/_deps/sfml-src/src/SFML/System", + "targetIndexes" : + [ + 9 + ] + }, + { + "build" : "_deps/sfml-build/src/SFML/Main", + "hasInstallRule" : true, + "jsonFile" : "directory-_deps.sfml-build.src.SFML.Main-Debug-a2399adef7e2d6bf4150.json", + "minimumCMakeVersion" : + { + "string" : "3.24" + }, + "parentIndex" : 2, + "projectIndex" : 1, + "source" : "cmake-build-debug/_deps/sfml-src/src/SFML/Main", + "targetIndexes" : + [ + 7 + ] + }, + { + "build" : "_deps/sfml-build/src/SFML/Window", + "hasInstallRule" : true, + "jsonFile" : "directory-_deps.sfml-build.src.SFML.Window-Debug-56bf60c0825c79c51eb9.json", + "minimumCMakeVersion" : + { + "string" : "3.24" + }, + "parentIndex" : 2, + "projectIndex" : 1, + "source" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window", + "targetIndexes" : + [ + 10 + ] + }, + { + "build" : "_deps/sfml-build/src/SFML/Network", + "hasInstallRule" : true, + "jsonFile" : "directory-_deps.sfml-build.src.SFML.Network-Debug-f29b89d3f74b427aa1fe.json", + "minimumCMakeVersion" : + { + "string" : "3.24" + }, + "parentIndex" : 2, + "projectIndex" : 1, + "source" : "cmake-build-debug/_deps/sfml-src/src/SFML/Network", + "targetIndexes" : + [ + 8 + ] + }, + { + "build" : "_deps/sfml-build/src/SFML/Graphics", + "childIndexes" : + [ + 8 + ], + "hasInstallRule" : true, + "jsonFile" : "directory-_deps.sfml-build.src.SFML.Graphics-Debug-f63531a95c41b9fc48bc.json", + "minimumCMakeVersion" : + { + "string" : "3.24" + }, + "parentIndex" : 2, + "projectIndex" : 1, + "source" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics", + "targetIndexes" : + [ + 6 + ] + }, + { + "build" : "_deps/freetype-build", + "hasInstallRule" : true, + "jsonFile" : "directory-_deps.freetype-build-Debug-0ccbe068af60176bb979.json", + "minimumCMakeVersion" : + { + "string" : "3.0" + }, + "parentIndex" : 7, + "projectIndex" : 2, + "source" : "cmake-build-debug/_deps/freetype-src", + "targetIndexes" : + [ + 3 + ] + }, + { + "build" : "_deps/sfml-build/src/SFML/Audio", + "childIndexes" : + [ + 10, + 11, + 15 + ], + "hasInstallRule" : true, + "jsonFile" : "directory-_deps.sfml-build.src.SFML.Audio-Debug-b786f8a188daf4578520.json", + "minimumCMakeVersion" : + { + "string" : "3.24" + }, + "parentIndex" : 2, + "projectIndex" : 1, + "source" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio", + "targetIndexes" : + [ + 5 + ] + }, + { + "build" : "_deps/ogg-build", + "hasInstallRule" : true, + "jsonFile" : "directory-_deps.ogg-build-Debug-60fa8a635e558aa357c3.json", + "minimumCMakeVersion" : + { + "string" : "2.8.12" + }, + "parentIndex" : 9, + "projectIndex" : 3, + "source" : "cmake-build-debug/_deps/ogg-src", + "targetIndexes" : + [ + 4 + ] + }, + { + "build" : "_deps/flac-build", + "childIndexes" : + [ + 12, + 14 + ], + "hasInstallRule" : true, + "jsonFile" : "directory-_deps.flac-build-Debug-a0c65ebec60d9fbfa92b.json", + "minimumCMakeVersion" : + { + "string" : "3.5" + }, + "parentIndex" : 9, + "projectIndex" : 4, + "source" : "cmake-build-debug/_deps/flac-src" + }, + { + "build" : "_deps/flac-build/src", + "childIndexes" : + [ + 13 + ], + "hasInstallRule" : true, + "jsonFile" : "directory-_deps.flac-build.src-Debug-b022244d5e63fc6bf638.json", + "minimumCMakeVersion" : + { + "string" : "3.11" + }, + "parentIndex" : 11, + "projectIndex" : 4, + "source" : "cmake-build-debug/_deps/flac-src/src" + }, + { + "build" : "_deps/flac-build/src/libFLAC", + "hasInstallRule" : true, + "jsonFile" : "directory-_deps.flac-build.src.libFLAC-Debug-8c6f54aecef1386cde41.json", + "minimumCMakeVersion" : + { + "string" : "3.11" + }, + "parentIndex" : 12, + "projectIndex" : 4, + "source" : "cmake-build-debug/_deps/flac-src/src/libFLAC", + "targetIndexes" : + [ + 0 + ] + }, + { + "build" : "_deps/flac-build/microbench", + "jsonFile" : "directory-_deps.flac-build.microbench-Debug-3788ca2fa6dc98c99ae7.json", + "minimumCMakeVersion" : + { + "string" : "3.5" + }, + "parentIndex" : 11, + "projectIndex" : 4, + "source" : "cmake-build-debug/_deps/flac-src/microbench", + "targetIndexes" : + [ + 2 + ] + }, + { + "build" : "_deps/vorbis-build", + "childIndexes" : + [ + 16 + ], + "hasInstallRule" : true, + "jsonFile" : "directory-_deps.vorbis-build-Debug-86b14e20c473d622474c.json", + "minimumCMakeVersion" : + { + "string" : "2.8.12" + }, + "parentIndex" : 9, + "projectIndex" : 5, + "source" : "cmake-build-debug/_deps/vorbis-src" + }, + { + "build" : "_deps/vorbis-build/lib", + "hasInstallRule" : true, + "jsonFile" : "directory-_deps.vorbis-build.lib-Debug-3504d98a951b921a7336.json", + "minimumCMakeVersion" : + { + "string" : "2.8.12" + }, + "parentIndex" : 15, + "projectIndex" : 5, + "source" : "cmake-build-debug/_deps/vorbis-src/lib", + "targetIndexes" : + [ + 11, + 12, + 13 + ] + } + ], + "name" : "Debug", + "projects" : + [ + { + "childIndexes" : + [ + 1 + ], + "directoryIndexes" : + [ + 0 + ], + "name" : "MiniHW2", + "targetIndexes" : + [ + 1 + ] + }, + { + "childIndexes" : + [ + 2, + 3, + 4, + 5 + ], + "directoryIndexes" : + [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 9 + ], + "name" : "SFML", + "parentIndex" : 0, + "targetIndexes" : + [ + 5, + 6, + 7, + 8, + 9, + 10 + ] + }, + { + "directoryIndexes" : + [ + 8 + ], + "name" : "freetype", + "parentIndex" : 1, + "targetIndexes" : + [ + 3 + ] + }, + { + "directoryIndexes" : + [ + 10 + ], + "name" : "libogg", + "parentIndex" : 1, + "targetIndexes" : + [ + 4 + ] + }, + { + "directoryIndexes" : + [ + 11, + 12, + 13, + 14 + ], + "name" : "FLAC", + "parentIndex" : 1, + "targetIndexes" : + [ + 0, + 2 + ] + }, + { + "directoryIndexes" : + [ + 15, + 16 + ], + "name" : "vorbis", + "parentIndex" : 1, + "targetIndexes" : + [ + 11, + 12, + 13 + ] + } + ], + "targets" : + [ + { + "directoryIndex" : 13, + "id" : "FLAC::@d572677c3819035d9b3d", + "jsonFile" : "target-FLAC-Debug-024c8cad44e375331071.json", + "name" : "FLAC", + "projectIndex" : 4 + }, + { + "directoryIndex" : 0, + "id" : "MiniHW2::@6890427a1f51a3e7e1df", + "jsonFile" : "target-MiniHW2-Debug-575b8e6284c11a155730.json", + "name" : "MiniHW2", + "projectIndex" : 0 + }, + { + "directoryIndex" : 14, + "id" : "benchmark_residual::@3956ab943ce8cc4f6f98", + "jsonFile" : "target-benchmark_residual-Debug-e9eaac460f8cb6b8d6ae.json", + "name" : "benchmark_residual", + "projectIndex" : 4 + }, + { + "directoryIndex" : 8, + "id" : "freetype::@d06f9f5ffc3cc0b4bd77", + "jsonFile" : "target-freetype-Debug-f49038a754141fce6a44.json", + "name" : "freetype", + "projectIndex" : 2 + }, + { + "directoryIndex" : 10, + "id" : "ogg::@4e5ed7d02827854e35f8", + "jsonFile" : "target-ogg-Debug-d76902b0cae3dfe2dc13.json", + "name" : "ogg", + "projectIndex" : 3 + }, + { + "directoryIndex" : 9, + "id" : "sfml-audio::@a153e5727587c53fce98", + "jsonFile" : "target-sfml-audio-Debug-b65f8c68941e0030e452.json", + "name" : "sfml-audio", + "projectIndex" : 1 + }, + { + "directoryIndex" : 7, + "id" : "sfml-graphics::@98af38147d5fa7e70f61", + "jsonFile" : "target-sfml-graphics-Debug-1269bee0b6c57952005c.json", + "name" : "sfml-graphics", + "projectIndex" : 1 + }, + { + "directoryIndex" : 4, + "id" : "sfml-main::@81ec5539f1398dd625f6", + "jsonFile" : "target-sfml-main-Debug-f43fe5dcbb98ed09ccf1.json", + "name" : "sfml-main", + "projectIndex" : 1 + }, + { + "directoryIndex" : 6, + "id" : "sfml-network::@d7f79968b2699e7782cb", + "jsonFile" : "target-sfml-network-Debug-da7f56da9d6411626163.json", + "name" : "sfml-network", + "projectIndex" : 1 + }, + { + "directoryIndex" : 3, + "id" : "sfml-system::@8cb1db2982443611e568", + "jsonFile" : "target-sfml-system-Debug-000f6598698d1a5cfe29.json", + "name" : "sfml-system", + "projectIndex" : 1 + }, + { + "directoryIndex" : 5, + "id" : "sfml-window::@5730451e331e3690ae65", + "jsonFile" : "target-sfml-window-Debug-bf8fa10a50baa73b18e3.json", + "name" : "sfml-window", + "projectIndex" : 1 + }, + { + "directoryIndex" : 16, + "id" : "vorbis::@692b0ee2b61df6760d20", + "jsonFile" : "target-vorbis-Debug-1443cb5355c6e2349762.json", + "name" : "vorbis", + "projectIndex" : 5 + }, + { + "directoryIndex" : 16, + "id" : "vorbisenc::@692b0ee2b61df6760d20", + "jsonFile" : "target-vorbisenc-Debug-d8d923141a4c2404c945.json", + "name" : "vorbisenc", + "projectIndex" : 5 + }, + { + "directoryIndex" : 16, + "id" : "vorbisfile::@692b0ee2b61df6760d20", + "jsonFile" : "target-vorbisfile-Debug-9ef62c5cbd0da5ea29b8.json", + "name" : "vorbisfile", + "projectIndex" : 5 + } + ] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug", + "source" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2" + }, + "version" : + { + "major" : 2, + "minor" : 7 + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json new file mode 100644 index 00000000..3a67af9c --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/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/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.flac-build-Debug-a0c65ebec60d9fbfa92b.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.flac-build-Debug-a0c65ebec60d9fbfa92b.json new file mode 100644 index 00000000..d32bd102 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.flac-build-Debug-a0c65ebec60d9fbfa92b.json @@ -0,0 +1,85 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "cmake-build-debug/_deps/flac-src/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 242, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 254, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 259, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "lib/cmake/FLAC", + "exportName" : "targets", + "exportTargets" : + [ + { + "id" : "FLAC::@d572677c3819035d9b3d", + "index" : 0 + } + ], + "paths" : + [ + "_deps/flac-build/CMakeFiles/Export/baf7b64a9c1b56d368d1c4c52c93ff8a/targets.cmake" + ], + "type" : "export" + }, + { + "backtrace" : 2, + "component" : "Unspecified", + "destination" : "lib/cmake/FLAC", + "paths" : + [ + "cmake-build-debug/_deps/flac-build/flac-config.cmake", + "cmake-build-debug/_deps/flac-build/flac-config-version.cmake" + ], + "type" : "file" + }, + { + "backtrace" : 3, + "component" : "Unspecified", + "destination" : "lib/cmake/FLAC", + "paths" : + [ + "cmake-build-debug/_deps/flac-build/flac-config.cmake", + "cmake-build-debug/_deps/flac-build/flac-config-version.cmake" + ], + "type" : "file" + } + ], + "paths" : + { + "build" : "_deps/flac-build", + "source" : "cmake-build-debug/_deps/flac-src" + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.flac-build.microbench-Debug-3788ca2fa6dc98c99ae7.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.flac-build.microbench-Debug-3788ca2fa6dc98c99ae7.json new file mode 100644 index 00000000..f5d21a81 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.flac-build.microbench-Debug-3788ca2fa6dc98c99ae7.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "_deps/flac-build/microbench", + "source" : "cmake-build-debug/_deps/flac-src/microbench" + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.flac-build.src-Debug-b022244d5e63fc6bf638.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.flac-build.src-Debug-b022244d5e63fc6bf638.json new file mode 100644 index 00000000..c06251ae --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.flac-build.src-Debug-b022244d5e63fc6bf638.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "_deps/flac-build/src", + "source" : "cmake-build-debug/_deps/flac-src/src" + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.flac-build.src.libFLAC-Debug-8c6f54aecef1386cde41.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.flac-build.src.libFLAC-Debug-8c6f54aecef1386cde41.json new file mode 100644 index 00000000..6bfbe73f --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.flac-build.src.libFLAC-Debug-8c6f54aecef1386cde41.json @@ -0,0 +1,45 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "cmake-build-debug/_deps/flac-src/src/libFLAC/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 113, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "lib", + "paths" : + [ + "_deps/sfml-build/lib/libFLACd.a" + ], + "targetId" : "FLAC::@d572677c3819035d9b3d", + "targetIndex" : 0, + "type" : "target" + } + ], + "paths" : + { + "build" : "_deps/flac-build/src/libFLAC", + "source" : "cmake-build-debug/_deps/flac-src/src/libFLAC" + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.freetype-build-Debug-0ccbe068af60176bb979.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.freetype-build-Debug-0ccbe068af60176bb979.json new file mode 100644 index 00000000..4c2aa876 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.freetype-build-Debug-0ccbe068af60176bb979.json @@ -0,0 +1,89 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "cmake-build-debug/_deps/freetype-src/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 631, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 639, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 644, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "lib", + "paths" : + [ + "_deps/sfml-build/lib/libfreetyped.a" + ], + "targetId" : "freetype::@d06f9f5ffc3cc0b4bd77", + "targetIndex" : 3, + "type" : "target" + }, + { + "backtrace" : 2, + "component" : "headers", + "destination" : "lib/cmake/freetype", + "exportName" : "freetype-targets", + "exportTargets" : + [ + { + "id" : "freetype::@d06f9f5ffc3cc0b4bd77", + "index" : 3 + }, + { + "id" : "freetype-interface::@d06f9f5ffc3cc0b4bd77", + "index" : 0 + } + ], + "paths" : + [ + "_deps/freetype-build/CMakeFiles/Export/778b4f54a68e80ec034bf381f364ca2c/freetype-config.cmake" + ], + "type" : "export" + }, + { + "backtrace" : 3, + "component" : "headers", + "destination" : "lib/cmake/freetype", + "paths" : + [ + "cmake-build-debug/_deps/freetype-build/freetype-config-version.cmake" + ], + "type" : "file" + } + ], + "paths" : + { + "build" : "_deps/freetype-build", + "source" : "cmake-build-debug/_deps/freetype-src" + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.ogg-build-Debug-60fa8a635e558aa357c3.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.ogg-build-Debug-60fa8a635e558aa357c3.json new file mode 100644 index 00000000..9b2c255f --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.ogg-build-Debug-60fa8a635e558aa357c3.json @@ -0,0 +1,86 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "cmake-build-debug/_deps/ogg-src/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 122, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 135, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 152, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "lib", + "paths" : + [ + "_deps/sfml-build/lib/liboggd.a" + ], + "targetId" : "ogg::@4e5ed7d02827854e35f8", + "targetIndex" : 4, + "type" : "target" + }, + { + "backtrace" : 2, + "component" : "Unspecified", + "destination" : "lib/cmake/Ogg", + "exportName" : "OggTargets", + "exportTargets" : + [ + { + "id" : "ogg::@4e5ed7d02827854e35f8", + "index" : 4 + } + ], + "paths" : + [ + "_deps/ogg-build/CMakeFiles/Export/dee6fd410a50d06b294b496f57355584/OggTargets.cmake" + ], + "type" : "export" + }, + { + "backtrace" : 3, + "component" : "Unspecified", + "destination" : "lib/cmake/Ogg", + "paths" : + [ + "cmake-build-debug/_deps/ogg-build/OggConfig.cmake", + "cmake-build-debug/_deps/ogg-build/OggConfigVersion.cmake" + ], + "type" : "file" + } + ], + "paths" : + { + "build" : "_deps/ogg-build", + "source" : "cmake-build-debug/_deps/ogg-src" + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build-Debug-7d57744d6e1fa68b633d.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build-Debug-7d57744d6e1fa68b633d.json new file mode 100644 index 00000000..5b504bb1 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build-Debug-7d57744d6e1fa68b633d.json @@ -0,0 +1,266 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install", + "sfml_export_targets" + ], + "files" : + [ + "cmake-build-debug/_deps/sfml-src/CMakeLists.txt", + "cmake-build-debug/_deps/sfml-src/cmake/Macros.cmake" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 247, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 251, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 359, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 360, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 377, + "parent" : 0 + }, + { + "command" : 0, + "file" : 1, + "line" : 442, + "parent" : 5 + }, + { + "command" : 0, + "file" : 1, + "line" : 442, + "parent" : 5 + }, + { + "command" : 0, + "file" : 1, + "line" : 442, + "parent" : 5 + }, + { + "command" : 0, + "file" : 1, + "line" : 442, + "parent" : 5 + }, + { + "command" : 0, + "file" : 1, + "line" : 442, + "parent" : 5 + }, + { + "command" : 0, + "file" : 1, + "line" : 442, + "parent" : 5 + }, + { + "command" : 0, + "file" : 1, + "line" : 447, + "parent" : 5 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "devel", + "destination" : "include", + "paths" : + [ + { + "from" : "cmake-build-debug/_deps/sfml-src/include", + "to" : "." + } + ], + "type" : "directory" + }, + { + "backtrace" : 2, + "component" : "devel", + "destination" : "lib/cmake/SFML", + "paths" : + [ + { + "from" : "cmake-build-debug/_deps/sfml-src/cmake/Modules", + "to" : "." + } + ], + "type" : "directory" + }, + { + "backtrace" : 3, + "component" : "Unspecified", + "destination" : "share/doc/SFML", + "paths" : + [ + "cmake-build-debug/_deps/sfml-src/license.md" + ], + "type" : "file" + }, + { + "backtrace" : 4, + "component" : "Unspecified", + "destination" : "share/doc/SFML", + "paths" : + [ + "cmake-build-debug/_deps/sfml-src/readme.md" + ], + "type" : "file" + }, + { + "backtrace" : 6, + "component" : "Unspecified", + "destination" : "lib/cmake/SFML", + "exportName" : "SFMLSystemStaticTargets", + "exportTargets" : + [ + { + "id" : "sfml-system::@8cb1db2982443611e568", + "index" : 9 + } + ], + "paths" : + [ + "_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLSystemStaticTargets.cmake" + ], + "type" : "export" + }, + { + "backtrace" : 7, + "component" : "Unspecified", + "destination" : "lib/cmake/SFML", + "exportName" : "SFMLMainStaticTargets", + "exportTargets" : + [ + { + "id" : "sfml-main::@81ec5539f1398dd625f6", + "index" : 7 + } + ], + "paths" : + [ + "_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLMainStaticTargets.cmake" + ], + "type" : "export" + }, + { + "backtrace" : 8, + "component" : "Unspecified", + "destination" : "lib/cmake/SFML", + "exportName" : "SFMLWindowStaticTargets", + "exportTargets" : + [ + { + "id" : "sfml-window::@5730451e331e3690ae65", + "index" : 10 + } + ], + "paths" : + [ + "_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLWindowStaticTargets.cmake" + ], + "type" : "export" + }, + { + "backtrace" : 9, + "component" : "Unspecified", + "destination" : "lib/cmake/SFML", + "exportName" : "SFMLNetworkStaticTargets", + "exportTargets" : + [ + { + "id" : "sfml-network::@d7f79968b2699e7782cb", + "index" : 8 + } + ], + "paths" : + [ + "_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLNetworkStaticTargets.cmake" + ], + "type" : "export" + }, + { + "backtrace" : 10, + "component" : "Unspecified", + "destination" : "lib/cmake/SFML", + "exportName" : "SFMLGraphicsStaticTargets", + "exportTargets" : + [ + { + "id" : "sfml-graphics::@98af38147d5fa7e70f61", + "index" : 6 + } + ], + "paths" : + [ + "_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLGraphicsStaticTargets.cmake" + ], + "type" : "export" + }, + { + "backtrace" : 11, + "component" : "Unspecified", + "destination" : "lib/cmake/SFML", + "exportName" : "SFMLAudioStaticTargets", + "exportTargets" : + [ + { + "id" : "sfml-audio::@a153e5727587c53fce98", + "index" : 5 + } + ], + "paths" : + [ + "_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLAudioStaticTargets.cmake" + ], + "type" : "export" + }, + { + "backtrace" : 12, + "component" : "devel", + "destination" : "lib/cmake/SFML", + "paths" : + [ + "cmake-build-debug/_deps/sfml-build/SFMLConfig.cmake", + "cmake-build-debug/_deps/sfml-build/SFMLConfigVersion.cmake" + ], + "type" : "file" + } + ], + "paths" : + { + "build" : "_deps/sfml-build", + "source" : "cmake-build-debug/_deps/sfml-src" + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML-Debug-59858f26345abeca2d61.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML-Debug-59858f26345abeca2d61.json new file mode 100644 index 00000000..8d845165 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML-Debug-59858f26345abeca2d61.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "_deps/sfml-build/src/SFML", + "source" : "cmake-build-debug/_deps/sfml-src/src/SFML" + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML.Audio-Debug-b786f8a188daf4578520.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML.Audio-Debug-b786f8a188daf4578520.json new file mode 100644 index 00000000..ecd38ba6 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML.Audio-Debug-b786f8a188daf4578520.json @@ -0,0 +1,69 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install", + "sfml_add_library" + ], + "files" : + [ + "cmake-build-debug/_deps/sfml-src/cmake/Macros.cmake", + "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 165, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 232, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 256, + "parent" : 1 + } + ] + }, + "installers" : + [ + { + "backtrace" : 2, + "component" : "devel", + "destination" : "lib", + "paths" : + [ + "_deps/sfml-build/lib/libsfml-audio-s-d.a" + ], + "targetId" : "sfml-audio::@a153e5727587c53fce98", + "targetIndex" : 5, + "type" : "target" + }, + { + "backtrace" : 3, + "component" : "devel", + "destination" : "lib/cmake/SFML", + "paths" : + [ + "cmake-build-debug/_deps/sfml-build/src/SFML/Audio/SFMLAudioDependencies.cmake" + ], + "type" : "file" + } + ], + "paths" : + { + "build" : "_deps/sfml-build/src/SFML/Audio", + "source" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio" + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML.Graphics-Debug-f63531a95c41b9fc48bc.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML.Graphics-Debug-f63531a95c41b9fc48bc.json new file mode 100644 index 00000000..bfcd9c6d --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML.Graphics-Debug-f63531a95c41b9fc48bc.json @@ -0,0 +1,69 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install", + "sfml_add_library" + ], + "files" : + [ + "cmake-build-debug/_deps/sfml-src/cmake/Macros.cmake", + "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 88, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 232, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 256, + "parent" : 1 + } + ] + }, + "installers" : + [ + { + "backtrace" : 2, + "component" : "devel", + "destination" : "lib", + "paths" : + [ + "_deps/sfml-build/lib/libsfml-graphics-s-d.a" + ], + "targetId" : "sfml-graphics::@98af38147d5fa7e70f61", + "targetIndex" : 6, + "type" : "target" + }, + { + "backtrace" : 3, + "component" : "devel", + "destination" : "lib/cmake/SFML", + "paths" : + [ + "cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/SFMLGraphicsDependencies.cmake" + ], + "type" : "file" + } + ], + "paths" : + { + "build" : "_deps/sfml-build/src/SFML/Graphics", + "source" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics" + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML.Main-Debug-a2399adef7e2d6bf4150.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML.Main-Debug-a2399adef7e2d6bf4150.json new file mode 100644 index 00000000..76bdd311 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML.Main-Debug-a2399adef7e2d6bf4150.json @@ -0,0 +1,53 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install", + "sfml_add_library" + ], + "files" : + [ + "cmake-build-debug/_deps/sfml-src/cmake/Macros.cmake", + "cmake-build-debug/_deps/sfml-src/src/SFML/Main/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 16, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 232, + "parent" : 1 + } + ] + }, + "installers" : + [ + { + "backtrace" : 2, + "component" : "devel", + "destination" : "lib", + "paths" : + [ + "_deps/sfml-build/lib/libsfml-main-s-d.a" + ], + "targetId" : "sfml-main::@81ec5539f1398dd625f6", + "targetIndex" : 7, + "type" : "target" + } + ], + "paths" : + { + "build" : "_deps/sfml-build/src/SFML/Main", + "source" : "cmake-build-debug/_deps/sfml-src/src/SFML/Main" + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML.Network-Debug-f29b89d3f74b427aa1fe.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML.Network-Debug-f29b89d3f74b427aa1fe.json new file mode 100644 index 00000000..43eb1973 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML.Network-Debug-f29b89d3f74b427aa1fe.json @@ -0,0 +1,53 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install", + "sfml_add_library" + ], + "files" : + [ + "cmake-build-debug/_deps/sfml-src/cmake/Macros.cmake", + "cmake-build-debug/_deps/sfml-src/src/SFML/Network/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 43, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 232, + "parent" : 1 + } + ] + }, + "installers" : + [ + { + "backtrace" : 2, + "component" : "devel", + "destination" : "lib", + "paths" : + [ + "_deps/sfml-build/lib/libsfml-network-s-d.a" + ], + "targetId" : "sfml-network::@d7f79968b2699e7782cb", + "targetIndex" : 8, + "type" : "target" + } + ], + "paths" : + { + "build" : "_deps/sfml-build/src/SFML/Network", + "source" : "cmake-build-debug/_deps/sfml-src/src/SFML/Network" + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML.System-Debug-fe57406fdfc6eb930634.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML.System-Debug-fe57406fdfc6eb930634.json new file mode 100644 index 00000000..82e13668 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML.System-Debug-fe57406fdfc6eb930634.json @@ -0,0 +1,69 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install", + "sfml_add_library" + ], + "files" : + [ + "cmake-build-debug/_deps/sfml-src/cmake/Macros.cmake", + "cmake-build-debug/_deps/sfml-src/src/SFML/System/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 72, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 232, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 256, + "parent" : 1 + } + ] + }, + "installers" : + [ + { + "backtrace" : 2, + "component" : "devel", + "destination" : "lib", + "paths" : + [ + "_deps/sfml-build/lib/libsfml-system-s-d.a" + ], + "targetId" : "sfml-system::@8cb1db2982443611e568", + "targetIndex" : 9, + "type" : "target" + }, + { + "backtrace" : 3, + "component" : "devel", + "destination" : "lib/cmake/SFML", + "paths" : + [ + "cmake-build-debug/_deps/sfml-build/src/SFML/System/SFMLSystemDependencies.cmake" + ], + "type" : "file" + } + ], + "paths" : + { + "build" : "_deps/sfml-build/src/SFML/System", + "source" : "cmake-build-debug/_deps/sfml-src/src/SFML/System" + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML.Window-Debug-56bf60c0825c79c51eb9.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML.Window-Debug-56bf60c0825c79c51eb9.json new file mode 100644 index 00000000..6778c4c9 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.sfml-build.src.SFML.Window-Debug-56bf60c0825c79c51eb9.json @@ -0,0 +1,69 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install", + "sfml_add_library" + ], + "files" : + [ + "cmake-build-debug/_deps/sfml-src/cmake/Macros.cmake", + "cmake-build-debug/_deps/sfml-src/src/SFML/Window/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 269, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 232, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 256, + "parent" : 1 + } + ] + }, + "installers" : + [ + { + "backtrace" : 2, + "component" : "devel", + "destination" : "lib", + "paths" : + [ + "_deps/sfml-build/lib/libsfml-window-s-d.a" + ], + "targetId" : "sfml-window::@5730451e331e3690ae65", + "targetIndex" : 10, + "type" : "target" + }, + { + "backtrace" : 3, + "component" : "devel", + "destination" : "lib/cmake/SFML", + "paths" : + [ + "cmake-build-debug/_deps/sfml-build/src/SFML/Window/SFMLWindowDependencies.cmake" + ], + "type" : "file" + } + ], + "paths" : + { + "build" : "_deps/sfml-build/src/SFML/Window", + "source" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window" + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.vorbis-build-Debug-86b14e20c473d622474c.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.vorbis-build-Debug-86b14e20c473d622474c.json new file mode 100644 index 00000000..e2545e16 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.vorbis-build-Debug-86b14e20c473d622474c.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "_deps/vorbis-build", + "source" : "cmake-build-debug/_deps/vorbis-src" + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.vorbis-build.lib-Debug-3504d98a951b921a7336.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.vorbis-build.lib-Debug-3504d98a951b921a7336.json new file mode 100644 index 00000000..e9e5dd02 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/directory-_deps.vorbis-build.lib-Debug-3504d98a951b921a7336.json @@ -0,0 +1,118 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "cmake-build-debug/_deps/vorbis-src/lib/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 117, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 129, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 145, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "lib", + "paths" : + [ + "_deps/sfml-build/lib/libvorbisd.a" + ], + "targetId" : "vorbis::@692b0ee2b61df6760d20", + "targetIndex" : 11, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "lib", + "paths" : + [ + "_deps/sfml-build/lib/libvorbisencd.a" + ], + "targetId" : "vorbisenc::@692b0ee2b61df6760d20", + "targetIndex" : 12, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "lib", + "paths" : + [ + "_deps/sfml-build/lib/libvorbisfiled.a" + ], + "targetId" : "vorbisfile::@692b0ee2b61df6760d20", + "targetIndex" : 13, + "type" : "target" + }, + { + "backtrace" : 2, + "component" : "Unspecified", + "destination" : "lib/cmake/Vorbis", + "exportName" : "VorbisTargets", + "exportTargets" : + [ + { + "id" : "vorbis::@692b0ee2b61df6760d20", + "index" : 11 + }, + { + "id" : "vorbisenc::@692b0ee2b61df6760d20", + "index" : 12 + }, + { + "id" : "vorbisfile::@692b0ee2b61df6760d20", + "index" : 13 + } + ], + "paths" : + [ + "_deps/vorbis-build/lib/CMakeFiles/Export/cc38caa321284793c52f43683a3b76fc/VorbisTargets.cmake" + ], + "type" : "export" + }, + { + "backtrace" : 3, + "component" : "Unspecified", + "destination" : "lib/cmake/Vorbis", + "paths" : + [ + "cmake-build-debug/_deps/vorbis-build/VorbisConfig.cmake", + "cmake-build-debug/_deps/vorbis-build/VorbisConfigVersion.cmake" + ], + "type" : "file" + } + ], + "paths" : + { + "build" : "_deps/vorbis-build/lib", + "source" : "cmake-build-debug/_deps/vorbis-src/lib" + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/index-2025-04-08T21-06-05-0348.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/index-2025-04-08T21-06-05-0348.json new file mode 100644 index 00000000..8f264824 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/index-2025-04-08T21-06-05-0348.json @@ -0,0 +1,108 @@ +{ + "cmake" : + { + "generator" : + { + "multiConfig" : false, + "name" : "Ninja" + }, + "paths" : + { + "cmake" : "G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe", + "cpack" : "G:/CLion 2024.3/bin/cmake/win/x64/bin/cpack.exe", + "ctest" : "G:/CLion 2024.3/bin/cmake/win/x64/bin/ctest.exe", + "root" : "G:/CLion 2024.3/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-d735a1db327539e47c6d.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 7 + } + }, + { + "jsonFile" : "cache-v2-5eb8f59f9e3ac8aa2548.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-a1f98d06922ff2551b7e.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 1 + } + }, + { + "jsonFile" : "toolchains-v1-d616b35393658a55ac6b.json", + "kind" : "toolchains", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ], + "reply" : + { + "cache-v2" : + { + "jsonFile" : "cache-v2-5eb8f59f9e3ac8aa2548.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + "cmakeFiles-v1" : + { + "jsonFile" : "cmakeFiles-v1-a1f98d06922ff2551b7e.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 1 + } + }, + "codemodel-v2" : + { + "jsonFile" : "codemodel-v2-d735a1db327539e47c6d.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 7 + } + }, + "toolchains-v1" : + { + "jsonFile" : "toolchains-v1-d616b35393658a55ac6b.json", + "kind" : "toolchains", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-FLAC-Debug-024c8cad44e375331071.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-FLAC-Debug-024c8cad44e375331071.json new file mode 100644 index 00000000..d00be263 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-FLAC-Debug-024c8cad44e375331071.json @@ -0,0 +1,678 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "_deps/sfml-build/lib/libFLACd.a" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_compile_options", + "target_compile_options", + "target_compile_definitions", + "add_definitions", + "sfml_add_audio_dependencies", + "include", + "include_directories" + ], + "files" : + [ + "cmake-build-debug/_deps/flac-src/src/libFLAC/CMakeLists.txt", + "cmake-build-debug/_deps/flac-src/CMakeLists.txt", + "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/CMakeLists.txt", + "cmake-build-debug/_deps/flac-src/cmake/UseSystemExtensions.cmake" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 37, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 113, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 90, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 168, + "parent" : 4 + }, + { + "command" : 4, + "file" : 0, + "line" : 107, + "parent" : 0 + }, + { + "command" : 5, + "file" : 0, + "line" : 79, + "parent" : 0 + }, + { + "command" : 6, + "file" : 1, + "line" : 198, + "parent" : 4 + }, + { + "command" : 6, + "file" : 1, + "line" : 190, + "parent" : 4 + }, + { + "file" : 2 + }, + { + "command" : 7, + "file" : 2, + "line" : 159, + "parent" : 10 + }, + { + "command" : 5, + "file" : 2, + "line" : 147, + "parent" : 11 + }, + { + "command" : 8, + "file" : 1, + "line" : 107, + "parent" : 4 + }, + { + "file" : 3, + "parent" : 13 + }, + { + "command" : 6, + "file" : 3, + "line" : 54, + "parent" : 14 + }, + { + "command" : 9, + "file" : 1, + "line" : 187, + "parent" : 4 + }, + { + "command" : 9, + "file" : 1, + "line" : 189, + "parent" : 4 + }, + { + "command" : 9, + "file" : 0, + "line" : 35, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always" + }, + { + "backtrace" : 5, + "fragment" : "-Wdeclaration-after-statement" + }, + { + "backtrace" : 6, + "fragment" : "-fassociative-math" + }, + { + "backtrace" : 6, + "fragment" : "-fno-signed-zeros" + }, + { + "backtrace" : 6, + "fragment" : "-fno-trapping-math" + }, + { + "backtrace" : 6, + "fragment" : "-freciprocal-math" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "FLAC__NO_DLL" + }, + { + "backtrace" : 8, + "define" : "FLAC__OVERFLOW_DETECT" + }, + { + "backtrace" : 9, + "define" : "HAVE_CONFIG_H" + }, + { + "backtrace" : 12, + "define" : "NDEBUG" + }, + { + "backtrace" : 15, + "define" : "_DARWIN_C_SOURCE" + }, + { + "backtrace" : 15, + "define" : "_POSIX_PTHREAD_SEMANTICS" + }, + { + "backtrace" : 15, + "define" : "_TANDEM_SOURCE" + }, + { + "backtrace" : 15, + "define" : "__STDC_WANT_IEC_60559_BFP_EXT__" + }, + { + "backtrace" : 15, + "define" : "__STDC_WANT_IEC_60559_DFP_EXT__" + }, + { + "backtrace" : 15, + "define" : "__STDC_WANT_IEC_60559_FUNCS_EXT__" + }, + { + "backtrace" : 15, + "define" : "__STDC_WANT_IEC_60559_TYPES_EXT__" + }, + { + "backtrace" : 15, + "define" : "__STDC_WANT_LIB_EXT2__" + }, + { + "backtrace" : 15, + "define" : "__STDC_WANT_MATH_SPEC_FUNCS__" + } + ], + "includes" : + [ + { + "backtrace" : 16, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include" + }, + { + "backtrace" : 17, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build" + }, + { + "backtrace" : 18, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include" + } + ], + "language" : "C", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 29, + 31, + 32, + 33, + 34, + 35 + ] + }, + { + "defines" : + [ + { + "backtrace" : 7, + "define" : "FLAC__NO_DLL" + }, + { + "backtrace" : 8, + "define" : "FLAC__OVERFLOW_DETECT" + }, + { + "backtrace" : 9, + "define" : "HAVE_CONFIG_H" + }, + { + "backtrace" : 12, + "define" : "NDEBUG" + }, + { + "backtrace" : 15, + "define" : "_DARWIN_C_SOURCE" + }, + { + "backtrace" : 15, + "define" : "_POSIX_PTHREAD_SEMANTICS" + }, + { + "backtrace" : 15, + "define" : "_TANDEM_SOURCE" + }, + { + "backtrace" : 15, + "define" : "__STDC_WANT_IEC_60559_BFP_EXT__" + }, + { + "backtrace" : 15, + "define" : "__STDC_WANT_IEC_60559_DFP_EXT__" + }, + { + "backtrace" : 15, + "define" : "__STDC_WANT_IEC_60559_FUNCS_EXT__" + }, + { + "backtrace" : 15, + "define" : "__STDC_WANT_IEC_60559_TYPES_EXT__" + }, + { + "backtrace" : 15, + "define" : "__STDC_WANT_LIB_EXT2__" + }, + { + "backtrace" : 15, + "define" : "__STDC_WANT_MATH_SPEC_FUNCS__" + } + ], + "includes" : + [ + { + "backtrace" : 16, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include" + }, + { + "backtrace" : 17, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build" + }, + { + "backtrace" : 18, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include" + } + ], + "language" : "RC", + "sourceIndexes" : + [ + 28 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 3, + "id" : "ogg::@4e5ed7d02827854e35f8" + } + ], + "folder" : + { + "name" : "Dependencies" + }, + "id" : "FLAC::@d572677c3819035d9b3d", + "install" : + { + "destinations" : + [ + { + "backtrace" : 2, + "path" : "lib" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/MiniHW2" + } + }, + "name" : "FLAC", + "nameOnDisk" : "libFLACd.a", + "paths" : + { + "build" : "_deps/flac-build/src/libFLAC", + "source" : "cmake-build-debug/_deps/flac-src/src/libFLAC" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 31, + 32, + 33, + 34, + 35 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 30 + ] + } + ], + "sources" : + [ + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/bitmath.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/bitreader.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/bitwriter.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/cpu.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/crc.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/fixed.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/fixed_intrin_sse2.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/fixed_intrin_ssse3.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/fixed_intrin_sse42.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/fixed_intrin_avx2.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/float.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/format.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/lpc.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/lpc_intrin_neon.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/lpc_intrin_sse2.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/lpc_intrin_sse41.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/lpc_intrin_avx2.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/lpc_intrin_fma.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/md5.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/memory.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/metadata_iterators.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/metadata_object.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/stream_decoder.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/stream_encoder.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/stream_encoder_intrin_sse2.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/stream_encoder_intrin_ssse3.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/stream_encoder_intrin_avx2.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/stream_encoder_framing.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/version.rc", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/window.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/flac-src/include/share/win_utf8_io.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/share/win_utf8_io/win_utf8_io.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/ogg_decoder_aspect.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/ogg_encoder_aspect.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/ogg_helper.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/src/libFLAC/ogg_mapping.c", + "sourceGroupIndex" : 0 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-MiniHW2-Debug-575b8e6284c11a155730.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-MiniHW2-Debug-575b8e6284c11a155730.json new file mode 100644 index 00000000..9416c199 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-MiniHW2-Debug-575b8e6284c11a155730.json @@ -0,0 +1,220 @@ +{ + "artifacts" : + [ + { + "path" : "MiniHW2.exe" + }, + { + "path" : "MiniHW2.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_executable", + "target_link_libraries" + ], + "files" : + [ + "CMakeLists.txt", + "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/CMakeLists.txt", + "cmake-build-debug/_deps/sfml-src/src/SFML/Window/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 15, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 17, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 93, + "parent" : 3 + }, + { + "file" : 2 + }, + { + "command" : 1, + "file" : 2, + "line" : 283, + "parent" : 5 + }, + { + "command" : 1, + "file" : 2, + "line" : 312, + "parent" : 5 + }, + { + "command" : 1, + "file" : 2, + "line" : 327, + "parent" : 5 + }, + { + "command" : 1, + "file" : 1, + "line" : 156, + "parent" : 3 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++20 -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 2, + "define" : "SFML_STATIC" + } + ], + "includes" : + [ + { + "backtrace" : 2, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 2 + ], + "standard" : "20" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 2, + "id" : "sfml-system::@8cb1db2982443611e568" + }, + { + "backtrace" : 2, + "id" : "sfml-window::@5730451e331e3690ae65" + }, + { + "backtrace" : 2, + "id" : "sfml-graphics::@98af38147d5fa7e70f61" + }, + { + "backtrace" : 2, + "id" : "freetype::@d06f9f5ffc3cc0b4bd77" + } + ], + "id" : "MiniHW2::@6890427a1f51a3e7e1df", + "link" : + { + "commandFragments" : + [ + { + "fragment" : "-g", + "role" : "flags" + }, + { + "fragment" : "", + "role" : "flags" + }, + { + "backtrace" : 2, + "fragment" : "_deps\\sfml-build\\lib\\libsfml-graphics-s-d.a", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "_deps\\sfml-build\\lib\\libsfml-window-s-d.a", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "_deps\\sfml-build\\lib\\libsfml-system-s-d.a", + "role" : "libraries" + }, + { + "backtrace" : 7, + "fragment" : "-lopengl32", + "role" : "libraries" + }, + { + "backtrace" : 8, + "fragment" : "-lwinmm", + "role" : "libraries" + }, + { + "backtrace" : 8, + "fragment" : "-lgdi32", + "role" : "libraries" + }, + { + "backtrace" : 9, + "fragment" : "_deps\\sfml-build\\lib\\libfreetyped.a", + "role" : "libraries" + }, + { + "fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "MiniHW2", + "nameOnDisk" : "MiniHW2.exe", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + } + ], + "sources" : + [ + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "main.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "EXECUTABLE" +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-benchmark_residual-Debug-e9eaac460f8cb6b8d6ae.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-benchmark_residual-Debug-e9eaac460f8cb6b8d6ae.json new file mode 100644 index 00000000..757bd035 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-benchmark_residual-Debug-e9eaac460f8cb6b8d6ae.json @@ -0,0 +1,298 @@ +{ + "artifacts" : + [ + { + "path" : "objs/benchmark_residual.exe" + }, + { + "path" : "objs/benchmark_residual.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_executable", + "target_link_libraries", + "add_compile_options", + "add_definitions", + "include", + "include_directories", + "target_include_directories" + ], + "files" : + [ + "cmake-build-debug/_deps/flac-src/microbench/CMakeLists.txt", + "cmake-build-debug/_deps/flac-src/src/libFLAC/CMakeLists.txt", + "cmake-build-debug/_deps/flac-src/CMakeLists.txt", + "cmake-build-debug/_deps/flac-src/cmake/UseSystemExtensions.cmake" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 12, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 15, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 88, + "parent" : 3 + }, + { + "command" : 1, + "file" : 1, + "line" : 90, + "parent" : 3 + }, + { + "file" : 2 + }, + { + "command" : 2, + "file" : 2, + "line" : 168, + "parent" : 6 + }, + { + "command" : 3, + "file" : 2, + "line" : 198, + "parent" : 6 + }, + { + "command" : 3, + "file" : 2, + "line" : 190, + "parent" : 6 + }, + { + "command" : 4, + "file" : 2, + "line" : 107, + "parent" : 6 + }, + { + "file" : 3, + "parent" : 10 + }, + { + "command" : 3, + "file" : 3, + "line" : 54, + "parent" : 11 + }, + { + "command" : 5, + "file" : 2, + "line" : 189, + "parent" : 6 + }, + { + "command" : 6, + "file" : 0, + "line" : 13, + "parent" : 0 + }, + { + "command" : 5, + "file" : 2, + "line" : 187, + "parent" : 6 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always" + }, + { + "backtrace" : 7, + "fragment" : "-Wdeclaration-after-statement" + } + ], + "defines" : + [ + { + "backtrace" : 2, + "define" : "FLAC__NO_DLL" + }, + { + "backtrace" : 8, + "define" : "FLAC__OVERFLOW_DETECT" + }, + { + "backtrace" : 9, + "define" : "HAVE_CONFIG_H" + }, + { + "backtrace" : 12, + "define" : "_DARWIN_C_SOURCE" + }, + { + "backtrace" : 12, + "define" : "_POSIX_PTHREAD_SEMANTICS" + }, + { + "backtrace" : 12, + "define" : "_TANDEM_SOURCE" + }, + { + "backtrace" : 12, + "define" : "__STDC_WANT_IEC_60559_BFP_EXT__" + }, + { + "backtrace" : 12, + "define" : "__STDC_WANT_IEC_60559_DFP_EXT__" + }, + { + "backtrace" : 12, + "define" : "__STDC_WANT_IEC_60559_FUNCS_EXT__" + }, + { + "backtrace" : 12, + "define" : "__STDC_WANT_IEC_60559_TYPES_EXT__" + }, + { + "backtrace" : 12, + "define" : "__STDC_WANT_LIB_EXT2__" + }, + { + "backtrace" : 12, + "define" : "__STDC_WANT_MATH_SPEC_FUNCS__" + } + ], + "includes" : + [ + { + "backtrace" : 13, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build" + }, + { + "backtrace" : 14, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include" + }, + { + "backtrace" : 15, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include" + }, + { + "backtrace" : 2, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include" + }, + { + "backtrace" : 2, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include" + } + ], + "language" : "C", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 2, + "id" : "ogg::@4e5ed7d02827854e35f8" + }, + { + "backtrace" : 2, + "id" : "FLAC::@d572677c3819035d9b3d" + } + ], + "id" : "benchmark_residual::@3956ab943ce8cc4f6f98", + "link" : + { + "commandFragments" : + [ + { + "fragment" : "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g", + "role" : "flags" + }, + { + "fragment" : "", + "role" : "flags" + }, + { + "backtrace" : 2, + "fragment" : "_deps\\sfml-build\\lib\\libFLACd.a", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "-lm", + "role" : "libraries" + }, + { + "backtrace" : 5, + "fragment" : "_deps\\sfml-build\\lib\\liboggd.a", + "role" : "libraries" + }, + { + "fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32", + "role" : "libraries" + } + ], + "language" : "C" + }, + "name" : "benchmark_residual", + "nameOnDisk" : "benchmark_residual.exe", + "paths" : + { + "build" : "_deps/flac-build/microbench", + "source" : "cmake-build-debug/_deps/flac-src/microbench" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/microbench/benchmark_residual.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/flac-src/microbench/util.c", + "sourceGroupIndex" : 0 + } + ], + "type" : "EXECUTABLE" +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-freetype-Debug-f49038a754141fce6a44.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-freetype-Debug-f49038a754141fce6a44.json new file mode 100644 index 00000000..da5863c7 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-freetype-Debug-f49038a754141fce6a44.json @@ -0,0 +1,1010 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "_deps/sfml-build/lib/libfreetyped.a" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_compile_definitions", + "target_include_directories" + ], + "files" : + [ + "cmake-build-debug/_deps/freetype-src/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 454, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 631, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 465, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 469, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 484, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -fvisibility=hidden -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 3, + "define" : "FT2_BUILD_LIBRARY" + }, + { + "backtrace" : 4, + "define" : "_CRT_NONSTDC_NO_WARNINGS" + }, + { + "backtrace" : 4, + "define" : "_CRT_SECURE_NO_WARNINGS" + } + ], + "includes" : + [ + { + "backtrace" : 5, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include" + }, + { + "backtrace" : 5, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include" + }, + { + "backtrace" : 5, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config" + } + ], + "language" : "C", + "sourceIndexes" : + [ + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121 + ] + }, + { + "defines" : + [ + { + "backtrace" : 3, + "define" : "FT2_BUILD_LIBRARY" + }, + { + "backtrace" : 4, + "define" : "_CRT_NONSTDC_NO_WARNINGS" + }, + { + "backtrace" : 4, + "define" : "_CRT_SECURE_NO_WARNINGS" + } + ], + "includes" : + [ + { + "backtrace" : 5, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include" + }, + { + "backtrace" : 5, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include" + }, + { + "backtrace" : 5, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config" + } + ], + "language" : "RC", + "sourceIndexes" : + [ + 122 + ] + } + ], + "folder" : + { + "name" : "Dependencies" + }, + "id" : "freetype::@d06f9f5ffc3cc0b4bd77", + "install" : + { + "destinations" : + [ + { + "backtrace" : 2, + "path" : "lib" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/MiniHW2" + } + }, + "name" : "freetype", + "nameOnDisk" : "libfreetyped.a", + "paths" : + { + "build" : "_deps/freetype-build", + "source" : "cmake-build-debug/_deps/freetype-src" + }, + "sourceGroups" : + [ + { + "name" : "Header Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122 + ] + } + ], + "sources" : + [ + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/freetype.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftadvanc.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftbbox.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftbdf.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftbitmap.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftbzip2.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftcache.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftchapters.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftcid.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftcolor.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftdriver.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/fterrdef.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/fterrors.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftfntfmt.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftgasp.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftglyph.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftgxval.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftgzip.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftimage.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftincrem.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftlcdfil.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftlist.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftlogging.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftlzw.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftmac.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftmm.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftmodapi.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftmoderr.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftotval.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftoutln.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftparams.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftpfr.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftrender.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftsizes.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftsnames.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftstroke.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftsynth.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftsystem.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/fttrigon.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/fttypes.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ftwinfnt.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/otsvg.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/t1tables.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/ttnameid.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/tttables.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/tttags.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/ft2build.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/config/ftconfig.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/config/ftheader.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/config/ftmodule.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/config/ftoption.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/config/ftstdlib.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/config/integer-types.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/config/mac-support.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/config/public-macros.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/autohint.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/cffotypes.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/cfftypes.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/compiler-macros.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/ftcalc.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/ftdebug.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/ftdrv.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/ftgloadr.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/fthash.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/ftmemory.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/ftmmtypes.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/ftobjs.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/ftpsprop.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/ftrfork.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/ftserv.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/ftstream.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/fttrace.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/ftvalid.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/psaux.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/pshints.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/sfnt.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/svginterface.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/t1types.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/tttypes.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/include/freetype/internal/wofftypes.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/autofit/autofit.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/base/ftbase.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/base/ftbbox.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/base/ftbdf.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/base/ftbitmap.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/base/ftcid.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/base/ftfstype.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/base/ftgasp.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/base/ftglyph.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/base/ftgxval.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/base/ftinit.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/base/ftmm.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/base/ftotval.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/base/ftpatent.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/base/ftpfr.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/base/ftstroke.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/base/ftsynth.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/base/fttype1.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/base/ftwinfnt.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/bdf/bdf.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/bzip2/ftbzip2.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/cache/ftcache.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/cff/cff.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/cid/type1cid.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/gzip/ftgzip.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/lzw/ftlzw.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/pcf/pcf.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/pfr/pfr.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/psaux/psaux.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/pshinter/pshinter.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/psnames/psnames.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/raster/raster.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/sdf/sdf.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/sfnt/sfnt.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/smooth/smooth.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/svg/svg.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/truetype/truetype.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/type1/type1.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/type42/type42.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/src/winfonts/winfnt.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/builds/windows/ftsystem.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/freetype-src/builds/windows/ftdebug.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "cmake-build-debug/_deps/freetype-src/src/base/ftver.rc", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-ogg-Debug-d76902b0cae3dfe2dc13.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-ogg-Debug-d76902b0cae3dfe2dc13.json new file mode 100644 index 00000000..90367274 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-ogg-Debug-d76902b0cae3dfe2dc13.json @@ -0,0 +1,158 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "_deps/sfml-build/lib/liboggd.a" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_include_directories" + ], + "files" : + [ + "cmake-build-debug/_deps/ogg-src/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 93, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 122, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 95, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -fdiagnostics-color=always" + } + ], + "includes" : + [ + { + "backtrace" : 3, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include" + }, + { + "backtrace" : 3, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include" + } + ], + "language" : "C", + "sourceIndexes" : + [ + 3, + 4 + ] + } + ], + "folder" : + { + "name" : "Dependencies" + }, + "id" : "ogg::@4e5ed7d02827854e35f8", + "install" : + { + "destinations" : + [ + { + "backtrace" : 2, + "path" : "lib" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/MiniHW2" + } + }, + "name" : "ogg", + "nameOnDisk" : "liboggd.a", + "paths" : + { + "build" : "_deps/ogg-build", + "source" : "cmake-build-debug/_deps/ogg-src" + }, + "sourceGroups" : + [ + { + "name" : "Header Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 5 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 3, + 4 + ] + } + ], + "sources" : + [ + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/ogg-build/include/ogg/config_types.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/ogg-src/include/ogg/ogg.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/ogg-src/include/ogg/os_types.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/ogg-src/src/bitwise.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/ogg-src/src/framing.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/ogg-src/src/crctable.h", + "sourceGroupIndex" : 0 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-sfml-audio-Debug-b65f8c68941e0030e452.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-sfml-audio-Debug-b65f8c68941e0030e452.json new file mode 100644 index 00000000..8791d73b --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-sfml-audio-Debug-b65f8c68941e0030e452.json @@ -0,0 +1,759 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "_deps/sfml-build/lib/libsfml-audio-s-d.a" + } + ], + "backtrace" : 2, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "sfml_add_library", + "install", + "target_link_libraries", + "target_compile_options", + "set_target_warnings", + "target_compile_definitions", + "target_include_directories", + "target_compile_features" + ], + "files" : + [ + "cmake-build-debug/_deps/sfml-src/cmake/Macros.cmake", + "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/CMakeLists.txt", + "cmake-build-debug/_deps/sfml-src/cmake/CompilerWarnings.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 165, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 72, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 232, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 182, + "parent" : 0 + }, + { + "command" : 5, + "file" : 0, + "line" : 85, + "parent" : 1 + }, + { + "command" : 4, + "file" : 2, + "line" : 43, + "parent" : 5 + }, + { + "command" : 4, + "file" : 2, + "line" : 68, + "parent" : 5 + }, + { + "command" : 6, + "file" : 1, + "line" : 170, + "parent" : 0 + }, + { + "command" : 6, + "file" : 1, + "line" : 173, + "parent" : 0 + }, + { + "command" : 6, + "file" : 1, + "line" : 176, + "parent" : 0 + }, + { + "command" : 6, + "file" : 1, + "line" : 179, + "parent" : 0 + }, + { + "command" : 6, + "file" : 0, + "line" : 274, + "parent" : 1 + }, + { + "command" : 6, + "file" : 2, + "line" : 85, + "parent" : 5 + }, + { + "command" : 6, + "file" : 2, + "line" : 86, + "parent" : 5 + }, + { + "command" : 7, + "file" : 0, + "line" : 262, + "parent" : 1 + }, + { + "command" : 7, + "file" : 1, + "line" : 190, + "parent" : 0 + }, + { + "command" : 7, + "file" : 1, + "line" : 193, + "parent" : 0 + }, + { + "command" : 8, + "file" : 0, + "line" : 77, + "parent" : 1 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always" + }, + { + "backtrace" : 6, + "fragment" : "-Wall" + }, + { + "backtrace" : 6, + "fragment" : "-Wextra" + }, + { + "backtrace" : 6, + "fragment" : "-Wshadow" + }, + { + "backtrace" : 6, + "fragment" : "-Wnon-virtual-dtor" + }, + { + "backtrace" : 6, + "fragment" : "-Wcast-align" + }, + { + "backtrace" : 6, + "fragment" : "-Wunused" + }, + { + "backtrace" : 6, + "fragment" : "-Woverloaded-virtual" + }, + { + "backtrace" : 6, + "fragment" : "-Wconversion" + }, + { + "backtrace" : 6, + "fragment" : "-Wsign-conversion" + }, + { + "backtrace" : 6, + "fragment" : "-Wdouble-promotion" + }, + { + "backtrace" : 6, + "fragment" : "-Wformat=2" + }, + { + "backtrace" : 6, + "fragment" : "-Wimplicit-fallthrough" + }, + { + "backtrace" : 6, + "fragment" : "-Wsuggest-override" + }, + { + "backtrace" : 6, + "fragment" : "-Wnull-dereference" + }, + { + "backtrace" : 6, + "fragment" : "-Wold-style-cast" + }, + { + "backtrace" : 6, + "fragment" : "-Wpedantic" + }, + { + "backtrace" : 7, + "fragment" : "-Wmisleading-indentation" + }, + { + "backtrace" : 7, + "fragment" : "-Wduplicated-cond" + }, + { + "backtrace" : 7, + "fragment" : "-Wlogical-op" + }, + { + "backtrace" : 7, + "fragment" : "-Wduplicated-branches" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "FLAC__NO_DLL" + }, + { + "backtrace" : 9, + "define" : "MA_NO_ENCODING" + }, + { + "backtrace" : 9, + "define" : "MA_NO_FLAC" + }, + { + "backtrace" : 9, + "define" : "MA_NO_GENERATION" + }, + { + "backtrace" : 9, + "define" : "MA_NO_MP3" + }, + { + "backtrace" : 9, + "define" : "MA_NO_RESOURCE_MANAGER" + }, + { + "backtrace" : 10, + "define" : "MA_USE_STDINT" + }, + { + "backtrace" : 8, + "define" : "OV_EXCLUDE_STATIC_CALLBACKS" + }, + { + "backtrace" : 11, + "define" : "SFML_IS_BIG_ENDIAN=0" + }, + { + "backtrace" : 12, + "define" : "SFML_STATIC" + }, + { + "backtrace" : 13, + "define" : "_CRT_SECURE_NO_WARNINGS" + }, + { + "backtrace" : 14, + "define" : "_WINSOCK_DEPRECATED_NO_WARNINGS" + } + ], + "includes" : + [ + { + "backtrace" : 15, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src" + }, + { + "backtrace" : 15, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include" + }, + { + "backtrace" : 16, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio" + }, + { + "backtrace" : 17, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 18 + ], + "standard" : "20" + }, + "sourceIndexes" : + [ + 0, + 2, + 5, + 7, + 9, + 10, + 12, + 14, + 16, + 18, + 21, + 23, + 25, + 27, + 29, + 31, + 36, + 38, + 40, + 42, + 45, + 47, + 49 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "sfml-system::@8cb1db2982443611e568" + }, + { + "backtrace" : 4, + "id" : "ogg::@4e5ed7d02827854e35f8" + }, + { + "backtrace" : 4, + "id" : "FLAC::@d572677c3819035d9b3d" + }, + { + "backtrace" : 4, + "id" : "vorbisenc::@692b0ee2b61df6760d20" + }, + { + "backtrace" : 4, + "id" : "vorbisfile::@692b0ee2b61df6760d20" + }, + { + "backtrace" : 4, + "id" : "vorbis::@692b0ee2b61df6760d20" + } + ], + "folder" : + { + "name" : "SFML" + }, + "id" : "sfml-audio::@a153e5727587c53fce98", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "lib" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/MiniHW2" + } + }, + "name" : "sfml-audio", + "nameOnDisk" : "libsfml-audio-s-d.a", + "paths" : + { + "build" : "_deps/sfml-build/src/SFML/Audio", + "source" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30 + ] + }, + { + "name" : "codecs", + "sourceIndexes" : + [ + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49 + ] + } + ], + "sources" : + [ + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/AudioResource.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Audio/AudioResource.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/AudioDevice.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/AudioDevice.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Audio/Export.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/Listener.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Audio/Listener.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/Miniaudio.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/MiniaudioUtils.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/MiniaudioUtils.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/Music.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Audio/Music.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/PlaybackDevice.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Audio/PlaybackDevice.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/Sound.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Audio/Sound.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundBuffer.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Audio/SoundBuffer.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundBufferRecorder.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Audio/SoundBufferRecorder.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Audio/SoundChannel.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/InputSoundFile.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Audio/InputSoundFile.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/OutputSoundFile.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Audio/OutputSoundFile.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundRecorder.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Audio/SoundRecorder.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundSource.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Audio/SoundSource.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundStream.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Audio/SoundStream.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileFactory.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Audio/SoundFileFactory.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Audio/SoundFileFactory.inl", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Audio/SoundFileReader.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileReaderFlac.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileReaderFlac.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileReaderMp3.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileReaderMp3.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileReaderOgg.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileReaderOgg.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileReaderWav.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileReaderWav.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Audio/SoundFileWriter.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileWriterFlac.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileWriterFlac.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileWriterOgg.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileWriterOgg.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileWriterWav.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileWriterWav.cpp", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-sfml-graphics-Debug-1269bee0b6c57952005c.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-sfml-graphics-Debug-1269bee0b6c57952005c.json new file mode 100644 index 00000000..0a33caf2 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-sfml-graphics-Debug-1269bee0b6c57952005c.json @@ -0,0 +1,963 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "_deps/sfml-build/lib/libsfml-graphics-s-d.a" + } + ], + "backtrace" : 2, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "sfml_add_library", + "install", + "target_link_libraries", + "target_compile_options", + "set_target_warnings", + "target_compile_definitions", + "target_include_directories", + "target_compile_features" + ], + "files" : + [ + "cmake-build-debug/_deps/sfml-src/cmake/Macros.cmake", + "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/CMakeLists.txt", + "cmake-build-debug/_deps/sfml-src/cmake/CompilerWarnings.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 88, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 72, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 232, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 93, + "parent" : 0 + }, + { + "command" : 3, + "file" : 1, + "line" : 156, + "parent" : 0 + }, + { + "command" : 5, + "file" : 0, + "line" : 85, + "parent" : 1 + }, + { + "command" : 4, + "file" : 2, + "line" : 43, + "parent" : 6 + }, + { + "command" : 4, + "file" : 2, + "line" : 68, + "parent" : 6 + }, + { + "command" : 6, + "file" : 0, + "line" : 274, + "parent" : 1 + }, + { + "command" : 6, + "file" : 1, + "line" : 159, + "parent" : 0 + }, + { + "command" : 6, + "file" : 2, + "line" : 85, + "parent" : 6 + }, + { + "command" : 6, + "file" : 2, + "line" : 86, + "parent" : 6 + }, + { + "command" : 7, + "file" : 0, + "line" : 262, + "parent" : 1 + }, + { + "command" : 7, + "file" : 1, + "line" : 96, + "parent" : 0 + }, + { + "command" : 7, + "file" : 1, + "line" : 99, + "parent" : 0 + }, + { + "command" : 8, + "file" : 0, + "line" : 77, + "parent" : 1 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always" + }, + { + "backtrace" : 7, + "fragment" : "-Wall" + }, + { + "backtrace" : 7, + "fragment" : "-Wextra" + }, + { + "backtrace" : 7, + "fragment" : "-Wshadow" + }, + { + "backtrace" : 7, + "fragment" : "-Wnon-virtual-dtor" + }, + { + "backtrace" : 7, + "fragment" : "-Wcast-align" + }, + { + "backtrace" : 7, + "fragment" : "-Wunused" + }, + { + "backtrace" : 7, + "fragment" : "-Woverloaded-virtual" + }, + { + "backtrace" : 7, + "fragment" : "-Wconversion" + }, + { + "backtrace" : 7, + "fragment" : "-Wsign-conversion" + }, + { + "backtrace" : 7, + "fragment" : "-Wdouble-promotion" + }, + { + "backtrace" : 7, + "fragment" : "-Wformat=2" + }, + { + "backtrace" : 7, + "fragment" : "-Wimplicit-fallthrough" + }, + { + "backtrace" : 7, + "fragment" : "-Wsuggest-override" + }, + { + "backtrace" : 7, + "fragment" : "-Wnull-dereference" + }, + { + "backtrace" : 7, + "fragment" : "-Wold-style-cast" + }, + { + "backtrace" : 7, + "fragment" : "-Wpedantic" + }, + { + "backtrace" : 8, + "fragment" : "-Wmisleading-indentation" + }, + { + "backtrace" : 8, + "fragment" : "-Wduplicated-cond" + }, + { + "backtrace" : 8, + "fragment" : "-Wlogical-op" + }, + { + "backtrace" : 8, + "fragment" : "-Wduplicated-branches" + } + ], + "defines" : + [ + { + "backtrace" : 9, + "define" : "SFML_STATIC" + }, + { + "backtrace" : 10, + "define" : "STBI_FAILURE_USERMSG" + }, + { + "backtrace" : 11, + "define" : "_CRT_SECURE_NO_WARNINGS" + }, + { + "backtrace" : 12, + "define" : "_WINSOCK_DEPRECATED_NO_WARNINGS" + } + ], + "includes" : + [ + { + "backtrace" : 13, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src" + }, + { + "backtrace" : 13, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include" + }, + { + "backtrace" : 14, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image" + }, + { + "backtrace" : 15, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include" + }, + { + "backtrace" : 5, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include" + }, + { + "backtrace" : 5, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 16 + ], + "standard" : "20" + }, + "sourceIndexes" : + [ + 0, + 6, + 8, + 12, + 15, + 21, + 23, + 25, + 27, + 29, + 31, + 33, + 35, + 37, + 40, + 42, + 46, + 48, + 50, + 52, + 54, + 56, + 58, + 60, + 63, + 65 + ] + }, + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always" + }, + { + "backtrace" : 7, + "fragment" : "-Wall" + }, + { + "backtrace" : 7, + "fragment" : "-Wextra" + }, + { + "backtrace" : 7, + "fragment" : "-Wshadow" + }, + { + "backtrace" : 7, + "fragment" : "-Wnon-virtual-dtor" + }, + { + "backtrace" : 7, + "fragment" : "-Wcast-align" + }, + { + "backtrace" : 7, + "fragment" : "-Wunused" + }, + { + "backtrace" : 7, + "fragment" : "-Woverloaded-virtual" + }, + { + "backtrace" : 7, + "fragment" : "-Wconversion" + }, + { + "backtrace" : 7, + "fragment" : "-Wsign-conversion" + }, + { + "backtrace" : 7, + "fragment" : "-Wdouble-promotion" + }, + { + "backtrace" : 7, + "fragment" : "-Wformat=2" + }, + { + "backtrace" : 7, + "fragment" : "-Wimplicit-fallthrough" + }, + { + "backtrace" : 7, + "fragment" : "-Wsuggest-override" + }, + { + "backtrace" : 7, + "fragment" : "-Wnull-dereference" + }, + { + "backtrace" : 7, + "fragment" : "-Wold-style-cast" + }, + { + "backtrace" : 7, + "fragment" : "-Wpedantic" + }, + { + "backtrace" : 8, + "fragment" : "-Wmisleading-indentation" + }, + { + "backtrace" : 8, + "fragment" : "-Wduplicated-cond" + }, + { + "backtrace" : 8, + "fragment" : "-Wlogical-op" + }, + { + "backtrace" : 8, + "fragment" : "-Wduplicated-branches" + }, + { + "fragment" : "-fno-strict-aliasing" + } + ], + "defines" : + [ + { + "backtrace" : 9, + "define" : "SFML_STATIC" + }, + { + "backtrace" : 10, + "define" : "STBI_FAILURE_USERMSG" + }, + { + "backtrace" : 11, + "define" : "_CRT_SECURE_NO_WARNINGS" + }, + { + "backtrace" : 12, + "define" : "_WINSOCK_DEPRECATED_NO_WARNINGS" + } + ], + "includes" : + [ + { + "backtrace" : 13, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src" + }, + { + "backtrace" : 13, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include" + }, + { + "backtrace" : 14, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image" + }, + { + "backtrace" : 15, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include" + }, + { + "backtrace" : 5, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include" + }, + { + "backtrace" : 5, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 16 + ], + "standard" : "20" + }, + "sourceIndexes" : + [ + 16 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "sfml-system::@8cb1db2982443611e568" + }, + { + "backtrace" : 4, + "id" : "sfml-window::@5730451e331e3690ae65" + }, + { + "backtrace" : 5, + "id" : "freetype::@d06f9f5ffc3cc0b4bd77" + } + ], + "folder" : + { + "name" : "SFML" + }, + "id" : "sfml-graphics::@98af38147d5fa7e70f61", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "lib" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/MiniHW2" + } + }, + "name" : "sfml-graphics", + "nameOnDisk" : "libsfml-graphics-s-d.a", + "paths" : + { + "build" : "_deps/sfml-build/src/SFML/Graphics", + "source" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44 + ] + }, + { + "name" : "drawables", + "sourceIndexes" : + [ + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61 + ] + }, + { + "name" : "render texture", + "sourceIndexes" : + [ + 62, + 63, + 64, + 65, + 66 + ] + } + ], + "sources" : + [ + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/BlendMode.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/BlendMode.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/Color.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/Color.inl", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/CoordinateType.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/Export.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Font.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/Font.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Glsl.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/Glsl.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/Glsl.inl", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/Glyph.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/GLCheck.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/GLCheck.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/GLExtensions.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/GLExtensions.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 1, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Image.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/Image.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/PrimitiveType.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/Rect.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/Rect.inl", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/RenderStates.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/RenderStates.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/RenderTexture.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/RenderTexture.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/RenderTarget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/RenderTarget.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/RenderWindow.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/RenderWindow.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Shader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/Shader.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/StencilMode.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/StencilMode.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Texture.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/Texture.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/TextureSaver.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/TextureSaver.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Transform.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/Transform.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/Transform.inl", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Transformable.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/Transformable.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/View.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/View.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/Vertex.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/Drawable.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Shape.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/Shape.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/CircleShape.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/CircleShape.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/RectangleShape.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/RectangleShape.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/ConvexShape.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/ConvexShape.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Sprite.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/Sprite.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Text.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/Text.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/VertexArray.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/VertexArray.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/VertexBuffer.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Graphics/VertexBuffer.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/RenderTextureImpl.hpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/RenderTextureImplFBO.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/RenderTextureImplFBO.hpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/RenderTextureImplDefault.cpp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/RenderTextureImplDefault.hpp", + "sourceGroupIndex" : 2 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-sfml-main-Debug-f43fe5dcbb98ed09ccf1.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-sfml-main-Debug-f43fe5dcbb98ed09ccf1.json new file mode 100644 index 00000000..f7604647 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-sfml-main-Debug-f43fe5dcbb98ed09ccf1.json @@ -0,0 +1,278 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "_deps/sfml-build/lib/libsfml-main-s-d.a" + } + ], + "backtrace" : 2, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "sfml_add_library", + "install", + "target_compile_options", + "set_target_warnings", + "target_compile_definitions", + "target_include_directories", + "target_compile_features" + ], + "files" : + [ + "cmake-build-debug/_deps/sfml-src/cmake/Macros.cmake", + "cmake-build-debug/_deps/sfml-src/src/SFML/Main/CMakeLists.txt", + "cmake-build-debug/_deps/sfml-src/cmake/CompilerWarnings.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 16, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 70, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 232, + "parent" : 1 + }, + { + "command" : 4, + "file" : 0, + "line" : 85, + "parent" : 1 + }, + { + "command" : 3, + "file" : 2, + "line" : 43, + "parent" : 4 + }, + { + "command" : 3, + "file" : 2, + "line" : 68, + "parent" : 4 + }, + { + "command" : 5, + "file" : 0, + "line" : 274, + "parent" : 1 + }, + { + "command" : 5, + "file" : 2, + "line" : 85, + "parent" : 4 + }, + { + "command" : 5, + "file" : 2, + "line" : 86, + "parent" : 4 + }, + { + "command" : 6, + "file" : 0, + "line" : 262, + "parent" : 1 + }, + { + "command" : 7, + "file" : 0, + "line" : 77, + "parent" : 1 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always" + }, + { + "backtrace" : 5, + "fragment" : "-Wall" + }, + { + "backtrace" : 5, + "fragment" : "-Wextra" + }, + { + "backtrace" : 5, + "fragment" : "-Wshadow" + }, + { + "backtrace" : 5, + "fragment" : "-Wnon-virtual-dtor" + }, + { + "backtrace" : 5, + "fragment" : "-Wcast-align" + }, + { + "backtrace" : 5, + "fragment" : "-Wunused" + }, + { + "backtrace" : 5, + "fragment" : "-Woverloaded-virtual" + }, + { + "backtrace" : 5, + "fragment" : "-Wconversion" + }, + { + "backtrace" : 5, + "fragment" : "-Wsign-conversion" + }, + { + "backtrace" : 5, + "fragment" : "-Wdouble-promotion" + }, + { + "backtrace" : 5, + "fragment" : "-Wformat=2" + }, + { + "backtrace" : 5, + "fragment" : "-Wimplicit-fallthrough" + }, + { + "backtrace" : 5, + "fragment" : "-Wsuggest-override" + }, + { + "backtrace" : 5, + "fragment" : "-Wnull-dereference" + }, + { + "backtrace" : 5, + "fragment" : "-Wold-style-cast" + }, + { + "backtrace" : 5, + "fragment" : "-Wpedantic" + }, + { + "backtrace" : 6, + "fragment" : "-Wmisleading-indentation" + }, + { + "backtrace" : 6, + "fragment" : "-Wduplicated-cond" + }, + { + "backtrace" : 6, + "fragment" : "-Wlogical-op" + }, + { + "backtrace" : 6, + "fragment" : "-Wduplicated-branches" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "SFML_STATIC" + }, + { + "backtrace" : 8, + "define" : "_CRT_SECURE_NO_WARNINGS" + }, + { + "backtrace" : 9, + "define" : "_WINSOCK_DEPRECATED_NO_WARNINGS" + } + ], + "includes" : + [ + { + "backtrace" : 10, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include" + }, + { + "backtrace" : 10, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 11 + ], + "standard" : "20" + }, + "sourceIndexes" : + [ + 0 + ] + } + ], + "folder" : + { + "name" : "SFML" + }, + "id" : "sfml-main::@81ec5539f1398dd625f6", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "lib" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/MiniHW2" + } + }, + "name" : "sfml-main", + "nameOnDisk" : "libsfml-main-s-d.a", + "paths" : + { + "build" : "_deps/sfml-build/src/SFML/Main", + "source" : "cmake-build-debug/_deps/sfml-src/src/SFML/Main" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0 + ] + } + ], + "sources" : + [ + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Main/MainWin32.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-sfml-network-Debug-da7f56da9d6411626163.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-sfml-network-Debug-da7f56da9d6411626163.json new file mode 100644 index 00000000..e0031286 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-sfml-network-Debug-da7f56da9d6411626163.json @@ -0,0 +1,437 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "_deps/sfml-build/lib/libsfml-network-s-d.a" + } + ], + "backtrace" : 2, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "sfml_add_library", + "install", + "target_link_libraries", + "target_compile_options", + "set_target_warnings", + "target_compile_definitions", + "target_include_directories", + "target_compile_features" + ], + "files" : + [ + "cmake-build-debug/_deps/sfml-src/cmake/Macros.cmake", + "cmake-build-debug/_deps/sfml-src/src/SFML/Network/CMakeLists.txt", + "cmake-build-debug/_deps/sfml-src/cmake/CompilerWarnings.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 43, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 72, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 232, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 47, + "parent" : 0 + }, + { + "command" : 5, + "file" : 0, + "line" : 85, + "parent" : 1 + }, + { + "command" : 4, + "file" : 2, + "line" : 43, + "parent" : 5 + }, + { + "command" : 4, + "file" : 2, + "line" : 68, + "parent" : 5 + }, + { + "command" : 6, + "file" : 0, + "line" : 274, + "parent" : 1 + }, + { + "command" : 6, + "file" : 2, + "line" : 85, + "parent" : 5 + }, + { + "command" : 6, + "file" : 2, + "line" : 86, + "parent" : 5 + }, + { + "command" : 7, + "file" : 0, + "line" : 262, + "parent" : 1 + }, + { + "command" : 8, + "file" : 0, + "line" : 77, + "parent" : 1 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always" + }, + { + "backtrace" : 6, + "fragment" : "-Wall" + }, + { + "backtrace" : 6, + "fragment" : "-Wextra" + }, + { + "backtrace" : 6, + "fragment" : "-Wshadow" + }, + { + "backtrace" : 6, + "fragment" : "-Wnon-virtual-dtor" + }, + { + "backtrace" : 6, + "fragment" : "-Wcast-align" + }, + { + "backtrace" : 6, + "fragment" : "-Wunused" + }, + { + "backtrace" : 6, + "fragment" : "-Woverloaded-virtual" + }, + { + "backtrace" : 6, + "fragment" : "-Wconversion" + }, + { + "backtrace" : 6, + "fragment" : "-Wsign-conversion" + }, + { + "backtrace" : 6, + "fragment" : "-Wdouble-promotion" + }, + { + "backtrace" : 6, + "fragment" : "-Wformat=2" + }, + { + "backtrace" : 6, + "fragment" : "-Wimplicit-fallthrough" + }, + { + "backtrace" : 6, + "fragment" : "-Wsuggest-override" + }, + { + "backtrace" : 6, + "fragment" : "-Wnull-dereference" + }, + { + "backtrace" : 6, + "fragment" : "-Wold-style-cast" + }, + { + "backtrace" : 6, + "fragment" : "-Wpedantic" + }, + { + "backtrace" : 7, + "fragment" : "-Wmisleading-indentation" + }, + { + "backtrace" : 7, + "fragment" : "-Wduplicated-cond" + }, + { + "backtrace" : 7, + "fragment" : "-Wlogical-op" + }, + { + "backtrace" : 7, + "fragment" : "-Wduplicated-branches" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "SFML_STATIC" + }, + { + "backtrace" : 9, + "define" : "_CRT_SECURE_NO_WARNINGS" + }, + { + "backtrace" : 10, + "define" : "_WINSOCK_DEPRECATED_NO_WARNINGS" + } + ], + "includes" : + [ + { + "backtrace" : 11, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 12 + ], + "standard" : "20" + }, + "sourceIndexes" : + [ + 1, + 3, + 5, + 7, + 9, + 13, + 15, + 17, + 19, + 21 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "sfml-system::@8cb1db2982443611e568" + } + ], + "folder" : + { + "name" : "SFML" + }, + "id" : "sfml-network::@d7f79968b2699e7782cb", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "lib" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/MiniHW2" + } + }, + "name" : "sfml-network", + "nameOnDisk" : "libsfml-network-s-d.a", + "paths" : + { + "build" : "_deps/sfml-build/src/SFML/Network", + "source" : "cmake-build-debug/_deps/sfml-src/src/SFML/Network" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21 + ] + } + ], + "sources" : + [ + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Network/Export.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Network/Ftp.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Network/Ftp.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Network/Http.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Network/Http.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Network/IpAddress.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Network/IpAddress.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Network/Packet.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Network/Packet.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Network/Socket.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Network/Socket.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Network/SocketImpl.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Network/SocketHandle.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Network/SocketSelector.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Network/SocketSelector.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Network/TcpListener.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Network/TcpListener.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Network/TcpSocket.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Network/TcpSocket.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Network/UdpSocket.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Network/UdpSocket.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Network/Win32/SocketImpl.cpp", + "sourceGroupIndex" : 0 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-sfml-system-Debug-000f6598698d1a5cfe29.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-sfml-system-Debug-000f6598698d1a5cfe29.json new file mode 100644 index 00000000..9047035a --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-sfml-system-Debug-000f6598698d1a5cfe29.json @@ -0,0 +1,506 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "_deps/sfml-build/lib/libsfml-system-s-d.a" + } + ], + "backtrace" : 2, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "sfml_add_library", + "install", + "target_compile_options", + "set_target_warnings", + "target_compile_definitions", + "target_include_directories", + "target_compile_features" + ], + "files" : + [ + "cmake-build-debug/_deps/sfml-src/cmake/Macros.cmake", + "cmake-build-debug/_deps/sfml-src/src/SFML/System/CMakeLists.txt", + "cmake-build-debug/_deps/sfml-src/cmake/CompilerWarnings.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 72, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 72, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 232, + "parent" : 1 + }, + { + "command" : 4, + "file" : 0, + "line" : 85, + "parent" : 1 + }, + { + "command" : 3, + "file" : 2, + "line" : 43, + "parent" : 4 + }, + { + "command" : 3, + "file" : 2, + "line" : 68, + "parent" : 4 + }, + { + "command" : 5, + "file" : 0, + "line" : 274, + "parent" : 1 + }, + { + "command" : 5, + "file" : 2, + "line" : 85, + "parent" : 4 + }, + { + "command" : 5, + "file" : 2, + "line" : 86, + "parent" : 4 + }, + { + "command" : 6, + "file" : 0, + "line" : 262, + "parent" : 1 + }, + { + "command" : 7, + "file" : 0, + "line" : 77, + "parent" : 1 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always" + }, + { + "backtrace" : 5, + "fragment" : "-Wall" + }, + { + "backtrace" : 5, + "fragment" : "-Wextra" + }, + { + "backtrace" : 5, + "fragment" : "-Wshadow" + }, + { + "backtrace" : 5, + "fragment" : "-Wnon-virtual-dtor" + }, + { + "backtrace" : 5, + "fragment" : "-Wcast-align" + }, + { + "backtrace" : 5, + "fragment" : "-Wunused" + }, + { + "backtrace" : 5, + "fragment" : "-Woverloaded-virtual" + }, + { + "backtrace" : 5, + "fragment" : "-Wconversion" + }, + { + "backtrace" : 5, + "fragment" : "-Wsign-conversion" + }, + { + "backtrace" : 5, + "fragment" : "-Wdouble-promotion" + }, + { + "backtrace" : 5, + "fragment" : "-Wformat=2" + }, + { + "backtrace" : 5, + "fragment" : "-Wimplicit-fallthrough" + }, + { + "backtrace" : 5, + "fragment" : "-Wsuggest-override" + }, + { + "backtrace" : 5, + "fragment" : "-Wnull-dereference" + }, + { + "backtrace" : 5, + "fragment" : "-Wold-style-cast" + }, + { + "backtrace" : 5, + "fragment" : "-Wpedantic" + }, + { + "backtrace" : 6, + "fragment" : "-Wmisleading-indentation" + }, + { + "backtrace" : 6, + "fragment" : "-Wduplicated-cond" + }, + { + "backtrace" : 6, + "fragment" : "-Wlogical-op" + }, + { + "backtrace" : 6, + "fragment" : "-Wduplicated-branches" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "SFML_STATIC" + }, + { + "backtrace" : 8, + "define" : "_CRT_SECURE_NO_WARNINGS" + }, + { + "backtrace" : 9, + "define" : "_WINSOCK_DEPRECATED_NO_WARNINGS" + } + ], + "includes" : + [ + { + "backtrace" : 10, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include" + }, + { + "backtrace" : 10, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 11 + ], + "standard" : "20" + }, + "sourceIndexes" : + [ + 2, + 5, + 11, + 13, + 21, + 22, + 25, + 28, + 30, + 33 + ] + } + ], + "folder" : + { + "name" : "SFML" + }, + "id" : "sfml-system::@8cb1db2982443611e568", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "lib" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/MiniHW2" + } + }, + "name" : "sfml-system", + "nameOnDisk" : "libsfml-system-s-d.a", + "paths" : + { + "build" : "_deps/sfml-build/src/SFML/System", + "source" : "cmake-build-debug/_deps/sfml-src/src/SFML/System" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32 + ] + }, + { + "name" : "windows", + "sourceIndexes" : + [ + 33, + 34 + ] + } + ], + "sources" : + [ + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/Angle.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/Angle.inl", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/System/Clock.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/Clock.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/System/EnumArray.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/System/Err.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/Err.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/Exception.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/Export.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/InputStream.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/NativeActivity.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/System/Sleep.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/Sleep.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/System/String.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/String.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/String.inl", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/Time.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/Time.inl", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/Utf.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/Utf.inl", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/System/Utils.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/System/Utils.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/System/Vector2.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/Vector2.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/Vector2.inl", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/System/Vector3.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/Vector3.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/Vector3.inl", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/System/FileInputStream.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/FileInputStream.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/System/MemoryInputStream.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/MemoryInputStream.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/System/SuspendAwareClock.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/System/Win32/SleepImpl.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/System/Win32/SleepImpl.hpp", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-sfml-window-Debug-bf8fa10a50baa73b18e3.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-sfml-window-Debug-bf8fa10a50baa73b18e3.json new file mode 100644 index 00000000..ac521a38 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-sfml-window-Debug-bf8fa10a50baa73b18e3.json @@ -0,0 +1,749 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "_deps/sfml-build/lib/libsfml-window-s-d.a" + } + ], + "backtrace" : 2, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "sfml_add_library", + "install", + "target_link_libraries", + "target_compile_options", + "set_target_warnings", + "target_compile_definitions", + "target_include_directories", + "target_compile_features" + ], + "files" : + [ + "cmake-build-debug/_deps/sfml-src/cmake/Macros.cmake", + "cmake-build-debug/_deps/sfml-src/src/SFML/Window/CMakeLists.txt", + "cmake-build-debug/_deps/sfml-src/cmake/CompilerWarnings.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 269, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 72, + "parent" : 1 + }, + { + "command" : 2, + "file" : 0, + "line" : 232, + "parent" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 283, + "parent" : 0 + }, + { + "command" : 5, + "file" : 0, + "line" : 85, + "parent" : 1 + }, + { + "command" : 4, + "file" : 2, + "line" : 43, + "parent" : 5 + }, + { + "command" : 4, + "file" : 2, + "line" : 68, + "parent" : 5 + }, + { + "command" : 6, + "file" : 0, + "line" : 274, + "parent" : 1 + }, + { + "command" : 6, + "file" : 2, + "line" : 85, + "parent" : 5 + }, + { + "command" : 6, + "file" : 2, + "line" : 86, + "parent" : 5 + }, + { + "command" : 7, + "file" : 0, + "line" : 262, + "parent" : 1 + }, + { + "command" : 7, + "file" : 1, + "line" : 286, + "parent" : 0 + }, + { + "command" : 7, + "file" : 1, + "line" : 295, + "parent" : 0 + }, + { + "command" : 8, + "file" : 0, + "line" : 77, + "parent" : 1 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always" + }, + { + "backtrace" : 6, + "fragment" : "-Wall" + }, + { + "backtrace" : 6, + "fragment" : "-Wextra" + }, + { + "backtrace" : 6, + "fragment" : "-Wshadow" + }, + { + "backtrace" : 6, + "fragment" : "-Wnon-virtual-dtor" + }, + { + "backtrace" : 6, + "fragment" : "-Wcast-align" + }, + { + "backtrace" : 6, + "fragment" : "-Wunused" + }, + { + "backtrace" : 6, + "fragment" : "-Woverloaded-virtual" + }, + { + "backtrace" : 6, + "fragment" : "-Wconversion" + }, + { + "backtrace" : 6, + "fragment" : "-Wsign-conversion" + }, + { + "backtrace" : 6, + "fragment" : "-Wdouble-promotion" + }, + { + "backtrace" : 6, + "fragment" : "-Wformat=2" + }, + { + "backtrace" : 6, + "fragment" : "-Wimplicit-fallthrough" + }, + { + "backtrace" : 6, + "fragment" : "-Wsuggest-override" + }, + { + "backtrace" : 6, + "fragment" : "-Wnull-dereference" + }, + { + "backtrace" : 6, + "fragment" : "-Wold-style-cast" + }, + { + "backtrace" : 6, + "fragment" : "-Wpedantic" + }, + { + "backtrace" : 7, + "fragment" : "-Wmisleading-indentation" + }, + { + "backtrace" : 7, + "fragment" : "-Wduplicated-cond" + }, + { + "backtrace" : 7, + "fragment" : "-Wlogical-op" + }, + { + "backtrace" : 7, + "fragment" : "-Wduplicated-branches" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "SFML_STATIC" + }, + { + "backtrace" : 9, + "define" : "_CRT_SECURE_NO_WARNINGS" + }, + { + "backtrace" : 10, + "define" : "_WINSOCK_DEPRECATED_NO_WARNINGS" + } + ], + "includes" : + [ + { + "backtrace" : 11, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src" + }, + { + "backtrace" : 11, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include" + }, + { + "backtrace" : 12, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include" + }, + { + "backtrace" : 13, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 14 + ], + "standard" : "20" + }, + "sourceIndexes" : + [ + 1, + 3, + 5, + 9, + 11, + 18, + 20, + 23, + 25, + 27, + 29, + 31, + 33, + 36, + 39, + 41, + 46, + 49, + 51, + 52, + 53, + 56, + 58, + 59, + 60, + 62 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "sfml-system::@8cb1db2982443611e568" + } + ], + "folder" : + { + "name" : "SFML" + }, + "id" : "sfml-window::@5730451e331e3690ae65", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "lib" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/MiniHW2" + } + }, + "name" : "sfml-window", + "nameOnDisk" : "libsfml-window-s-d.a", + "paths" : + { + "build" : "_deps/sfml-build/src/SFML/Window", + "source" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47 + ] + }, + { + "name" : "windows", + "sourceIndexes" : + [ + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63 + ] + } + ], + "sources" : + [ + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Window/Clipboard.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Clipboard.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/ClipboardImpl.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Context.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Window/Context.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Cursor.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Window/Cursor.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/CursorImpl.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Window/Export.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/GlContext.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/GlContext.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/GlResource.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Window/GlResource.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Window/ContextSettings.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Window/Event.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Window/Event.inl", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/InputImpl.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Window/Joystick.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Joystick.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/JoystickImpl.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/JoystickManager.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/JoystickManager.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Window/Keyboard.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Keyboard.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Window/Mouse.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Mouse.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Window/Touch.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Touch.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Window/Sensor.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Sensor.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/SensorImpl.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/SensorManager.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/SensorManager.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/VideoMode.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Window/VideoMode.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/VideoModeImpl.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Vulkan.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Window/Vulkan.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/VulkanImpl.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Window.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Window/Window.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/WindowBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Window/WindowBase.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Window/WindowBase.inl", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Window/WindowEnums.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/include/SFML/Window/WindowHandle.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/WindowImpl.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/WindowImpl.hpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/CursorImpl.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/CursorImpl.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/ClipboardImpl.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/ClipboardImpl.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/InputImpl.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/JoystickImpl.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/JoystickImpl.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/SensorImpl.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/SensorImpl.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/Utils.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/VideoModeImpl.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/VulkanImplWin32.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/WindowImplWin32.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/WindowImplWin32.hpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/WglContext.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 2, + "path" : "cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/WglContext.hpp", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-vorbis-Debug-1443cb5355c6e2349762.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-vorbis-Debug-1443cb5355c6e2349762.json new file mode 100644 index 00000000..2d569f6d --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-vorbis-Debug-1443cb5355c6e2349762.json @@ -0,0 +1,430 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "_deps/sfml-build/lib/libvorbisd.a" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "target_include_directories" + ], + "files" : + [ + "cmake-build-debug/_deps/vorbis-src/lib/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 77, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 117, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 108, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 88, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -fdiagnostics-color=always" + } + ], + "includes" : + [ + { + "backtrace" : 4, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include" + }, + { + "backtrace" : 4, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include" + } + ], + "language" : "C", + "sourceIndexes" : + [ + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 3, + "id" : "ogg::@4e5ed7d02827854e35f8" + } + ], + "folder" : + { + "name" : "Dependencies" + }, + "id" : "vorbis::@692b0ee2b61df6760d20", + "install" : + { + "destinations" : + [ + { + "backtrace" : 2, + "path" : "lib" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/MiniHW2" + } + }, + "name" : "vorbis", + "nameOnDisk" : "libvorbisd.a", + "paths" : + { + "build" : "_deps/vorbis-build/lib", + "source" : "cmake-build-debug/_deps/vorbis-src/lib" + }, + "sourceGroups" : + [ + { + "name" : "Header Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40 + ] + } + ], + "sources" : + [ + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/envelope.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/lpc.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/lsp.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/codebook.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/misc.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/psy.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/masking.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/os.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/mdct.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/smallft.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/highlevel.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/registry.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/scales.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/window.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/lookup.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/lookup_data.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/codec_internal.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/backends.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/bitrate.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/mdct.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/smallft.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/block.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/envelope.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/window.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/lsp.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/lpc.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/analysis.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/synthesis.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/psy.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/info.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/floor1.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/floor0.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/res0.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/mapping0.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/registry.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/codebook.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/sharedbook.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/lookup.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/bitrate.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/vorbisenc.c", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/win32/vorbis.def", + "sourceGroupIndex" : 1 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-vorbisenc-Debug-d8d923141a4c2404c945.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-vorbisenc-Debug-d8d923141a4c2404c945.json new file mode 100644 index 00000000..dc33851b --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-vorbisenc-Debug-d8d923141a4c2404c945.json @@ -0,0 +1,155 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "_deps/sfml-build/lib/libvorbisencd.a" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "target_include_directories" + ], + "files" : + [ + "cmake-build-debug/_deps/vorbis-src/lib/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 78, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 117, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 112, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 95, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -fdiagnostics-color=always" + } + ], + "includes" : + [ + { + "backtrace" : 4, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include" + } + ], + "language" : "C", + "sourceIndexes" : + [ + 0 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 3, + "id" : "ogg::@4e5ed7d02827854e35f8" + }, + { + "backtrace" : 3, + "id" : "vorbis::@692b0ee2b61df6760d20" + } + ], + "folder" : + { + "name" : "Dependencies" + }, + "id" : "vorbisenc::@692b0ee2b61df6760d20", + "install" : + { + "destinations" : + [ + { + "backtrace" : 2, + "path" : "lib" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/MiniHW2" + } + }, + "name" : "vorbisenc", + "nameOnDisk" : "libvorbisencd.a", + "paths" : + { + "build" : "_deps/vorbis-build/lib", + "source" : "cmake-build-debug/_deps/vorbis-src/lib" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/vorbisenc.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/win32/vorbisenc.def", + "sourceGroupIndex" : 0 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-vorbisfile-Debug-9ef62c5cbd0da5ea29b8.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-vorbisfile-Debug-9ef62c5cbd0da5ea29b8.json new file mode 100644 index 00000000..d570265e --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/target-vorbisfile-Debug-9ef62c5cbd0da5ea29b8.json @@ -0,0 +1,151 @@ +{ + "archive" : {}, + "artifacts" : + [ + { + "path" : "_deps/sfml-build/lib/libvorbisfiled.a" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "target_include_directories" + ], + "files" : + [ + "cmake-build-debug/_deps/vorbis-src/lib/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 79, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 117, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 113, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 102, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-g -fdiagnostics-color=always" + } + ], + "includes" : + [ + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include" + }, + { + "backtrace" : 3, + "isSystem" : true, + "path" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include" + } + ], + "language" : "C", + "sourceIndexes" : + [ + 0 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 3, + "id" : "ogg::@4e5ed7d02827854e35f8" + }, + { + "backtrace" : 3, + "id" : "vorbis::@692b0ee2b61df6760d20" + } + ], + "folder" : + { + "name" : "Dependencies" + }, + "id" : "vorbisfile::@692b0ee2b61df6760d20", + "install" : + { + "destinations" : + [ + { + "backtrace" : 2, + "path" : "lib" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/MiniHW2" + } + }, + "name" : "vorbisfile", + "nameOnDisk" : "libvorbisfiled.a", + "paths" : + { + "build" : "_deps/vorbis-build/lib", + "source" : "cmake-build-debug/_deps/vorbis-src/lib" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "cmake-build-debug/_deps/vorbis-src/lib/vorbisfile.c", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "cmake-build-debug/_deps/vorbis-src/win32/vorbisfile.def", + "sourceGroupIndex" : 0 + } + ], + "type" : "STATIC_LIBRARY" +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-d616b35393658a55ac6b.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-d616b35393658a55ac6b.json new file mode 100644 index 00000000..787c1bfc --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.cmake/api/v1/reply/toolchains-v1-d616b35393658a55ac6b.json @@ -0,0 +1,93 @@ +{ + "kind" : "toolchains", + "toolchains" : + [ + { + "compiler" : + { + "id" : "GNU", + "implicit" : + { + "includeDirectories" : + [ + "G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include", + "G:/CLion 2024.3/bin/mingw/include", + "G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed", + "G:/CLion 2024.3/bin/mingw/x86_64-w64-mingw32/include" + ], + "linkDirectories" : [], + "linkFrameworkDirectories" : [], + "linkLibraries" : [] + }, + "path" : "G:/CLion 2024.3/bin/mingw/bin/gcc.exe", + "version" : "13.1.0" + }, + "language" : "C", + "sourceFileExtensions" : + [ + "c", + "m" + ] + }, + { + "compiler" : + { + "id" : "GNU", + "implicit" : + { + "includeDirectories" : + [ + "G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++", + "G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32", + "G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward", + "G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include", + "G:/CLion 2024.3/bin/mingw/include", + "G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed", + "G:/CLion 2024.3/bin/mingw/x86_64-w64-mingw32/include" + ], + "linkDirectories" : [], + "linkFrameworkDirectories" : [], + "linkLibraries" : [] + }, + "path" : "G:/CLion 2024.3/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" : "G:/CLion 2024.3/bin/mingw/bin/windres.exe" + }, + "language" : "RC", + "sourceFileExtensions" : + [ + "rc", + "RC" + ] + } + ], + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.ninja_deps b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.ninja_deps new file mode 100644 index 00000000..d49f3f3a Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.ninja_deps differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/.ninja_log b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.ninja_log new file mode 100644 index 00000000..7a531981 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/.ninja_log @@ -0,0 +1,121 @@ +# ninja log v6 +112 2622 7658495684436873 _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Vector2.cpp.obj 556e13253a7a0e43 +205 2679 7658495685372695 _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/MemoryInputStream.cpp.obj 9e65d39fa305a0c1 +41 2743 7658495683728952 _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Err.cpp.obj e2ccd54fddea1dd6 +124 2790 7658495684562190 _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Vector3.cpp.obj bf75cc68bace45f0 +353 4464 7658495686847248 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Context.cpp.obj bc52dd7f83ca7b73 +283 4483 7658495686153669 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Clipboard.cpp.obj 62d6f9d215c72a9a +70 4569 7658495684019994 _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/String.cpp.obj 82ccb459f92bb45b +2790 4633 7658495711222305 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Keyboard.cpp.obj 8fb63de31826d79b +93 4649 7658495684251125 _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Utils.cpp.obj a44ba75957c48def +429 4672 7658495687663954 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Cursor.cpp.obj 9bd5063f4cbba2dd +4483 4872 7658495728149833 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Touch.cpp.obj e1b900373f021a79 +4465 4898 7658495727974292 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Mouse.cpp.obj ea48118799d9ed41 +146 5030 7658495684782698 _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/FileInputStream.cpp.obj cbbe2d91871f9788 +4570 5060 7658495729018147 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Sensor.cpp.obj 9f542f5044535bd3 +24 5077 7658495683561003 _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Clock.cpp.obj 1e1a3b7280c62a04 +56 5160 7658495683874174 _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Sleep.cpp.obj d58f99c1e49fedd8 +2624 5274 7658495709566800 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/GlResource.cpp.obj 235ba0e4fbc2afe5 +4672 5315 7658495730040602 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Vulkan.cpp.obj c4434d682184a54b +4633 5680 7658495729649229 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/SensorManager.cpp.obj ec13a564717345a9 +5315 5698 7658495736480059 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/SensorImpl.cpp.obj 4a125f2fb0cd6f10 +4649 5745 7658495729819845 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/VideoMode.cpp.obj d63c5da04b7200a8 +243 6280 7658495685746391 _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Win32/SleepImpl.cpp.obj 171d3f924d544d47 +2680 6704 7658495710118123 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Joystick.cpp.obj b6d41bf70538d4b1 +6283 7058 7658495746148027 _deps/sfml-build/lib/libsfml-system-s-d.a 73fab3fd8db33321 +2744 7130 7658495710764682 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/JoystickManager.cpp.obj 958ce5268cc7dc6e +506 7482 7658495688376726 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/GlContext.cpp.obj 4e90f779d7745747 +5680 8100 7658495740129870 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/VideoModeImpl.cpp.obj ba8dccb811e6c827 +5078 8180 7658495734098476 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/ClipboardImpl.cpp.obj cfd2b225ea302f2d +5060 8223 7658495733928167 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/CursorImpl.cpp.obj d3718b33befe2a4b +4898 8244 7658495732308234 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/WindowBase.cpp.obj 235ac747a01b497e +5698 8264 7658495740300722 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/VulkanImplWin32.cpp.obj e148fed11b27d0b6 +4872 8288 7658495732042048 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Window.cpp.obj bb63e24979ca097e +7482 8312 7658495758150380 _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbbox.c.obj 6067e858670baf4d +7058 8351 7658495753902795 _deps/freetype-build/CMakeFiles/freetype.dir/src/autofit/autofit.c.obj 15b4f04e2c78c666 +7130 8406 7658495754619297 _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbase.c.obj 78535be16540ee0f +8223 8592 7658495765556619 _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftcid.c.obj 7ef48cd04877c5f3 +8100 8613 7658495764318163 _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbdf.c.obj 40da6cdfcd61457c +8180 8628 7658495765129894 _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbitmap.c.obj cddbc2fde4b5eb2d +8264 8642 7658495765973188 _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftgasp.c.obj 47fc1128edfc342f +8313 8668 7658495766449290 _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftgxval.c.obj 52e7ec21ca0911f3 +8245 8720 7658495765767420 _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftfstype.c.obj c455ab698bd27fc7 +8289 8811 7658495766203957 _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftglyph.c.obj d5ea1695ad189df8 +8352 8873 7658495766835049 _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftinit.c.obj 1e94a53ce23ae73c +8408 8892 7658495767402755 _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftmm.c.obj bc704065a3790152 +8592 9053 7658495769243779 _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftotval.c.obj 3b34c094c5367ff1 +8613 9070 7658495769449056 _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftpatent.c.obj 7076b4b3ece7b503 +8628 9091 7658495769610694 _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftpfr.c.obj 4026a283ac9e38e0 +8720 9114 7658495770524154 _deps/freetype-build/CMakeFiles/freetype.dir/src/base/fttype1.c.obj 46f138288fc072 +8668 9179 7658495770002473 _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftsynth.c.obj c7532e5b0f1481cb +8642 9196 7658495769741122 _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftstroke.c.obj db3d1041ad418a50 +8811 9214 7658495771463064 _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftwinfnt.c.obj bc1bc4077f0db6f0 +8892 9228 7658495772245491 _deps/freetype-build/CMakeFiles/freetype.dir/src/bzip2/ftbzip2.c.obj 3002fc37154963d4 +8873 9537 7658495772049259 _deps/freetype-build/CMakeFiles/freetype.dir/src/bdf/bdf.c.obj 1d91e95baa031453 +9091 9842 7658495774226564 _deps/freetype-build/CMakeFiles/freetype.dir/src/cid/type1cid.c.obj b91b948a71aaa30e +9180 9877 7658495775128964 _deps/freetype-build/CMakeFiles/freetype.dir/src/lzw/ftlzw.c.obj 5542bbf33468c8a +9053 9904 7658495773849608 _deps/freetype-build/CMakeFiles/freetype.dir/src/cache/ftcache.c.obj 3dbd77e4b8e7fd6f +9115 9939 7658495774467485 _deps/freetype-build/CMakeFiles/freetype.dir/src/gzip/ftgzip.c.obj c0d97a8fd5a83ed0 +9197 9980 7658495775284755 _deps/freetype-build/CMakeFiles/freetype.dir/src/pcf/pcf.c.obj 611fd235a48cb174 +9214 10006 7658495775465242 _deps/freetype-build/CMakeFiles/freetype.dir/src/pfr/pfr.c.obj 50ebb5bce6b92da6 +5160 10042 7658495734920578 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/InputImpl.cpp.obj a9004e6e399e2ffc +9070 10065 7658495774020753 _deps/freetype-build/CMakeFiles/freetype.dir/src/cff/cff.c.obj c95a132a5a362498 +9537 10319 7658495778699102 _deps/freetype-build/CMakeFiles/freetype.dir/src/pshinter/pshinter.c.obj 4134acf7f760b921 +9228 10375 7658495775610911 _deps/freetype-build/CMakeFiles/freetype.dir/src/psaux/psaux.c.obj cfae4c9a2ee1c284 +10006 10620 7658495783389014 _deps/freetype-build/CMakeFiles/freetype.dir/src/svg/svg.c.obj 72704c146d657905 +9843 10644 7658495781748796 _deps/freetype-build/CMakeFiles/freetype.dir/src/psnames/psnames.c.obj 62d6608282e8202d +9878 10692 7658495782099484 _deps/freetype-build/CMakeFiles/freetype.dir/src/raster/raster.c.obj 6919315bec3cb09c +9981 10710 7658495783128407 _deps/freetype-build/CMakeFiles/freetype.dir/src/smooth/smooth.c.obj a9f4095dbdb9eacc +9905 10728 7658495782365364 _deps/freetype-build/CMakeFiles/freetype.dir/src/sdf/sdf.c.obj 56ea26580b8b2165 +10376 10786 7658495787075765 _deps/freetype-build/CMakeFiles/freetype.dir/src/winfonts/winfnt.c.obj 52d27d046608d699 +10320 10817 7658495786519398 _deps/freetype-build/CMakeFiles/freetype.dir/src/type42/type42.c.obj d8456e721aef2680 +10645 10873 7658495789773736 _deps/freetype-build/CMakeFiles/freetype.dir/builds/windows/ftdebug.c.obj 987b77808973e036 +10065 10905 7658495783975401 _deps/freetype-build/CMakeFiles/freetype.dir/src/type1/type1.c.obj e6906846c14b6d9e +10710 10974 7658495790431506 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/BlendMode.cpp.obj 8c79401b94cc1330 +10693 11001 7658495790245686 _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftver.rc.obj d0da501886473519 +5745 11058 7658495740777112 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/WindowImplWin32.cpp.obj bb26d8b4add800a +9939 11455 7658495782722752 _deps/freetype-build/CMakeFiles/freetype.dir/src/sfnt/sfnt.c.obj 1e5046f284808d53 +10042 11567 7658495783744754 _deps/freetype-build/CMakeFiles/freetype.dir/src/truetype/truetype.c.obj 7670afc3837e4b0c +6706 11626 7658495750375989 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/WglContext.cpp.obj 5ba7cba99a72b7e5 +5274 11641 7658495736063933 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/JoystickImpl.cpp.obj 509c9cb7a1d5264b +5030 11661 7658495733622716 _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/WindowImpl.cpp.obj 743bd8cc5e922099 +10786 11694 7658495791175101 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Glsl.cpp.obj 70d80b02b2734b6e +10974 11726 7658495793074723 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderStates.cpp.obj c8854b2969805cc +10620 11752 7658495789528293 _deps/freetype-build/CMakeFiles/freetype.dir/builds/windows/ftsystem.c.obj 27ab50bfcd41d818 +11626 11781 7658495799591417 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/StencilMode.cpp.obj 6b3ec244eeaa2df0 +11727 12959 7658495800590925 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Transform.cpp.obj b294c0bfb9d38614 +11752 13016 7658495800846751 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Transformable.cpp.obj 7b5dfded7007c285 +11782 13426 7658495801137992 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/View.cpp.obj 89755ccabf7b5eba +11661 13668 7658495799929062 _deps/sfml-build/lib/libsfml-window-s-d.a 946ffec69cb427ed +10817 13829 7658495791499300 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/GLCheck.cpp.obj 8ad7d8e2d83421cd +10874 13884 7658495792066638 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/GLExtensions.cpp.obj e6fbaf58c57699ae +11001 14036 7658495793330800 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTexture.cpp.obj b0d8e472a6fa1ec2 +11694 15223 7658495800264788 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/TextureSaver.cpp.obj 2e1bd937249e788f +13016 15242 7658495813475969 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/CircleShape.cpp.obj 4da4dc6ad72e28ba +13426 15264 7658495817576903 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RectangleShape.cpp.obj b6b8cea66599a016 +10728 15503 7658495790602462 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Font.cpp.obj 5d77727eb43aea45 +14037 15532 7658495823693610 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/VertexArray.cpp.obj b7b74c9f85146060 +11058 15548 7658495793908118 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTarget.cpp.obj e40d304dbda8a679 +13668 15696 7658495820008173 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/ConvexShape.cpp.obj e4bae4b9b22f2b13 +11456 15928 7658495798035446 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderWindow.cpp.obj 9d1962ddbd7835a +15503 15967 7658495838349971 _deps/sfml-build/lib/libfreetyped.a 7b338ed00d97ab01 +12960 15988 7658495812919428 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Shape.cpp.obj 3b2800f4e5f37f56 +10905 16551 7658495792373344 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Image.cpp.obj 5dd59f92f15069c5 +11567 16566 7658495799392747 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Shader.cpp.obj 5dbc774855983a9a +13829 16631 7658495821611510 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Sprite.cpp.obj ac53f2e87a8e71ef +11641 16702 7658495799733535 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Texture.cpp.obj 5b2fabe541101d61 +13884 16773 7658495822163146 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Text.cpp.obj c8037c23380f5652 +15264 16970 7658495835963826 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTextureImplDefault.cpp.obj 44e152500217aa5c +15224 17581 7658495835552238 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/VertexBuffer.cpp.obj 65c215746c22a42e +15242 17742 7658495835753430 _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTextureImplFBO.cpp.obj 74e8554013a6aa36 +26 1063 7658496374846336 _deps/sfml-build/lib/libsfml-graphics-s-d.a 23eaf18ad3d5d0f2 +18 1784 7658496469880951 CMakeFiles/MiniHW2.dir/main.cpp.obj 8bd369b2b95919b0 +1784 3766 7658496487549250 MiniHW2.exe 6f6825fe27ca0d8c +19 1700 7658499751190753 CMakeFiles/MiniHW2.dir/main.cpp.obj 8bd369b2b95919b0 +1700 3112 7658499768003297 MiniHW2.exe 6f6825fe27ca0d8c +17 1506 7658499931960936 CMakeFiles/MiniHW2.dir/main.cpp.obj 8bd369b2b95919b0 +1506 2839 7658499946853138 MiniHW2.exe 6f6825fe27ca0d8c +18 1520 7658500421007383 CMakeFiles/MiniHW2.dir/main.cpp.obj 8bd369b2b95919b0 +1520 3042 7658500436034703 MiniHW2.exe 6f6825fe27ca0d8c +17 1503 7658501393714346 CMakeFiles/MiniHW2.dir/main.cpp.obj 8bd369b2b95919b0 +1504 2767 7658501408576943 MiniHW2.exe 6f6825fe27ca0d8c diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/Arial.ttf b/sem2/fedotow-p/MiniHW2/cmake-build-debug/Arial.ttf new file mode 100644 index 00000000..7ff88f22 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/Arial.ttf differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeCache.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeCache.txt new file mode 100644 index 00000000..75f223ff --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeCache.txt @@ -0,0 +1,874 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug +# It was generated by CMake: G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=G:/CLion 2024.3/bin/mingw/bin/addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=G:/CLion 2024.3/bin/mingw/bin/ar.exe + +//Choose the type of build (Debug or Release) +CMAKE_BUILD_TYPE:STRING=Debug + +//Enable colored diagnostics throughout. +CMAKE_COLOR_DIAGNOSTICS:BOOL=ON + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=G:/CLion 2024.3/bin/mingw/bin/g++.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=G:/CLion 2024.3/bin/mingw/bin/gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=G:/CLion 2024.3/bin/mingw/bin/gcc-ranlib.exe + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + +//C compiler +CMAKE_C_COMPILER:FILEPATH=G:/CLion 2024.3/bin/mingw/bin/gcc.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=G:/CLion 2024.3/bin/mingw/bin/gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=G:/CLion 2024.3/bin/mingw/bin/gcc-ranlib.exe + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by default with all C applications. +CMAKE_C_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=G:/CLion 2024.3/bin/mingw/bin/dlltool.exe + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/pkgRedirects + +//Convert GNU import libraries to MS format (requires Visual Studio) +CMAKE_GNUtoMS:BOOL=OFF + +//User executables (bin) +CMAKE_INSTALL_BINDIR:PATH=bin + +//Read-only architecture-independent data (DATAROOTDIR) +CMAKE_INSTALL_DATADIR:PATH= + +//Read-only architecture-independent data root (share) +CMAKE_INSTALL_DATAROOTDIR:PATH=share + +//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) +CMAKE_INSTALL_DOCDIR:PATH= + +//C header files (include) +CMAKE_INSTALL_INCLUDEDIR:PATH=include + +//Info documentation (DATAROOTDIR/info) +CMAKE_INSTALL_INFODIR:PATH= + +//Object code libraries (lib) +CMAKE_INSTALL_LIBDIR:PATH=lib + +//Program executables (libexec) +CMAKE_INSTALL_LIBEXECDIR:PATH=libexec + +//Locale-dependent data (DATAROOTDIR/locale) +CMAKE_INSTALL_LOCALEDIR:PATH= + +//Modifiable single-machine data (var) +CMAKE_INSTALL_LOCALSTATEDIR:PATH=var + +//Man documentation (DATAROOTDIR/man) +CMAKE_INSTALL_MANDIR:PATH= + +//C header files for non-gcc (/usr/include) +CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/MiniHW2 + +//Run-time variable data (LOCALSTATEDIR/run) +CMAKE_INSTALL_RUNSTATEDIR:PATH= + +//System admin executables (sbin) +CMAKE_INSTALL_SBINDIR:PATH=sbin + +//Modifiable architecture-independent data (com) +CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com + +//Read-only single-machine data (etc) +CMAKE_INSTALL_SYSCONFDIR:PATH=etc + +//Path to a program. +CMAKE_LINKER:FILEPATH=G:/CLion 2024.3/bin/mingw/bin/ld.exe + +//make program +CMAKE_MAKE_PROGRAM:FILEPATH=G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=G:/CLion 2024.3/bin/mingw/bin/nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=G:/CLion 2024.3/bin/mingw/bin/objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=G:/CLion 2024.3/bin/mingw/bin/objdump.exe + +//The minimal iOS version that will be able to run the built binaries. +// Cannot be lower than 13.0 +CMAKE_OSX_DEPLOYMENT_TARGET:STRING=13.0 + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=MiniHW2 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=3.0.0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=3 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=G:/CLion 2024.3/bin/mingw/bin/ranlib.exe + +//RC compiler +CMAKE_RC_COMPILER:FILEPATH=G:/CLion 2024.3/bin/mingw/bin/windres.exe + +//Flags for Windows Resource Compiler during all build types. +CMAKE_RC_FLAGS:STRING= + +//Flags for Windows Resource Compiler during DEBUG builds. +CMAKE_RC_FLAGS_DEBUG:STRING= + +//Flags for Windows Resource Compiler during MINSIZEREL builds. +CMAKE_RC_FLAGS_MINSIZEREL:STRING= + +//Flags for Windows Resource Compiler during RELEASE builds. +CMAKE_RC_FLAGS_RELEASE:STRING= + +//Flags for Windows Resource Compiler during RELWITHDEBINFO builds. +CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_READELF:FILEPATH=G:/CLion 2024.3/bin/mingw/bin/readelf.exe + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=G:/CLion 2024.3/bin/mingw/bin/strip.exe + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Enable to build 7-Zip packages +CPACK_BINARY_7Z:BOOL=OFF + +//Enable to build IFW packages +CPACK_BINARY_IFW:BOOL=OFF + +//Enable to build Inno Setup packages +CPACK_BINARY_INNOSETUP:BOOL=OFF + +//Enable to build NSIS packages +CPACK_BINARY_NSIS:BOOL=ON + +//Enable to build NuGet packages +CPACK_BINARY_NUGET:BOOL=OFF + +//Enable to build WiX packages +CPACK_BINARY_WIX:BOOL=OFF + +//Enable to build ZIP packages +CPACK_BINARY_ZIP:BOOL=OFF + +//Enable to build 7-Zip source packages +CPACK_SOURCE_7Z:BOOL=ON + +//Enable to build ZIP source packages +CPACK_SOURCE_ZIP:BOOL=ON + +//Set FLAC__BYTES_PER_WORD to 8, for 64-bit machines. For 32-bit +// machines, turning this off might give a tiny speed improvement +ENABLE_64_BIT_WORDS:BOOL=ON + +//Enable -Werror in all Makefiles +ENABLE_WERROR:BOOL=OFF + +//Directory under which to collect all populated content +FETCHCONTENT_BASE_DIR:PATH=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps + +//Disables all attempts to download or update content and assumes +// source dirs already exist +FETCHCONTENT_FULLY_DISCONNECTED:BOOL=OFF + +//Enables QUIET option for all content population +FETCHCONTENT_QUIET:BOOL=ON + +//When not empty, overrides where to find pre-populated content +// for flac +FETCHCONTENT_SOURCE_DIR_FLAC:PATH= + +//When not empty, overrides where to find pre-populated content +// for Freetype +FETCHCONTENT_SOURCE_DIR_FREETYPE:PATH= + +//When not empty, overrides where to find pre-populated content +// for ogg +FETCHCONTENT_SOURCE_DIR_OGG:PATH= + +//When not empty, overrides where to find pre-populated content +// for SFML +FETCHCONTENT_SOURCE_DIR_SFML:PATH= + +//When not empty, overrides where to find pre-populated content +// for vorbis +FETCHCONTENT_SOURCE_DIR_VORBIS:PATH= + +//Enables UPDATE_DISCONNECTED behavior for all content population +FETCHCONTENT_UPDATES_DISCONNECTED:BOOL=OFF + +//Enables UPDATE_DISCONNECTED behavior just for population of flac +FETCHCONTENT_UPDATES_DISCONNECTED_FLAC:BOOL=OFF + +//Enables UPDATE_DISCONNECTED behavior just for population of Freetype +FETCHCONTENT_UPDATES_DISCONNECTED_FREETYPE:BOOL=OFF + +//Enables UPDATE_DISCONNECTED behavior just for population of ogg +FETCHCONTENT_UPDATES_DISCONNECTED_OGG:BOOL=OFF + +//Enables UPDATE_DISCONNECTED behavior just for population of SFML +FETCHCONTENT_UPDATES_DISCONNECTED_SFML:BOOL=OFF + +//Enables UPDATE_DISCONNECTED behavior just for population of vorbis +FETCHCONTENT_UPDATES_DISCONNECTED_VORBIS:BOOL=OFF + +//Value Computed by CMake +FLAC_BINARY_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build + +//Value Computed by CMake +FLAC_IS_TOP_LEVEL:STATIC=OFF + +//Dependencies for the target +FLAC_LIB_DEPENDS:STATIC=general;Ogg::ogg; + +//Value Computed by CMake +FLAC_SOURCE_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src + +//Git command line client +GIT_EXECUTABLE:FILEPATH=C:/Program Files/Git/cmd/git.exe + +//Path to a program. +HAVE_GIT:FILEPATH=C:/Program Files/Git/cmd/git.exe + +//Install CMake package-config module +INSTALL_CMAKE_CONFIG_MODULE:BOOL=ON + +//Install CMake package configiguration module +INSTALL_CMAKE_PACKAGE_MODULE:BOOL=ON + +//Value Computed by CMake +MiniHW2_BINARY_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug + +//Value Computed by CMake +MiniHW2_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +MiniHW2_SOURCE_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2 + +//OpenGL library for win32 +OPENGL_gl_LIBRARY:STRING=opengl32 + +//GLU library for win32 +OPENGL_glu_LIBRARY:STRING=glu32 + +//Arguments to supply to pkg-config +PKG_CONFIG_ARGN:STRING= + +//pkg-config executable +PKG_CONFIG_EXECUTABLE:FILEPATH=PKG_CONFIG_EXECUTABLE-NOTFOUND + +//Value Computed by CMake +SFML_BINARY_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build + +//ON to build SFML's Audio module. +SFML_BUILD_AUDIO:BOOL=ON + +//ON to build SFML's Graphics module. +SFML_BUILD_GRAPHICS:BOOL=ON + +//ON to build SFML's Network module. +SFML_BUILD_NETWORK:BOOL=ON + +//ON to build SFML's Window module. This setting is ignored, if +// the graphics module is built. +SFML_BUILD_WINDOW:BOOL=ON + +//ON to configure extras, OFF to ignore them +SFML_CONFIGURE_EXTRAS:BOOL=OFF + +//ON to enable precompiled headers for SFML builds -- only supported +// on Windows/Linux and for static library builds +SFML_ENABLE_PCH:BOOL=OFF + +//Enable sanitizers +SFML_ENABLE_SANITIZERS:BOOL=OFF + +//Enable standard library assertions +SFML_ENABLE_STDLIB_ASSERTIONS:BOOL=OFF + +//ON to automatically install pkg-config files so other projects +// can find SFML +SFML_INSTALL_PKGCONFIG_FILES:BOOL=OFF + +//Value Computed by CMake +SFML_IS_TOP_LEVEL:STATIC=OFF + +//ON to use an OpenGL ES implementation, OFF to use a desktop OpenGL +// implementation +SFML_OPENGL_ES:BOOL=0 + +//Value Computed by CMake +SFML_SOURCE_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src + +//ON to use the Mesa 3D graphics library for rendering, OFF to +// use the system provided library for rendering +SFML_USE_MESA3D:BOOL=OFF + +//ON to statically link to the standard libraries, OFF to use them +// as DLLs +SFML_USE_STATIC_STD_LIBS:BOOL=OFF + +//ON to use system dependencies, OFF to use the bundled ones. +SFML_USE_SYSTEM_DEPS:BOOL=OFF + +//Treat compiler warnings as errors +SFML_WARNINGS_AS_ERRORS:BOOL=OFF + +//Use any assembly optimization routines +WITH_ASM:BOOL=ON + +//ogg support (default: test for libogg) +WITH_OGG:BOOL=ON + +//Value Computed by CMake +freetype_BINARY_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build + +//Value Computed by CMake +freetype_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +freetype_SOURCE_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src + +//Value Computed by CMake +libogg_BINARY_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build + +//Value Computed by CMake +libogg_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +libogg_SOURCE_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src + +//Value Computed by CMake +vorbis_BINARY_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build + +//Value Computed by CMake +vorbis_IS_TOP_LEVEL:STATIC=OFF + +//Dependencies for the target +vorbis_LIB_DEPENDS:STATIC=general;Ogg::ogg; + +//Value Computed by CMake +vorbis_SOURCE_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src + +//Dependencies for the target +vorbisenc_LIB_DEPENDS:STATIC=general;vorbis; + +//Dependencies for the target +vorbisfile_LIB_DEPENDS:STATIC=general;vorbis; + + +######################## +# INTERNAL cache entries +######################## + +//Test ATOMIC_TEST +ATOMIC_TEST:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=30 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=5 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=G:/CLion 2024.3/bin/cmake/win/x64/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=G:/CLion 2024.3/bin/cmake/win/x64/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES +CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/Пашок/CLionProjects/MiniHW2 +//ADVANCED property for variable: CMAKE_INSTALL_BINDIR +CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATADIR +CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR +CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR +CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR +CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INFODIR +CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR +CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR +CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR +CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR +CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_MANDIR +CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR +CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR +CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR +CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR +CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR +CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=17 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_COMPILER +CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1 +CMAKE_RC_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS +CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG +CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL +CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE +CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO +CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_7Z +CPACK_BINARY_7Z-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_IFW +CPACK_BINARY_IFW-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_INNOSETUP +CPACK_BINARY_INNOSETUP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_NSIS +CPACK_BINARY_NSIS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_NUGET +CPACK_BINARY_NUGET-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_WIX +CPACK_BINARY_WIX-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_ZIP +CPACK_BINARY_ZIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_7Z +CPACK_SOURCE_7Z-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_ZIP +CPACK_SOURCE_ZIP-ADVANCED:INTERNAL=1 +//Have include dinput.h +DINPUT_H_FOUND:INTERNAL=1 +//Test DODEFINE_EXTENSIONS +DODEFINE_EXTENSIONS:INTERNAL=1 +//Details about finding OpenGL +FIND_PACKAGE_MESSAGE_DETAILS_OpenGL:INTERNAL=[opengl32][cfound components: OpenGL ][v()] +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +//Result of CHECK_CPU_ARCH +FLAC__CPU_X86_64:INTERNAL=1 +//Have include arm_neon.h +FLAC__HAS_NEONINTRIN:INTERNAL= +//Have include x86intrin.h +FLAC__HAS_X86INTRIN:INTERNAL=1 +//ADVANCED property for variable: GIT_EXECUTABLE +GIT_EXECUTABLE-ADVANCED:INTERNAL=1 +//Test HAVE_ASSOC_MATH +HAVE_ASSOC_MATH:INTERNAL=1 +//Test HAVE_BSWAP16 +HAVE_BSWAP16:INTERNAL=1 +//Test HAVE_BSWAP32 +HAVE_BSWAP32:INTERNAL=1 +//Have include byteswap.h +HAVE_BYTESWAP_H:INTERNAL= +//Have function clock_gettime +HAVE_CLOCK_GETTIME:INTERNAL= +//Have include cpuid.h +HAVE_CPUID_H:INTERNAL=1 +//Test HAVE_DECL_AFTER_STMT_FLAG +HAVE_DECL_AFTER_STMT_FLAG:INTERNAL=1 +//Result of TRY_COMPILE +HAVE_FLAC__CPU_X86_64:INTERNAL=TRUE +//Have function fseeko +HAVE_FSEEKO:INTERNAL=1 +//Result of TRY_COMPILE +HAVE_INT16_SIZE:INTERNAL=TRUE +//Result of TRY_COMPILE +HAVE_INT32_SIZE:INTERNAL=TRUE +//Result of TRY_COMPILE +HAVE_INT64_SIZE:INTERNAL=TRUE +//Have include inttypes.h +HAVE_INTTYPES_H:INTERNAL=1 +//Result of TRY_COMPILE +HAVE_INT_SIZE:INTERNAL=TRUE +//Test HAVE_LANGINFO_CODESET +HAVE_LANGINFO_CODESET:INTERNAL= +//Have library m +HAVE_LIBM:INTERNAL=1 +//Result of TRY_COMPILE +HAVE_LONG_LONG_SIZE:INTERNAL=TRUE +//Result of TRY_COMPILE +HAVE_LONG_SIZE:INTERNAL=TRUE +//Have function lround +HAVE_LROUND:INTERNAL=1 +//Test HAVE_MBSTATE +HAVE_MBSTATE:INTERNAL=1 +//Result of TRY_COMPILE +HAVE_SHORT_SIZE:INTERNAL=TRUE +//Test HAVE_STACKREALIGN_FLAG +HAVE_STACKREALIGN_FLAG:INTERNAL=1 +//Have include stdbool.h +HAVE_STDBOOL_H:INTERNAL=1 +//Have include stddef.h +HAVE_STDDEF_H:INTERNAL=1 +//Have include stdint.h +HAVE_STDINT_H:INTERNAL=1 +//Have include sys/param.h +HAVE_SYS_PARAM_H:INTERNAL=1 +//Have include sys/types.h +HAVE_SYS_TYPES_H:INTERNAL=1 +//Result of TRY_COMPILE +HAVE_UINT16_SIZE:INTERNAL=TRUE +//Result of TRY_COMPILE +HAVE_UINT32_SIZE:INTERNAL=TRUE +//Result of TRY_COMPILE +HAVE_U_INT16_SIZE:INTERNAL=FALSE +//Result of TRY_COMPILE +HAVE_U_INT32_SIZE:INTERNAL=FALSE +//Test HAVE_WEFFCXX_FLAG +HAVE_WEFFCXX_FLAG:INTERNAL=1 +//Test HAVE_WERROR_FLAG +HAVE_WERROR_FLAG:INTERNAL=1 +//Have include inttypes.h +INCLUDE_INTTYPES_H:INTERNAL=1 +//Have include stdint.h +INCLUDE_STDINT_H:INTERNAL=1 +//Have include sys/types.h +INCLUDE_SYS_TYPES_H:INTERNAL=1 +//CHECK_TYPE_SIZE: sizeof(int16_t) +INT16_SIZE:INTERNAL=2 +//CHECK_TYPE_SIZE: sizeof(int32_t) +INT32_SIZE:INTERNAL=4 +//CHECK_TYPE_SIZE: sizeof(int64_t) +INT64_SIZE:INTERNAL=8 +//CHECK_TYPE_SIZE: sizeof(int) +INT_SIZE:INTERNAL=4 +//CHECK_TYPE_SIZE: sizeof(long long) +LONG_LONG_SIZE:INTERNAL=8 +//CHECK_TYPE_SIZE: sizeof(long) +LONG_SIZE:INTERNAL=4 +//ogg has already been built +OGG_FOUND:INTERNAL=1 +//ADVANCED property for variable: OPENGL_gl_LIBRARY +OPENGL_gl_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: OPENGL_glu_LIBRARY +OPENGL_glu_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: PKG_CONFIG_ARGN +PKG_CONFIG_ARGN-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE +PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1 +//CHECK_TYPE_SIZE: sizeof(short) +SHORT_SIZE:INTERNAL=2 +//CHECK_TYPE_SIZE: sizeof(uint16_t) +UINT16_SIZE:INTERNAL=2 +//CHECK_TYPE_SIZE: sizeof(uint32_t) +UINT32_SIZE:INTERNAL=4 +//CHECK_TYPE_SIZE: u_int16_t unknown +U_INT16_SIZE:INTERNAL= +//CHECK_TYPE_SIZE: u_int32_t unknown +U_INT32_SIZE:INTERNAL= +//linker supports push/pop state +_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/MiniHW2 + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CMakeCCompiler.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CMakeCCompiler.cmake new file mode 100644 index 00000000..da12a8ba --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CMakeCCompiler.cmake @@ -0,0 +1,81 @@ +set(CMAKE_C_COMPILER "G:/CLion 2024.3/bin/mingw/bin/gcc.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "13.1.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_STANDARD_LATEST "23") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "MinGW") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "G:/CLion 2024.3/bin/mingw/bin/ar.exe") +set(CMAKE_C_COMPILER_AR "G:/CLion 2024.3/bin/mingw/bin/gcc-ar.exe") +set(CMAKE_RANLIB "G:/CLion 2024.3/bin/mingw/bin/ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "G:/CLion 2024.3/bin/mingw/bin/gcc-ranlib.exe") +set(CMAKE_LINKER "G:/CLion 2024.3/bin/mingw/bin/ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_C_COMPILER_LINKER "G:/CLion 2024.3/bin/mingw/bin/ld.exe") +set(CMAKE_C_COMPILER_LINKER_ID "GNU") +set(CMAKE_C_COMPILER_LINKER_VERSION 2.40) +set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT GNU) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) +set(CMAKE_C_LINKER_DEPFILE_SUPPORTED FALSE) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include;G:/CLion 2024.3/bin/mingw/include;G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed;G:/CLion 2024.3/bin/mingw/x86_64-w64-mingw32/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CMakeCXXCompiler.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CMakeCXXCompiler.cmake new file mode 100644 index 00000000..f10c79a7 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CMakeCXXCompiler.cmake @@ -0,0 +1,101 @@ +set(CMAKE_CXX_COMPILER "G:/CLion 2024.3/bin/mingw/bin/g++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "13.1.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_STANDARD_LATEST "23") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") +set(CMAKE_CXX26_COMPILE_FEATURES "") + +set(CMAKE_CXX_PLATFORM_ID "MinGW") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "G:/CLion 2024.3/bin/mingw/bin/ar.exe") +set(CMAKE_CXX_COMPILER_AR "G:/CLion 2024.3/bin/mingw/bin/gcc-ar.exe") +set(CMAKE_RANLIB "G:/CLion 2024.3/bin/mingw/bin/ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "G:/CLion 2024.3/bin/mingw/bin/gcc-ranlib.exe") +set(CMAKE_LINKER "G:/CLion 2024.3/bin/mingw/bin/ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_CXX_COMPILER_LINKER "G:/CLion 2024.3/bin/mingw/bin/ld.exe") +set(CMAKE_CXX_COMPILER_LINKER_ID "GNU") +set(CMAKE_CXX_COMPILER_LINKER_VERSION 2.40) +set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT GNU) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang IN ITEMS C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED FALSE) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++;G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32;G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward;G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include;G:/CLion 2024.3/bin/mingw/include;G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed;G:/CLion 2024.3/bin/mingw/x86_64-w64-mingw32/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") + +set(CMAKE_CXX_COMPILER_IMPORT_STD "") +### Imported target for C++23 standard library +set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Toolchain does not support discovering `import std` support") + + + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_C.bin b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 00000000..932341e8 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_C.bin differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_CXX.bin b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 00000000..4b45e692 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CMakeRCCompiler.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CMakeRCCompiler.cmake new file mode 100644 index 00000000..71413bd9 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CMakeRCCompiler.cmake @@ -0,0 +1,6 @@ +set(CMAKE_RC_COMPILER "G:/CLion 2024.3/bin/mingw/bin/windres.exe") +set(CMAKE_RC_COMPILER_ARG1 "") +set(CMAKE_RC_COMPILER_LOADED 1) +set(CMAKE_RC_SOURCE_FILE_EXTENSIONS rc;RC) +set(CMAKE_RC_OUTPUT_EXTENSION .obj) +set(CMAKE_RC_COMPILER_ENV_VAR "RC") diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CMakeSystem.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CMakeSystem.cmake new file mode 100644 index 00000000..000cf698 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + + + +set(CMAKE_SYSTEM "Windows-10.0.26100") +set(CMAKE_SYSTEM_NAME "Windows") +set(CMAKE_SYSTEM_VERSION "10.0.26100") +set(CMAKE_SYSTEM_PROCESSOR "AMD64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdC/CMakeCCompilerId.c b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 00000000..8d8bb038 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,904 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "Arm" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define C_STD_99 199901L +#define C_STD_11 201112L +#define C_STD_17 201710L +#define C_STD_23 202311L + +#ifdef __STDC_VERSION__ +# define C_STD __STDC_VERSION__ +#endif + +#if !defined(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif C_STD > C_STD_17 +# define C_VERSION "23" +#elif C_STD > C_STD_11 +# define C_VERSION "17" +#elif C_STD > C_STD_99 +# define C_VERSION "11" +#elif C_STD >= C_STD_99 +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdC/a.exe b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdC/a.exe new file mode 100644 index 00000000..eb3c88c2 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdC/a.exe differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdCXX/CMakeCXXCompilerId.cpp b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 00000000..da6c824a --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,919 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "Arm" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#define CXX_STD_98 199711L +#define CXX_STD_11 201103L +#define CXX_STD_14 201402L +#define CXX_STD_17 201703L +#define CXX_STD_20 202002L +#define CXX_STD_23 202302L + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) +# if _MSVC_LANG > CXX_STD_17 +# define CXX_STD _MSVC_LANG +# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 +# define CXX_STD CXX_STD_20 +# elif _MSVC_LANG > CXX_STD_14 +# define CXX_STD CXX_STD_17 +# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# elif defined(__INTEL_CXX11_MODE__) +# define CXX_STD CXX_STD_11 +# else +# define CXX_STD CXX_STD_98 +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# if _MSVC_LANG > __cplusplus +# define CXX_STD _MSVC_LANG +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__NVCOMPILER) +# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) +# define CXX_STD CXX_STD_20 +# else +# define CXX_STD __cplusplus +# endif +#elif defined(__INTEL_COMPILER) || defined(__PGI) +# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) +# define CXX_STD CXX_STD_17 +# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) +# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) +# define CXX_STD CXX_STD_14 +# else +# define CXX_STD __cplusplus +# endif +#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) +# define CXX_STD CXX_STD_11 +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > CXX_STD_23 + "26" +#elif CXX_STD > CXX_STD_20 + "23" +#elif CXX_STD > CXX_STD_17 + "20" +#elif CXX_STD > CXX_STD_14 + "17" +#elif CXX_STD > CXX_STD_11 + "14" +#elif CXX_STD >= CXX_STD_11 + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdCXX/a.exe b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdCXX/a.exe new file mode 100644 index 00000000..5bdd8052 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdCXX/a.exe differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 00000000..0ad41ed2 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,1674 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:205 (message)" + - "CMakeLists.txt:2 (project)" + message: | + The system is: Windows - 10.0.26100 - AMD64 + - + kind: "message-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:2 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: G:/CLion 2024.3/bin/mingw/bin/gcc.exe + Build flags: + Id flags: + + The output was: + 0 + + + Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.exe" + + The C compiler identification is GNU, found in: + C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdC/a.exe + + - + kind: "message-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:2 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: G:/CLion 2024.3/bin/mingw/bin/g++.exe + Build flags: + Id flags: + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.exe" + + The CXX compiler identification is GNU, found in: + C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/3.30.5/CompilerIdCXX/a.exe + + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-g2ks55" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-g2ks55" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-g2ks55' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_842e0 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -fdiagnostics-color=always -v -o CMakeFiles/cmTC_842e0.dir/CMakeCCompilerABI.c.obj -c "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCCompilerABI.c" + Using built-in specs. + COLLECT_GCC=G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe + Target: x86_64-w64-mingw32 + Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends + Thread model: posix + Supported LTO compression algorithms: zlib + gcc version 13.1.0 (GCC) + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_842e0.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_842e0.dir/' + G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1.exe -quiet -v -iprefix G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_842e0.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\C8CD~1\\AppData\\Local\\Temp\\ccLLFUSl.s + GNU C17 (GCC) version 13.1.0 (x86_64-w64-mingw32) + compiled by GNU C version 13.1.0, GMP version 6.2.1, MPFR version 4.2.0-p4, MPC version 1.3.1, isl version none + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include" + ignoring nonexistent directory "/win/include" + ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../include" + ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed" + ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include" + ignoring nonexistent directory "/mingw/include" + #include "..." search starts here: + #include <...> search starts here: + G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include + G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include + G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed + G:/CLion 2024.3/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_842e0.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_842e0.dir/' + as -v -o CMakeFiles/cmTC_842e0.dir/CMakeCCompilerABI.c.obj C:\\Users\\C8CD~1\\AppData\\Local\\Temp\\ccLLFUSl.s + GNU assembler version 2.40 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.40 + COMPILER_PATH=G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/ + LIBRARY_PATH=G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/;G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../ + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_842e0.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_842e0.dir/CMakeCCompilerABI.c.'\x0d + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -v -Wl,-v CMakeFiles/cmTC_842e0.dir/CMakeCCompilerABI.c.obj -o cmTC_842e0.exe -Wl,--out-implib,libcmTC_842e0.dll.a -Wl,--major-image-version,0,--minor-image-version,0 && cd ." + Using built-in specs. + COLLECT_GCC=G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe + COLLECT_LTO_WRAPPER=G:/CLion\\ 2024.3/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe + Target: x86_64-w64-mingw32 + Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends + Thread model: posix + Supported LTO compression algorithms: zlib + gcc version 13.1.0 (GCC) + COMPILER_PATH=G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/ + LIBRARY_PATH=G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/;G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_842e0.exe' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_842e0.' + G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -m i386pep -Bdynamic -o cmTC_842e0.exe G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_842e0.dir/CMakeCCompilerABI.c.obj --out-implib libcmTC_842e0.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 G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o + collect2 version 13.1.0 + G:\\CLion 2024.3\\bin\\mingw\\bin/ld.exe -m i386pep -Bdynamic -o cmTC_842e0.exe G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_842e0.dir/CMakeCCompilerABI.c.obj --out-implib libcmTC_842e0.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 G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o + GNU ld (GNU Binutils) 2.40 + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_842e0.exe' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_842e0.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] + add: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include] + add: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] + add: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] + end of search list found + collapse include dir [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] ==> [G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include] + collapse include dir [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include] ==> [G:/CLion 2024.3/bin/mingw/include] + collapse include dir [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] ==> [G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] + collapse include dir [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] ==> [G:/CLion 2024.3/bin/mingw/x86_64-w64-mingw32/include] + implicit include dirs: [G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include;G:/CLion 2024.3/bin/mingw/include;G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed;G:/CLion 2024.3/bin/mingw/x86_64-w64-mingw32/include] + + + - + kind: "message-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + 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:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-g2ks55'] + ignore line: [] + ignore line: [Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_842e0] + ignore line: [[1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -fdiagnostics-color=always -v -o CMakeFiles/cmTC_842e0.dir/CMakeCCompilerABI.c.obj -c "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCCompilerABI.c"] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe] + ignore line: [Target: x86_64-w64-mingw32] + ignore line: [Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 13.1.0 (GCC) ] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_842e0.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_842e0.dir/'] + ignore line: [ G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1.exe -quiet -v -iprefix G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_842e0.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\C8CD~1\\AppData\\Local\\Temp\\ccLLFUSl.s] + ignore line: [GNU C17 (GCC) version 13.1.0 (x86_64-w64-mingw32)] + ignore line: [ compiled by GNU C version 13.1.0 GMP version 6.2.1 MPFR version 4.2.0-p4 MPC version 1.3.1 isl version none] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include"] + ignore line: [ignoring nonexistent directory "/win/include"] + ignore line: [ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../include"] + ignore line: [ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed"] + ignore line: [ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include"] + ignore line: [ignoring nonexistent directory "/mingw/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] + ignore line: [ G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include] + ignore line: [ G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] + ignore line: [ G:/CLion 2024.3/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_842e0.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_842e0.dir/'] + ignore line: [ as -v -o CMakeFiles/cmTC_842e0.dir/CMakeCCompilerABI.c.obj C:\\Users\\C8CD~1\\AppData\\Local\\Temp\\ccLLFUSl.s] + ignore line: [GNU assembler version 2.40 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.40] + ignore line: [COMPILER_PATH=G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/] + ignore line: [LIBRARY_PATH=G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_842e0.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_842e0.dir/CMakeCCompilerABI.c.'\x0d] + ignore line: [[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -v -Wl -v CMakeFiles/cmTC_842e0.dir/CMakeCCompilerABI.c.obj -o cmTC_842e0.exe -Wl --out-implib libcmTC_842e0.dll.a -Wl --major-image-version 0 --minor-image-version 0 && cd ."] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=G:/CLion\\ 2024.3/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe] + ignore line: [Target: x86_64-w64-mingw32] + ignore line: [Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 13.1.0 (GCC) ] + ignore line: [COMPILER_PATH=G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/] + ignore line: [LIBRARY_PATH=G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_842e0.exe' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_842e0.'] + ignore line: [ G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -m i386pep -Bdynamic -o cmTC_842e0.exe G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_842e0.dir/CMakeCCompilerABI.c.obj --out-implib libcmTC_842e0.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 G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] + ignore line: [collect2 version 13.1.0] + ignore line: [G:\\CLion 2024.3\\bin\\mingw\\bin/ld.exe -m i386pep -Bdynamic -o cmTC_842e0.exe G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_842e0.dir/CMakeCCompilerABI.c.obj --out-implib libcmTC_842e0.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 G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] + ignore line: [GNU ld (GNU Binutils) 2.40] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_842e0.exe' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_842e0.'\x0d] + ignore line: [] + ignore line: [] + linker tool for 'C': G:/CLion 2024.3/bin/mingw/bin/ld.exe + implicit libs: [] + implicit objs: [] + implicit dirs: [] + implicit fwks: [] + + + - + kind: "message-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:255 (cmake_determine_linker_id)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Running the C compiler's linker: "G:/CLion 2024.3/bin/mingw/bin/ld.exe" "-v" + GNU ld (GNU Binutils) 2.40 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-5nuj7d" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-5nuj7d" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-5nuj7d' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_bf440 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\g++.exe" -fdiagnostics-color=always -v -o CMakeFiles/cmTC_bf440.dir/CMakeCXXCompilerABI.cpp.obj -c "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp" + Using built-in specs. + COLLECT_GCC=G:\\CLion 2024.3\\bin\\mingw\\bin\\g++.exe + Target: x86_64-w64-mingw32 + Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends + Thread model: posix + Supported LTO compression algorithms: zlib + gcc version 13.1.0 (GCC) + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_bf440.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_bf440.dir/' + G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1plus.exe -quiet -v -iprefix G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_bf440.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\C8CD~1\\AppData\\Local\\Temp\\ccRUNwgV.s + GNU C++17 (GCC) version 13.1.0 (x86_64-w64-mingw32) + compiled by GNU C version 13.1.0, GMP version 6.2.1, MPFR version 4.2.0-p4, MPC version 1.3.1, isl version none + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++" + ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32" + ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward" + ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include" + ignoring nonexistent directory "/win/include" + ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../include" + ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed" + ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include" + ignoring nonexistent directory "/mingw/include" + #include "..." search starts here: + #include <...> search starts here: + G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++ + G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32 + G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward + G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include + G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include + G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed + G:/CLion 2024.3/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_bf440.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_bf440.dir/' + as -v -o CMakeFiles/cmTC_bf440.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\C8CD~1\\AppData\\Local\\Temp\\ccRUNwgV.s + GNU assembler version 2.40 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.40 + COMPILER_PATH=G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/ + LIBRARY_PATH=G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/;G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../\x0d + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_bf440.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_bf440.dir/CMakeCXXCompilerABI.cpp.'\x0d + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\g++.exe" -v -Wl,-v CMakeFiles/cmTC_bf440.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_bf440.exe -Wl,--out-implib,libcmTC_bf440.dll.a -Wl,--major-image-version,0,--minor-image-version,0 && cd ." + Using built-in specs. + COLLECT_GCC=G:\\CLion 2024.3\\bin\\mingw\\bin\\g++.exe + COLLECT_LTO_WRAPPER=G:/CLion\\ 2024.3/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe + Target: x86_64-w64-mingw32 + Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends + Thread model: posix + Supported LTO compression algorithms: zlib + gcc version 13.1.0 (GCC) + COMPILER_PATH=G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/ + LIBRARY_PATH=G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/;G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../ + COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_bf440.exe' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_bf440.' + G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -m i386pep -Bdynamic -o cmTC_bf440.exe G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_bf440.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_bf440.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 G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o + collect2 version 13.1.0 + G:\\CLion 2024.3\\bin\\mingw\\bin/ld.exe -m i386pep -Bdynamic -o cmTC_bf440.exe G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_bf440.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_bf440.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 G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o G:/CLion 2024.3/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_bf440.exe' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_bf440.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] + add: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] + add: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] + add: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] + add: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include] + add: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] + add: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] + end of search list found + collapse include dir [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] ==> [G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] + collapse include dir [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] ==> [G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] + collapse include dir [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] ==> [G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] + collapse include dir [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] ==> [G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include] + collapse include dir [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include] ==> [G:/CLion 2024.3/bin/mingw/include] + collapse include dir [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] ==> [G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] + collapse include dir [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] ==> [G:/CLion 2024.3/bin/mingw/x86_64-w64-mingw32/include] + implicit include dirs: [G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++;G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32;G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward;G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include;G:/CLion 2024.3/bin/mingw/include;G:/CLion 2024.3/bin/mingw/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed;G:/CLion 2024.3/bin/mingw/x86_64-w64-mingw32/include] + + + - + kind: "message-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + 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:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-5nuj7d'] + ignore line: [] + ignore line: [Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_bf440] + ignore line: [[1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\g++.exe" -fdiagnostics-color=always -v -o CMakeFiles/cmTC_bf440.dir/CMakeCXXCompilerABI.cpp.obj -c "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp"] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=G:\\CLion 2024.3\\bin\\mingw\\bin\\g++.exe] + ignore line: [Target: x86_64-w64-mingw32] + ignore line: [Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 13.1.0 (GCC) ] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_bf440.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_bf440.dir/'] + ignore line: [ G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1plus.exe -quiet -v -iprefix G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_bf440.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\C8CD~1\\AppData\\Local\\Temp\\ccRUNwgV.s] + ignore line: [GNU C++17 (GCC) version 13.1.0 (x86_64-w64-mingw32)] + ignore line: [ compiled by GNU C version 13.1.0 GMP version 6.2.1 MPFR version 4.2.0-p4 MPC version 1.3.1 isl version none] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++"] + ignore line: [ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32"] + ignore line: [ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward"] + ignore line: [ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include"] + ignore line: [ignoring nonexistent directory "/win/include"] + ignore line: [ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../include"] + ignore line: [ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed"] + ignore line: [ignoring duplicate directory "G:/CLion 2024.3/bin/mingw/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include"] + ignore line: [ignoring nonexistent directory "/mingw/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] + ignore line: [ G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] + ignore line: [ G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] + ignore line: [ G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] + ignore line: [ G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include] + ignore line: [ G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] + ignore line: [ G:/CLion 2024.3/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_bf440.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_bf440.dir/'] + ignore line: [ as -v -o CMakeFiles/cmTC_bf440.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\C8CD~1\\AppData\\Local\\Temp\\ccRUNwgV.s] + ignore line: [GNU assembler version 2.40 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.40] + ignore line: [COMPILER_PATH=G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/] + ignore line: [LIBRARY_PATH=G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/] + ignore line: [G:/CLion 2024.3/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_bf440.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_bf440.dir/CMakeCXXCompilerABI.cpp.'\x0d] + ignore line: [[2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\g++.exe" -v -Wl -v CMakeFiles/cmTC_bf440.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_bf440.exe -Wl --out-implib libcmTC_bf440.dll.a -Wl --major-image-version 0 --minor-image-version 0 && cd ."] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=G:\\CLion 2024.3\\bin\\mingw\\bin\\g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=G:/CLion\\ 2024.3/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe] + ignore line: [Target: x86_64-w64-mingw32] + ignore line: [Configured with: ../gcc-13.1.0/configure --host=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --build=x86_64-alpine-linux-musl --prefix=/win --enable-checking=release --enable-fully-dynamic-string --enable-languages=c,c++ --with-arch=nocona --with-tune=generic --enable-libatomic --enable-libgomp --enable-libstdcxx-filesystem-ts --enable-libstdcxx-time --enable-seh-exceptions --enable-shared --enable-static --enable-threads=posix --enable-version-specific-runtime-libs --disable-bootstrap --disable-graphite --disable-libada --disable-libstdcxx-pch --disable-libstdcxx-debug --disable-libquadmath --disable-lto --disable-nls --disable-multilib --disable-rpath --disable-symvers --disable-werror --disable-win32-registry --with-gnu-as --with-gnu-ld --with-system-libiconv --with-system-libz --with-gmp=/win/makedepends --with-mpfr=/win/makedepends --with-mpc=/win/makedepends] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 13.1.0 (GCC) ] + ignore line: [COMPILER_PATH=G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/] + ignore line: [LIBRARY_PATH=G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/] + ignore line: [G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_bf440.exe' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_bf440.'] + ignore line: [ G:/CLion 2024.3/bin/mingw/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -m i386pep -Bdynamic -o cmTC_bf440.exe G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_bf440.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_bf440.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 G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] + ignore line: [collect2 version 13.1.0] + ignore line: [G:\\CLion 2024.3\\bin\\mingw\\bin/ld.exe -m i386pep -Bdynamic -o cmTC_bf440.exe G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LG:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_bf440.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_bf440.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 G:/CLion 2024.3/bin/mingw/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/default-manifest.o G:/CLion 2024.3/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_bf440.exe' '-shared-libgcc' '-mtune=generic' '-march=nocona' '-dumpdir' 'cmTC_bf440.'\x0d] + ignore line: [] + ignore line: [] + linker tool for 'CXX': G:/CLion 2024.3/bin/mingw/bin/ld.exe + implicit libs: [] + implicit objs: [] + implicit dirs: [] + implicit fwks: [] + + + - + kind: "message-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:255 (cmake_determine_linker_id)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:2 (project)" + message: | + Running the CXX compiler's linker: "G:/CLion 2024.3/bin/mingw/bin/ld.exe" "-v" + GNU ld (GNU Binutils) 2.40 +... + +--- +events: + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindThreads.cmake:97 (CHECK_C_SOURCE_COMPILES)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindThreads.cmake:163 (_threads_check_libc)" + - "cmake-build-debug/_deps/sfml-src/src/SFML/System/CMakeLists.txt:69 (find_package)" + checks: + - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-3fhq9d" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-3fhq9d" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "CMAKE_HAVE_LIBC_PTHREAD" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-3fhq9d' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_5685e + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -DCMAKE_HAVE_LIBC_PTHREAD -o CMakeFiles/cmTC_5685e.dir/src.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-3fhq9d/src.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" CMakeFiles/cmTC_5685e.dir/src.c.obj -o cmTC_5685e.exe -Wl,--out-implib,libcmTC_5685e.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFileCXX.cmake:89 (try_compile)" + - "cmake-build-debug/_deps/sfml-src/src/SFML/Window/CMakeLists.txt:317 (check_include_file_cxx)" + checks: + - "Looking for C++ include dinput.h" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-p0w688" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-p0w688" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "DINPUT_H_FOUND" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-p0w688' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_4e54c + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\g++.exe" -std=gnu++20 -o CMakeFiles/cmTC_4e54c.dir/CheckIncludeFile.cxx.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-p0w688/CheckIncludeFile.cxx + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\g++.exe" CMakeFiles/cmTC_4e54c.dir/CheckIncludeFile.cxx.obj -o cmTC_4e54c.exe -Wl,--out-implib,libcmTC_4e54c.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "cmake-build-debug/_deps/sfml-src/src/SFML/Window/CMakeLists.txt:342 (check_cxx_source_compiles)" + checks: + - "Performing Test ATOMIC_TEST" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-2gzlsk" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-2gzlsk" + cmakeVariables: + CMAKE_CXX_FLAGS: "" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "ATOMIC_TEST" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-2gzlsk' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_abef7 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\g++.exe" -DATOMIC_TEST -std=gnu++20 -o CMakeFiles/cmTC_abef7.dir/src.cxx.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-2gzlsk/src.cxx + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\g++.exe" CMakeFiles/cmTC_abef7.dir/src.cxx.obj -o cmTC_abef7.exe -Wl,--out-implib,libcmTC_abef7.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFiles.cmake:132 (try_compile)" + - "cmake-build-debug/_deps/ogg-src/CMakeLists.txt:57 (check_include_files)" + checks: + - "Looking for include file inttypes.h" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-m8lrzr" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-m8lrzr" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "INCLUDE_INTTYPES_H" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-m8lrzr' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_0e512 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -o CMakeFiles/cmTC_0e512.dir/INCLUDE_INTTYPES_H.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-m8lrzr/INCLUDE_INTTYPES_H.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" CMakeFiles/cmTC_0e512.dir/INCLUDE_INTTYPES_H.c.obj -o cmTC_0e512.exe -Wl,--out-implib,libcmTC_0e512.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFiles.cmake:132 (try_compile)" + - "cmake-build-debug/_deps/ogg-src/CMakeLists.txt:58 (check_include_files)" + checks: + - "Looking for include file stdint.h" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-elbupx" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-elbupx" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "INCLUDE_STDINT_H" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-elbupx' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_4a363 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -o CMakeFiles/cmTC_4a363.dir/INCLUDE_STDINT_H.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-elbupx/INCLUDE_STDINT_H.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" CMakeFiles/cmTC_4a363.dir/INCLUDE_STDINT_H.c.obj -o cmTC_4a363.exe -Wl,--out-implib,libcmTC_4a363.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFiles.cmake:132 (try_compile)" + - "cmake-build-debug/_deps/ogg-src/CMakeLists.txt:59 (check_include_files)" + checks: + - "Looking for include file sys/types.h" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-y6z9lu" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-y6z9lu" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "INCLUDE_SYS_TYPES_H" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-y6z9lu' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_c8cfa + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -o CMakeFiles/cmTC_c8cfa.dir/INCLUDE_SYS_TYPES_H.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-y6z9lu/INCLUDE_SYS_TYPES_H.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" CMakeFiles/cmTC_c8cfa.dir/INCLUDE_SYS_TYPES_H.c.obj -o cmTC_c8cfa.exe -Wl,--out-implib,libcmTC_c8cfa.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFile.cmake:90 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:251 (check_include_file)" + - "cmake-build-debug/_deps/ogg-src/cmake/CheckSizes.cmake:3 (check_type_size)" + - "cmake-build-debug/_deps/ogg-src/CMakeLists.txt:69 (include)" + checks: + - "Looking for sys/types.h" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ym8cln" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ym8cln" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_SYS_TYPES_H" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ym8cln' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_6afcd + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -o CMakeFiles/cmTC_6afcd.dir/CheckIncludeFile.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ym8cln/CheckIncludeFile.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" CMakeFiles/cmTC_6afcd.dir/CheckIncludeFile.c.obj -o cmTC_6afcd.exe -Wl,--out-implib,libcmTC_6afcd.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFile.cmake:90 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:252 (check_include_file)" + - "cmake-build-debug/_deps/ogg-src/cmake/CheckSizes.cmake:3 (check_type_size)" + - "cmake-build-debug/_deps/ogg-src/CMakeLists.txt:69 (include)" + checks: + - "Looking for stdint.h" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-l3e8xb" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-l3e8xb" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_STDINT_H" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-l3e8xb' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_dd746 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -o CMakeFiles/cmTC_dd746.dir/CheckIncludeFile.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-l3e8xb/CheckIncludeFile.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" CMakeFiles/cmTC_dd746.dir/CheckIncludeFile.c.obj -o cmTC_dd746.exe -Wl,--out-implib,libcmTC_dd746.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFile.cmake:90 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:253 (check_include_file)" + - "cmake-build-debug/_deps/ogg-src/cmake/CheckSizes.cmake:3 (check_type_size)" + - "cmake-build-debug/_deps/ogg-src/CMakeLists.txt:69 (include)" + checks: + - "Looking for stddef.h" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-atlhfw" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-atlhfw" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_STDDEF_H" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-atlhfw' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_b9418 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -o CMakeFiles/cmTC_b9418.dir/CheckIncludeFile.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-atlhfw/CheckIncludeFile.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" CMakeFiles/cmTC_b9418.dir/CheckIncludeFile.c.obj -o cmTC_b9418.exe -Wl,--out-implib,libcmTC_b9418.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:147 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:272 (__check_type_size_impl)" + - "cmake-build-debug/_deps/ogg-src/cmake/CheckSizes.cmake:3 (check_type_size)" + - "cmake-build-debug/_deps/ogg-src/CMakeLists.txt:69 (include)" + checks: + - "Check size of int16_t" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-vuhcsy" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-vuhcsy" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_INT16_SIZE" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-vuhcsy' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_0065d + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -o CMakeFiles/cmTC_0065d.dir/INT16_SIZE.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-vuhcsy/INT16_SIZE.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" CMakeFiles/cmTC_0065d.dir/INT16_SIZE.c.obj -o cmTC_0065d.exe -Wl,--out-implib,libcmTC_0065d.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:147 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:272 (__check_type_size_impl)" + - "cmake-build-debug/_deps/ogg-src/cmake/CheckSizes.cmake:4 (check_type_size)" + - "cmake-build-debug/_deps/ogg-src/CMakeLists.txt:69 (include)" + checks: + - "Check size of uint16_t" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-y4p5rd" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-y4p5rd" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_UINT16_SIZE" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-y4p5rd' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_23186 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -o CMakeFiles/cmTC_23186.dir/UINT16_SIZE.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-y4p5rd/UINT16_SIZE.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" CMakeFiles/cmTC_23186.dir/UINT16_SIZE.c.obj -o cmTC_23186.exe -Wl,--out-implib,libcmTC_23186.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:147 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:272 (__check_type_size_impl)" + - "cmake-build-debug/_deps/ogg-src/cmake/CheckSizes.cmake:5 (check_type_size)" + - "cmake-build-debug/_deps/ogg-src/CMakeLists.txt:69 (include)" + checks: + - "Check size of u_int16_t" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1ovxfb" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1ovxfb" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_U_INT16_SIZE" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1ovxfb' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_41615 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -o CMakeFiles/cmTC_41615.dir/U_INT16_SIZE.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1ovxfb/U_INT16_SIZE.c + \x1b[31mFAILED: \x1b[0mCMakeFiles/cmTC_41615.dir/U_INT16_SIZE.c.obj + "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -o CMakeFiles/cmTC_41615.dir/U_INT16_SIZE.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1ovxfb/U_INT16_SIZE.c + C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1ovxfb/U_INT16_SIZE.c:27:22: error: 'u_int16_t' undeclared here (not in a function); did you mean 'uint16_t'? + 27 | #define SIZE (sizeof(u_int16_t)) + | ^~~~~~~~~ + C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1ovxfb/U_INT16_SIZE.c:29:12: note: in expansion of macro 'SIZE' + 29 | ('0' + ((SIZE / 10000)%10)), + | ^~~~ + ninja: build stopped: subcommand failed. + + exitCode: 1 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:147 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:272 (__check_type_size_impl)" + - "cmake-build-debug/_deps/ogg-src/cmake/CheckSizes.cmake:6 (check_type_size)" + - "cmake-build-debug/_deps/ogg-src/CMakeLists.txt:69 (include)" + checks: + - "Check size of int32_t" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-wdw1up" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-wdw1up" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_INT32_SIZE" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-wdw1up' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_8291e + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -o CMakeFiles/cmTC_8291e.dir/INT32_SIZE.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-wdw1up/INT32_SIZE.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" CMakeFiles/cmTC_8291e.dir/INT32_SIZE.c.obj -o cmTC_8291e.exe -Wl,--out-implib,libcmTC_8291e.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:147 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:272 (__check_type_size_impl)" + - "cmake-build-debug/_deps/ogg-src/cmake/CheckSizes.cmake:7 (check_type_size)" + - "cmake-build-debug/_deps/ogg-src/CMakeLists.txt:69 (include)" + checks: + - "Check size of uint32_t" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kwmz5f" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kwmz5f" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_UINT32_SIZE" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kwmz5f' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_410bb + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -o CMakeFiles/cmTC_410bb.dir/UINT32_SIZE.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-kwmz5f/UINT32_SIZE.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" CMakeFiles/cmTC_410bb.dir/UINT32_SIZE.c.obj -o cmTC_410bb.exe -Wl,--out-implib,libcmTC_410bb.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:147 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:272 (__check_type_size_impl)" + - "cmake-build-debug/_deps/ogg-src/cmake/CheckSizes.cmake:8 (check_type_size)" + - "cmake-build-debug/_deps/ogg-src/CMakeLists.txt:69 (include)" + checks: + - "Check size of u_int32_t" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-n0n2l3" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-n0n2l3" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_U_INT32_SIZE" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-n0n2l3' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_86f10 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -o CMakeFiles/cmTC_86f10.dir/U_INT32_SIZE.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-n0n2l3/U_INT32_SIZE.c + \x1b[31mFAILED: \x1b[0mCMakeFiles/cmTC_86f10.dir/U_INT32_SIZE.c.obj + "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -o CMakeFiles/cmTC_86f10.dir/U_INT32_SIZE.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-n0n2l3/U_INT32_SIZE.c + C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-n0n2l3/U_INT32_SIZE.c:27:22: error: 'u_int32_t' undeclared here (not in a function); did you mean 'uint32_t'? + 27 | #define SIZE (sizeof(u_int32_t)) + | ^~~~~~~~~ + C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-n0n2l3/U_INT32_SIZE.c:29:12: note: in expansion of macro 'SIZE' + 29 | ('0' + ((SIZE / 10000)%10)), + | ^~~~ + ninja: build stopped: subcommand failed. + + exitCode: 1 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:147 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:272 (__check_type_size_impl)" + - "cmake-build-debug/_deps/ogg-src/cmake/CheckSizes.cmake:9 (check_type_size)" + - "cmake-build-debug/_deps/ogg-src/CMakeLists.txt:69 (include)" + checks: + - "Check size of int64_t" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-z4q3ph" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-z4q3ph" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_INT64_SIZE" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-z4q3ph' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_5e475 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -o CMakeFiles/cmTC_5e475.dir/INT64_SIZE.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-z4q3ph/INT64_SIZE.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" CMakeFiles/cmTC_5e475.dir/INT64_SIZE.c.obj -o cmTC_5e475.exe -Wl,--out-implib,libcmTC_5e475.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:147 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:272 (__check_type_size_impl)" + - "cmake-build-debug/_deps/ogg-src/cmake/CheckSizes.cmake:10 (check_type_size)" + - "cmake-build-debug/_deps/ogg-src/CMakeLists.txt:69 (include)" + checks: + - "Check size of short" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-j9m3pv" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-j9m3pv" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_SHORT_SIZE" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-j9m3pv' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_0dea1 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -o CMakeFiles/cmTC_0dea1.dir/SHORT_SIZE.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-j9m3pv/SHORT_SIZE.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" CMakeFiles/cmTC_0dea1.dir/SHORT_SIZE.c.obj -o cmTC_0dea1.exe -Wl,--out-implib,libcmTC_0dea1.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:147 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:272 (__check_type_size_impl)" + - "cmake-build-debug/_deps/ogg-src/cmake/CheckSizes.cmake:11 (check_type_size)" + - "cmake-build-debug/_deps/ogg-src/CMakeLists.txt:69 (include)" + checks: + - "Check size of int" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-nipfqj" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-nipfqj" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_INT_SIZE" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-nipfqj' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_27618 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -o CMakeFiles/cmTC_27618.dir/INT_SIZE.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-nipfqj/INT_SIZE.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" CMakeFiles/cmTC_27618.dir/INT_SIZE.c.obj -o cmTC_27618.exe -Wl,--out-implib,libcmTC_27618.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:147 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:272 (__check_type_size_impl)" + - "cmake-build-debug/_deps/ogg-src/cmake/CheckSizes.cmake:12 (check_type_size)" + - "cmake-build-debug/_deps/ogg-src/CMakeLists.txt:69 (include)" + checks: + - "Check size of long" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-smnffj" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-smnffj" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_LONG_SIZE" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-smnffj' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_754c9 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -o CMakeFiles/cmTC_754c9.dir/LONG_SIZE.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-smnffj/LONG_SIZE.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" CMakeFiles/cmTC_754c9.dir/LONG_SIZE.c.obj -o cmTC_754c9.exe -Wl,--out-implib,libcmTC_754c9.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:147 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake:272 (__check_type_size_impl)" + - "cmake-build-debug/_deps/ogg-src/cmake/CheckSizes.cmake:13 (check_type_size)" + - "cmake-build-debug/_deps/ogg-src/CMakeLists.txt:69 (include)" + checks: + - "Check size of long long" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-0s1che" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-0s1che" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_LONG_LONG_SIZE" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-0s1che' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_8052f + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -o CMakeFiles/cmTC_8052f.dir/LONG_LONG_SIZE.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-0s1che/LONG_LONG_SIZE.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" CMakeFiles/cmTC_8052f.dir/LONG_LONG_SIZE.c.obj -o cmTC_8052f.exe -Wl,--out-implib,libcmTC_8052f.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "cmake-build-debug/_deps/flac-src/cmake/UseSystemExtensions.cmake:3 (check_c_source_compiles)" + - "cmake-build-debug/_deps/flac-src/CMakeLists.txt:107 (include)" + checks: + - "Performing Test HAVE_MBSTATE" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-hhn5tf" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-hhn5tf" + cmakeVariables: + CMAKE_C_FLAGS: "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_MBSTATE" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-hhn5tf' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_67fca + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -DHAVE_MBSTATE -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -o CMakeFiles/cmTC_67fca.dir/src.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-hhn5tf/src.c + C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-hhn5tf/src.c:4:9: warning: function declaration isn't a prototype [-Wstrict-prototypes] + 4 | int main() { return 0; } + | ^~~~ + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline CMakeFiles/cmTC_67fca.dir/src.c.obj -o cmTC_67fca.exe -Wl,--out-implib,libcmTC_67fca.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "cmake-build-debug/_deps/flac-src/cmake/UseSystemExtensions.cmake:16 (check_c_source_compiles)" + - "cmake-build-debug/_deps/flac-src/CMakeLists.txt:107 (include)" + checks: + - "Performing Test DODEFINE_EXTENSIONS" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-9wj0yp" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-9wj0yp" + cmakeVariables: + CMAKE_C_FLAGS: "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "DODEFINE_EXTENSIONS" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-9wj0yp' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_32a60 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -DDODEFINE_EXTENSIONS -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -o CMakeFiles/cmTC_32a60.dir/src.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-9wj0yp/src.c + C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-9wj0yp/src.c:36:9: warning: function declaration isn't a prototype [-Wstrict-prototypes] + 36 | int main() { return 0; } + | ^~~~ + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline CMakeFiles/cmTC_32a60.dir/src.c.obj -o cmTC_32a60.exe -Wl,--out-implib,libcmTC_32a60.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFile.cmake:90 (try_compile)" + - "cmake-build-debug/_deps/flac-src/CMakeLists.txt:111 (check_include_file)" + checks: + - "Looking for byteswap.h" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-5z91r7" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-5z91r7" + cmakeVariables: + CMAKE_C_FLAGS: "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_BYTESWAP_H" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-5z91r7' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_a3e39 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -o CMakeFiles/cmTC_a3e39.dir/CheckIncludeFile.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-5z91r7/CheckIncludeFile.c + \x1b[31mFAILED: \x1b[0mCMakeFiles/cmTC_a3e39.dir/CheckIncludeFile.c.obj + "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -o CMakeFiles/cmTC_a3e39.dir/CheckIncludeFile.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-5z91r7/CheckIncludeFile.c + C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-5z91r7/CheckIncludeFile.c:1:10: fatal error: byteswap.h: No such file or directory + 1 | #include + | ^~~~~~~~~~~~ + compilation terminated.\x0d + ninja: build stopped: subcommand failed. + + exitCode: 1 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFile.cmake:90 (try_compile)" + - "cmake-build-debug/_deps/flac-src/CMakeLists.txt:112 (check_include_file)" + checks: + - "Looking for inttypes.h" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1nmozt" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1nmozt" + cmakeVariables: + CMAKE_C_FLAGS: "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_INTTYPES_H" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1nmozt' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_58b6b + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -o CMakeFiles/cmTC_58b6b.dir/CheckIncludeFile.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-1nmozt/CheckIncludeFile.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline CMakeFiles/cmTC_58b6b.dir/CheckIncludeFile.c.obj -o cmTC_58b6b.exe -Wl,--out-implib,libcmTC_58b6b.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFile.cmake:90 (try_compile)" + - "cmake-build-debug/_deps/flac-src/CMakeLists.txt:114 (check_include_file)" + checks: + - "Looking for stdbool.h" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-gv4xsm" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-gv4xsm" + cmakeVariables: + CMAKE_C_FLAGS: "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_STDBOOL_H" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-gv4xsm' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_c29a8 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -o CMakeFiles/cmTC_c29a8.dir/CheckIncludeFile.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-gv4xsm/CheckIncludeFile.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline CMakeFiles/cmTC_c29a8.dir/CheckIncludeFile.c.obj -o cmTC_c29a8.exe -Wl,--out-implib,libcmTC_c29a8.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFile.cmake:90 (try_compile)" + - "cmake-build-debug/_deps/flac-src/CMakeLists.txt:115 (check_include_file)" + checks: + - "Looking for arm_neon.h" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-y8n8km" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-y8n8km" + cmakeVariables: + CMAKE_C_FLAGS: "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "FLAC__HAS_NEONINTRIN" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-y8n8km' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_a6df5 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -o CMakeFiles/cmTC_a6df5.dir/CheckIncludeFile.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-y8n8km/CheckIncludeFile.c + \x1b[31mFAILED: \x1b[0mCMakeFiles/cmTC_a6df5.dir/CheckIncludeFile.c.obj + "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -o CMakeFiles/cmTC_a6df5.dir/CheckIncludeFile.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-y8n8km/CheckIncludeFile.c + C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-y8n8km/CheckIncludeFile.c:1:10: fatal error: arm_neon.h: No such file or directory + 1 | #include + | ^~~~~~~~~~~~ + compilation terminated.\x0d + ninja: build stopped: subcommand failed. + + exitCode: 1 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFile.cmake:90 (try_compile)" + - "cmake-build-debug/_deps/flac-src/CMakeLists.txt:124 (check_include_file)" + checks: + - "Looking for x86intrin.h" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ta001b" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ta001b" + cmakeVariables: + CMAKE_C_FLAGS: "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "FLAC__HAS_X86INTRIN" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ta001b' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_7c4d4 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -o CMakeFiles/cmTC_7c4d4.dir/CheckIncludeFile.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ta001b/CheckIncludeFile.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline CMakeFiles/cmTC_7c4d4.dir/CheckIncludeFile.c.obj -o cmTC_7c4d4.exe -Wl,--out-implib,libcmTC_7c4d4.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckFunctionExists.cmake:86 (try_compile)" + - "cmake-build-debug/_deps/flac-src/CMakeLists.txt:127 (check_function_exists)" + checks: + - "Looking for fseeko" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-aoqg4q" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-aoqg4q" + cmakeVariables: + CMAKE_C_FLAGS: "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_FSEEKO" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-aoqg4q' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_4c705 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -DCHECK_FUNCTION_EXISTS=fseeko -o CMakeFiles/cmTC_4c705.dir/CheckFunctionExists.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-aoqg4q/CheckFunctionExists.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -DCHECK_FUNCTION_EXISTS=fseeko CMakeFiles/cmTC_4c705.dir/CheckFunctionExists.c.obj -o cmTC_4c705.exe -Wl,--out-implib,libcmTC_4c705.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "cmake-build-debug/_deps/flac-src/CMakeLists.txt:129 (check_c_source_compiles)" + checks: + - "Performing Test HAVE_BSWAP16" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-owc7pv" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-owc7pv" + cmakeVariables: + CMAKE_C_FLAGS: "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_BSWAP16" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-owc7pv' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_72921 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -DHAVE_BSWAP16 -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -o CMakeFiles/cmTC_72921.dir/src.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-owc7pv/src.c + C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-owc7pv/src.c:1:5: warning: function declaration isn't a prototype [-Wstrict-prototypes] + 1 | int main() { return __builtin_bswap16 (0) ; } + | ^~~~ + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline CMakeFiles/cmTC_72921.dir/src.c.obj -o cmTC_72921.exe -Wl,--out-implib,libcmTC_72921.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "cmake-build-debug/_deps/flac-src/CMakeLists.txt:130 (check_c_source_compiles)" + checks: + - "Performing Test HAVE_BSWAP32" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-5m6tiv" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-5m6tiv" + cmakeVariables: + CMAKE_C_FLAGS: "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_BSWAP32" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-5m6tiv' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_f65a4 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -DHAVE_BSWAP32 -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -o CMakeFiles/cmTC_f65a4.dir/src.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-5m6tiv/src.c + C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-5m6tiv/src.c:1:5: warning: function declaration isn't a prototype [-Wstrict-prototypes] + 1 | int main() { return __builtin_bswap32 (0) ; } + | ^~~~ + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline CMakeFiles/cmTC_f65a4.dir/src.c.obj -o cmTC_f65a4.exe -Wl,--out-implib,libcmTC_f65a4.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "cmake-build-debug/_deps/flac-src/CMakeLists.txt:131 (check_c_source_compiles)" + checks: + - "Performing Test HAVE_LANGINFO_CODESET" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-6sznix" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-6sznix" + cmakeVariables: + CMAKE_C_FLAGS: "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_LANGINFO_CODESET" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-6sznix' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_545fb + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -DHAVE_LANGINFO_CODESET -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -o CMakeFiles/cmTC_545fb.dir/src.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-6sznix/src.c + \x1b[31mFAILED: \x1b[0mCMakeFiles/cmTC_545fb.dir/src.c.obj + "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -DHAVE_LANGINFO_CODESET -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -o CMakeFiles/cmTC_545fb.dir/src.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-6sznix/src.c + C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-6sznix/src.c:2:14: fatal error: langinfo.h: No such file or directory + 2 | #include + | ^~~~~~~~~~~~ + compilation terminated.\x0d + ninja: build stopped: subcommand failed. + + exitCode: 1 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake:18 (cmake_check_source_compiles)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake:51 (cmake_check_compiler_flag)" + - "cmake-build-debug/_deps/flac-src/CMakeLists.txt:142 (check_c_compiler_flag)" + checks: + - "Performing Test HAVE_WERROR_FLAG" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-rflaog" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-rflaog" + cmakeVariables: + CMAKE_C_FLAGS: "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_WERROR_FLAG" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-rflaog' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_84fdf + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -DHAVE_WERROR_FLAG -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -Werror -o CMakeFiles/cmTC_84fdf.dir/src.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-rflaog/src.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline CMakeFiles/cmTC_84fdf.dir/src.c.obj -o cmTC_84fdf.exe -Wl,--out-implib,libcmTC_84fdf.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake:18 (cmake_check_source_compiles)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake:51 (cmake_check_compiler_flag)" + - "cmake-build-debug/_deps/flac-src/CMakeLists.txt:143 (check_c_compiler_flag)" + checks: + - "Performing Test HAVE_DECL_AFTER_STMT_FLAG" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-r97vqi" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-r97vqi" + cmakeVariables: + CMAKE_C_FLAGS: "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_DECL_AFTER_STMT_FLAG" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-r97vqi' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_1cb88 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -DHAVE_DECL_AFTER_STMT_FLAG -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -Wdeclaration-after-statement -o CMakeFiles/cmTC_1cb88.dir/src.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-r97vqi/src.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline CMakeFiles/cmTC_1cb88.dir/src.c.obj -o cmTC_1cb88.exe -Wl,--out-implib,libcmTC_1cb88.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake:18 (cmake_check_source_compiles)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake:51 (cmake_check_compiler_flag)" + - "cmake-build-debug/_deps/flac-src/CMakeLists.txt:144 (check_c_compiler_flag)" + checks: + - "Performing Test HAVE_STACKREALIGN_FLAG" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-4vwcy2" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-4vwcy2" + cmakeVariables: + CMAKE_C_FLAGS: "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_STACKREALIGN_FLAG" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-4vwcy2' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_b3d0b + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -DHAVE_STACKREALIGN_FLAG -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -mstackrealign -o CMakeFiles/cmTC_b3d0b.dir/src.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-4vwcy2/src.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline CMakeFiles/cmTC_b3d0b.dir/src.c.obj -o cmTC_b3d0b.exe -Wl,--out-implib,libcmTC_b3d0b.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake:18 (cmake_check_source_compiles)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake:34 (cmake_check_compiler_flag)" + - "cmake-build-debug/_deps/flac-src/CMakeLists.txt:145 (check_cxx_compiler_flag)" + checks: + - "Performing Test HAVE_WEFFCXX_FLAG" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-d9xsyt" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-d9xsyt" + cmakeVariables: + CMAKE_CXX_FLAGS: "-Wall -Wextra -Wcast-align -Wshadow -Wwrite-strings -Wctor-dtor-privacy -Wnon-virtual-dtor -Wreorder -Wsign-promo -Wundef " + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_WEFFCXX_FLAG" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-d9xsyt' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_2158c + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\g++.exe" -DHAVE_WEFFCXX_FLAG -Wall -Wextra -Wcast-align -Wshadow -Wwrite-strings -Wctor-dtor-privacy -Wnon-virtual-dtor -Wreorder -Wsign-promo -Wundef -std=gnu++20 -Weffc++ -o CMakeFiles/cmTC_2158c.dir/src.cxx.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-d9xsyt/src.cxx + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\g++.exe" -Wall -Wextra -Wcast-align -Wshadow -Wwrite-strings -Wctor-dtor-privacy -Wnon-virtual-dtor -Wreorder -Wsign-promo -Wundef CMakeFiles/cmTC_2158c.dir/src.cxx.obj -o cmTC_2158c.exe -Wl,--out-implib,libcmTC_2158c.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFile.cmake:90 (try_compile)" + - "cmake-build-debug/_deps/flac-src/src/libFLAC/CMakeLists.txt:3 (check_include_file)" + checks: + - "Looking for cpuid.h" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ydribe" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ydribe" + cmakeVariables: + CMAKE_C_FLAGS: "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_CPUID_H" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ydribe' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_0581a + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -o CMakeFiles/cmTC_0581a.dir/CheckIncludeFile.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-ydribe/CheckIncludeFile.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline CMakeFiles/cmTC_0581a.dir/CheckIncludeFile.c.obj -o cmTC_0581a.exe -Wl,--out-implib,libcmTC_0581a.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFile.cmake:90 (try_compile)" + - "cmake-build-debug/_deps/flac-src/src/libFLAC/CMakeLists.txt:4 (check_include_file)" + checks: + - "Looking for sys/param.h" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-gldn5f" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-gldn5f" + cmakeVariables: + CMAKE_C_FLAGS: "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_SYS_PARAM_H" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-gldn5f' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_43b22 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -o CMakeFiles/cmTC_43b22.dir/CheckIncludeFile.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-gldn5f/CheckIncludeFile.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline CMakeFiles/cmTC_43b22.dir/CheckIncludeFile.c.obj -o cmTC_43b22.exe -Wl,--out-implib,libcmTC_43b22.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckFunctionExists.cmake:86 (try_compile)" + - "cmake-build-debug/_deps/flac-src/src/libFLAC/CMakeLists.txt:7 (check_function_exists)" + checks: + - "Looking for lround" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-98l3pn" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-98l3pn" + cmakeVariables: + CMAKE_C_FLAGS: "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_LROUND" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-98l3pn' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_7afa4 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -DCHECK_FUNCTION_EXISTS=lround -o CMakeFiles/cmTC_7afa4.dir/CheckFunctionExists.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-98l3pn/CheckFunctionExists.c + : warning: conflicting types for built-in function 'lround'; expected 'long int(double)' [-Wbuiltin-declaration-mismatch] + C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-98l3pn/CheckFunctionExists.c:7:3: note: in expansion of macro 'CHECK_FUNCTION_EXISTS' + 7 | CHECK_FUNCTION_EXISTS(void); + | ^~~~~~~~~~~~~~~~~~~~~ + C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-98l3pn/CheckFunctionExists.c:1:1: note: 'lround' is declared in header '' + +++ |+#include + 1 | #ifdef CHECK_FUNCTION_EXISTS + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -DCHECK_FUNCTION_EXISTS=lround CMakeFiles/cmTC_7afa4.dir/CheckFunctionExists.c.obj -o cmTC_7afa4.exe -Wl,--out-implib,libcmTC_7afa4.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lm -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "cmake-build-debug/_deps/flac-src/cmake/CheckCPUArch.cmake:6 (try_compile)" + - "cmake-build-debug/_deps/flac-src/cmake/CheckCPUArch.cmake:18 (_CHECK_CPU_ARCH)" + - "cmake-build-debug/_deps/flac-src/src/libFLAC/CMakeLists.txt:13 (check_cpu_arch_x64)" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/CMakeTmp" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/CMakeTmp" + cmakeVariables: + CMAKE_C_FLAGS: "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_FLAC__CPU_X86_64" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/CMakeTmp' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_14ab0 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -o CMakeFiles/cmTC_14ab0.dir/CheckCPUArch.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/CMakeTmp/CheckCPUArch.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline CMakeFiles/cmTC_14ab0.dir/CheckCPUArch.c.obj -o cmTC_14ab0.exe -Wl,--out-implib,libcmTC_14ab0.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake:18 (cmake_check_source_compiles)" + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake:51 (cmake_check_compiler_flag)" + - "cmake-build-debug/_deps/flac-src/src/libFLAC/CMakeLists.txt:101 (check_c_compiler_flag)" + checks: + - "Performing Test HAVE_ASSOC_MATH" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-lmldi3" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-lmldi3" + cmakeVariables: + CMAKE_C_FLAGS: "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_ASSOC_MATH" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-lmldi3' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_48f10 + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -DHAVE_ASSOC_MATH -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math -o CMakeFiles/cmTC_48f10.dir/src.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-lmldi3/src.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline CMakeFiles/cmTC_48f10.dir/src.c.obj -o cmTC_48f10.exe -Wl,--out-implib,libcmTC_48f10.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lm -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckFunctionExists.cmake:86 (try_compile)" + - "cmake-build-debug/_deps/flac-src/microbench/CMakeLists.txt:6 (check_function_exists)" + checks: + - "Looking for clock_gettime" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-m3doql" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-m3doql" + cmakeVariables: + CMAKE_C_FLAGS: "-Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_CLOCK_GETTIME" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-m3doql' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_1ec0c + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -DCHECK_FUNCTION_EXISTS=clock_gettime -o CMakeFiles/cmTC_1ec0c.dir/CheckFunctionExists.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-m3doql/CheckFunctionExists.c + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -DCHECK_FUNCTION_EXISTS=clock_gettime CMakeFiles/cmTC_1ec0c.dir/CheckFunctionExists.c.obj -o cmTC_1ec0c.exe -Wl,--out-implib,libcmTC_1ec0c.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lrt -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + \x1b[31mFAILED: \x1b[0mcmTC_1ec0c.exe + C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -DCHECK_FUNCTION_EXISTS=clock_gettime CMakeFiles/cmTC_1ec0c.dir/CheckFunctionExists.c.obj -o cmTC_1ec0c.exe -Wl,--out-implib,libcmTC_1ec0c.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lrt -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + G:\\CLion 2024.3\\bin\\mingw\\bin/ld.exe: cannot find -lrt: No such file or directory\x0d + collect2.exe: error: ld returned 1 exit status + ninja: build stopped: subcommand failed. + + exitCode: 1 + - + kind: "try_compile-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckLibraryExists.cmake:69 (try_compile)" + - "cmake-build-debug/_deps/vorbis-src/CMakeLists.txt:62 (check_library_exists)" + checks: + - "Looking for floor in m" + directories: + source: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-8hcx44" + binary: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-8hcx44" + cmakeVariables: + CMAKE_C_FLAGS: "" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/cmake" + CMAKE_OSX_DEPLOYMENT_TARGET: "13.0" + buildResult: + variable: "HAVE_LIBM" + cached: true + stdout: | + Change Dir: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-8hcx44' + + Run Build Command(s): "G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -v cmTC_2697e + [1/2] "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -DCHECK_FUNCTION_EXISTS=floor -o CMakeFiles/cmTC_2697e.dir/CheckFunctionExists.c.obj -c C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-8hcx44/CheckFunctionExists.c + : warning: conflicting types for built-in function 'floor'; expected 'double(double)' [-Wbuiltin-declaration-mismatch] + C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-8hcx44/CheckFunctionExists.c:7:3: note: in expansion of macro 'CHECK_FUNCTION_EXISTS' + 7 | CHECK_FUNCTION_EXISTS(void); + | ^~~~~~~~~~~~~~~~~~~~~ + C:/Users/╨Я╨░╤И╨╛╨║/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-8hcx44/CheckFunctionExists.c:1:1: note: 'floor' is declared in header '' + +++ |+#include + 1 | #ifdef CHECK_FUNCTION_EXISTS + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "G:\\CLion 2024.3\\bin\\mingw\\bin\\gcc.exe" -DCHECK_FUNCTION_EXISTS=floor CMakeFiles/cmTC_2697e.dir/CheckFunctionExists.c.obj -o cmTC_2697e.exe -Wl,--out-implib,libcmTC_2697e.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lm -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 +... diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/INT16_SIZE.bin b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/INT16_SIZE.bin new file mode 100644 index 00000000..b3681b1d Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/INT16_SIZE.bin differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/INT32_SIZE.bin b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/INT32_SIZE.bin new file mode 100644 index 00000000..384d9df0 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/INT32_SIZE.bin differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/INT64_SIZE.bin b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/INT64_SIZE.bin new file mode 100644 index 00000000..4c46d78f Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/INT64_SIZE.bin differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/INT_SIZE.bin b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/INT_SIZE.bin new file mode 100644 index 00000000..8edbb24a Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/INT_SIZE.bin differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/LONG_LONG_SIZE.bin b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/LONG_LONG_SIZE.bin new file mode 100644 index 00000000..a61632b4 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/LONG_LONG_SIZE.bin differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/LONG_SIZE.bin b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/LONG_SIZE.bin new file mode 100644 index 00000000..ff29c536 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/LONG_SIZE.bin differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/SHORT_SIZE.bin b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/SHORT_SIZE.bin new file mode 100644 index 00000000..f93d193c Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/SHORT_SIZE.bin differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/UINT16_SIZE.bin b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/UINT16_SIZE.bin new file mode 100644 index 00000000..49b7fe52 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/UINT16_SIZE.bin differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/UINT32_SIZE.bin b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/UINT32_SIZE.bin new file mode 100644 index 00000000..80ea8beb Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/CheckTypeSize/UINT32_SIZE.bin differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/MiniHW2.dir/main.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/MiniHW2.dir/main.cpp.obj new file mode 100644 index 00000000..08935a2e Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/MiniHW2.dir/main.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/TargetDirectories.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/TargetDirectories.txt new file mode 100644 index 00000000..da816c06 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,150 @@ +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/MiniHW2.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/package.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/package_source.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/rebuild_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/list_install_components.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/install.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/install/local.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/install/strip.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/package.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/package_source.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/rebuild_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/list_install_components.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/install.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/install/local.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/install/strip.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/CMakeFiles/package.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/CMakeFiles/package_source.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/CMakeFiles/rebuild_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/CMakeFiles/list_install_components.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/CMakeFiles/install.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/CMakeFiles/install/local.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/CMakeFiles/install/strip.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/package.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/package_source.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/rebuild_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/list_install_components.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/install.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/install/local.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/install/strip.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Main/CMakeFiles/sfml-main.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Main/CMakeFiles/package.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Main/CMakeFiles/package_source.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Main/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Main/CMakeFiles/rebuild_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Main/CMakeFiles/list_install_components.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Main/CMakeFiles/install.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Main/CMakeFiles/install/local.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Main/CMakeFiles/install/strip.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/package.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/package_source.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/rebuild_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/list_install_components.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/install.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/install/local.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/install/strip.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Network/CMakeFiles/package.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Network/CMakeFiles/package_source.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Network/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Network/CMakeFiles/rebuild_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Network/CMakeFiles/list_install_components.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Network/CMakeFiles/install.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Network/CMakeFiles/install/local.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Network/CMakeFiles/install/strip.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/package.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/package_source.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/rebuild_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/list_install_components.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/install.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/install/local.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/install/strip.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/package.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/package_source.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/rebuild_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/list_install_components.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/install.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/install/local.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/install/strip.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Audio/CMakeFiles/package.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Audio/CMakeFiles/package_source.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Audio/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Audio/CMakeFiles/rebuild_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Audio/CMakeFiles/list_install_components.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Audio/CMakeFiles/install.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Audio/CMakeFiles/install/local.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Audio/CMakeFiles/install/strip.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/CMakeFiles/ogg.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/CMakeFiles/package.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/CMakeFiles/package_source.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/CMakeFiles/rebuild_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/CMakeFiles/list_install_components.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/CMakeFiles/install.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/CMakeFiles/install/local.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/CMakeFiles/install/strip.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/package.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/package_source.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/rebuild_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/list_install_components.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/install.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/install/local.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/install/strip.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/CMakeFiles/package.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/CMakeFiles/package_source.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/CMakeFiles/rebuild_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/CMakeFiles/list_install_components.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/CMakeFiles/install.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/CMakeFiles/install/local.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/CMakeFiles/install/strip.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/libFLAC/CMakeFiles/package.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/libFLAC/CMakeFiles/package_source.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/libFLAC/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/libFLAC/CMakeFiles/rebuild_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/libFLAC/CMakeFiles/list_install_components.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/libFLAC/CMakeFiles/install.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/libFLAC/CMakeFiles/install/local.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/libFLAC/CMakeFiles/install/strip.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/microbench/CMakeFiles/benchmark_residual.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/microbench/CMakeFiles/package.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/microbench/CMakeFiles/package_source.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/microbench/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/microbench/CMakeFiles/rebuild_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/microbench/CMakeFiles/list_install_components.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/microbench/CMakeFiles/install.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/microbench/CMakeFiles/install/local.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/microbench/CMakeFiles/install/strip.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/CMakeFiles/package.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/CMakeFiles/package_source.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/CMakeFiles/rebuild_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/CMakeFiles/list_install_components.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/CMakeFiles/install.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/CMakeFiles/install/local.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/CMakeFiles/install/strip.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/CMakeFiles/vorbis.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/CMakeFiles/vorbisenc.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/CMakeFiles/vorbisfile.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/CMakeFiles/package.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/CMakeFiles/package_source.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/CMakeFiles/rebuild_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/CMakeFiles/list_install_components.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/CMakeFiles/install.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/CMakeFiles/install/local.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/CMakeFiles/install/strip.dir diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/clion-Debug-log.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/clion-Debug-log.txt new file mode 100644 index 00000000..6415e3a6 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/clion-Debug-log.txt @@ -0,0 +1,31 @@ +"G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_BUILD_TYPE=Debug "-DCMAKE_MAKE_PROGRAM=G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe" -G Ninja -S C:\Users\Пашок\CLionProjects\MiniHW2 -B C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug +CMake Deprecation Warning at cmake-build-debug/_deps/freetype-src/CMakeLists.txt:113 (cmake_minimum_required): + Compatibility with CMake < 3.5 will be removed from a future version of + CMake. + + Update the VERSION argument value or use a ... suffix to tell + CMake that the project does not need compatibility with older versions. + + +-- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE) +CMake Deprecation Warning at cmake-build-debug/_deps/ogg-src/CMakeLists.txt:1 (cmake_minimum_required): + Compatibility with CMake < 3.5 will be removed from a future version of + CMake. + + Update the VERSION argument value or use a ... suffix to tell + CMake that the project does not need compatibility with older versions. + + +-- Configuring libogg 1.3.5 +CMake Deprecation Warning at cmake-build-debug/_deps/vorbis-src/CMakeLists.txt:1 (cmake_minimum_required): + Compatibility with CMake < 3.5 will be removed from a future version of + CMake. + + Update the VERSION argument value or use a ... suffix to tell + CMake that the project does not need compatibility with older versions. + + +-- Configuring vorbis 1.3.7 +-- Configuring done (3.4s) +-- Generating done (0.2s) +-- Build files have been written to: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/clion-environment.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/clion-environment.txt new file mode 100644 index 00000000..23d69c9f --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/clion-environment.txt @@ -0,0 +1,5 @@ +ToolSet: 11.0 w64 (local)@G:\CLion 2024.3\bin\mingw +Ninja: 1.12.1@G:\CLion 2024.3\bin\ninja\win\x64\ninja.exe +Options: + +Options:-DCMAKE_MAKE_PROGRAM=G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe \ No newline at end of file diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/cmake.check_cache b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/cmake.check_cache new file mode 100644 index 00000000..3dccd731 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/download.stamp b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/download.stamp new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/patch.stamp b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/patch.stamp new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/sfml-gitclone-lastrun.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/sfml-gitclone-lastrun.txt new file mode 100644 index 00000000..3c2dd80d --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/sfml-gitclone-lastrun.txt @@ -0,0 +1,15 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=git +command=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/sfml-gitclone.cmake +source_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src +work_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps +repository=https://github.com/SFML/SFML.git +remote=origin +init_submodules=TRUE +recurse_submodules=--recursive +submodules= +CMP0097=NEW + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/sfml-gitinfo.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/sfml-gitinfo.txt new file mode 100644 index 00000000..3c2dd80d --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/sfml-gitinfo.txt @@ -0,0 +1,15 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=git +command=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/sfml-gitclone.cmake +source_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src +work_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps +repository=https://github.com/SFML/SFML.git +remote=origin +init_submodules=TRUE +recurse_submodules=--recursive +submodules= +CMP0097=NEW + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/sfml-patch-info.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/sfml-patch-info.txt new file mode 100644 index 00000000..53e1e1e6 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/sfml-patch-info.txt @@ -0,0 +1,6 @@ +# This is a generated file and its contents are an internal implementation detail. +# The update step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command= +work_dir= diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/sfml-update-info.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/sfml-update-info.txt new file mode 100644 index 00000000..55ea04ab --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/sfml-update-info.txt @@ -0,0 +1,7 @@ +# This is a generated file and its contents are an internal implementation detail. +# The patch step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command (connected)=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-Dcan_fetch=YES;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/sfml-gitupdate.cmake +command (disconnected)=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-Dcan_fetch=NO;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/sfml-gitupdate.cmake +work_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/update.stamp b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/update.stamp new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/download.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/download.cmake new file mode 100644 index 00000000..15b14bc3 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/download.cmake @@ -0,0 +1,9 @@ +cmake_minimum_required(VERSION 3.29) + +message(VERBOSE "Executing download step for sfml") + +block(SCOPE_FOR VARIABLES) + +include("C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/sfml-gitclone.cmake") + +endblock() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/patch.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/patch.cmake new file mode 100644 index 00000000..d45f30a2 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/patch.cmake @@ -0,0 +1,9 @@ +cmake_minimum_required(VERSION 3.29) + +message(VERBOSE "Executing patch step for sfml") + +block(SCOPE_FOR VARIABLES) + + + +endblock() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/sfml-gitclone.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/sfml-gitclone.cmake new file mode 100644 index 00000000..6f2d70b6 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/sfml-gitclone.cmake @@ -0,0 +1,87 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +if(EXISTS "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/sfml-gitclone-lastrun.txt" AND EXISTS "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/sfml-gitinfo.txt" AND + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/sfml-gitclone-lastrun.txt" IS_NEWER_THAN "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/sfml-gitinfo.txt") + message(VERBOSE + "Avoiding repeated git clone, stamp file is up to date: " + "'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/sfml-gitclone-lastrun.txt'" + ) + return() +endif() + +# Even at VERBOSE level, we don't want to see the commands executed, but +# enabling them to be shown for DEBUG may be useful to help diagnose problems. +cmake_language(GET_MESSAGE_LOG_LEVEL active_log_level) +if(active_log_level MATCHES "DEBUG|TRACE") + set(maybe_show_command COMMAND_ECHO STDOUT) +else() + set(maybe_show_command "") +endif() + +execute_process( + COMMAND ${CMAKE_COMMAND} -E rm -rf "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + RESULT_VARIABLE error_code + ${maybe_show_command} +) +if(error_code) + message(FATAL_ERROR "Failed to remove directory: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src'") +endif() + +# try the clone 3 times in case there is an odd git clone issue +set(error_code 1) +set(number_of_tries 0) +while(error_code AND number_of_tries LESS 3) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" + clone --no-checkout --depth 1 --no-single-branch --config "advice.detachedHead=false" "https://github.com/SFML/SFML.git" "sfml-src" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) + math(EXPR number_of_tries "${number_of_tries} + 1") +endwhile() +if(number_of_tries GREATER 1) + message(NOTICE "Had to git clone more than once: ${number_of_tries} times.") +endif() +if(error_code) + message(FATAL_ERROR "Failed to clone repository: 'https://github.com/SFML/SFML.git'") +endif() + +execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" + checkout "3.0.0" -- + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + RESULT_VARIABLE error_code + ${maybe_show_command} +) +if(error_code) + message(FATAL_ERROR "Failed to checkout tag: '3.0.0'") +endif() + +set(init_submodules TRUE) +if(init_submodules) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" + submodule update --recursive --init + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) +endif() +if(error_code) + message(FATAL_ERROR "Failed to update submodules in: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src'") +endif() + +# Complete success, update the script-last-run stamp file: +# +execute_process( + COMMAND ${CMAKE_COMMAND} -E copy "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/sfml-gitinfo.txt" "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/sfml-gitclone-lastrun.txt" + RESULT_VARIABLE error_code + ${maybe_show_command} +) +if(error_code) + message(FATAL_ERROR "Failed to copy script-last-run stamp file: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/fc-stamp/sfml/sfml-gitclone-lastrun.txt'") +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/sfml-gitupdate.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/sfml-gitupdate.cmake new file mode 100644 index 00000000..51ee703d --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/sfml-gitupdate.cmake @@ -0,0 +1,317 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +# Even at VERBOSE level, we don't want to see the commands executed, but +# enabling them to be shown for DEBUG may be useful to help diagnose problems. +cmake_language(GET_MESSAGE_LOG_LEVEL active_log_level) +if(active_log_level MATCHES "DEBUG|TRACE") + set(maybe_show_command COMMAND_ECHO STDOUT) +else() + set(maybe_show_command "") +endif() + +function(do_fetch) + message(VERBOSE "Fetching latest from the remote origin") + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git fetch --tags --force "origin" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + COMMAND_ERROR_IS_FATAL LAST + ${maybe_show_command} + ) +endfunction() + +function(get_hash_for_ref ref out_var err_var) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git rev-parse "${ref}^0" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE ref_hash + ERROR_VARIABLE error_msg + OUTPUT_STRIP_TRAILING_WHITESPACE + ) + if(error_code) + set(${out_var} "" PARENT_SCOPE) + else() + set(${out_var} "${ref_hash}" PARENT_SCOPE) + endif() + set(${err_var} "${error_msg}" PARENT_SCOPE) +endfunction() + +get_hash_for_ref(HEAD head_sha error_msg) +if(head_sha STREQUAL "") + message(FATAL_ERROR "Failed to get the hash for HEAD:\n${error_msg}") +endif() + +if("${can_fetch}" STREQUAL "") + set(can_fetch "YES") +endif() + +execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git show-ref "3.0.0" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + OUTPUT_VARIABLE show_ref_output +) +if(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/remotes/") + # Given a full remote/branch-name and we know about it already. Since + # branches can move around, we should always fetch, if permitted. + if(can_fetch) + do_fetch() + endif() + set(checkout_name "3.0.0") + +elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/tags/") + # Given a tag name that we already know about. We don't know if the tag we + # have matches the remote though (tags can move), so we should fetch. As a + # special case to preserve backward compatibility, if we are already at the + # same commit as the tag we hold locally, don't do a fetch and assume the tag + # hasn't moved on the remote. + # FIXME: We should provide an option to always fetch for this case + get_hash_for_ref("3.0.0" tag_sha error_msg) + if(tag_sha STREQUAL head_sha) + message(VERBOSE "Already at requested tag: 3.0.0") + return() + endif() + + if(can_fetch) + do_fetch() + endif() + set(checkout_name "3.0.0") + +elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/heads/") + # Given a branch name without any remote and we already have a branch by that + # name. We might already have that branch checked out or it might be a + # different branch. It isn't fully safe to use a bare branch name without the + # remote, so do a fetch (if allowed) and replace the ref with one that + # includes the remote. + if(can_fetch) + do_fetch() + endif() + set(checkout_name "origin/3.0.0") + +else() + get_hash_for_ref("3.0.0" tag_sha error_msg) + if(tag_sha STREQUAL head_sha) + # Have the right commit checked out already + message(VERBOSE "Already at requested ref: ${tag_sha}") + return() + + elseif(tag_sha STREQUAL "") + # We don't know about this ref yet, so we have no choice but to fetch. + if(NOT can_fetch) + message(FATAL_ERROR + "Requested git ref \"3.0.0\" is not present locally, and not " + "allowed to contact remote due to UPDATE_DISCONNECTED setting." + ) + endif() + + # We deliberately swallow any error message at the default log level + # because it can be confusing for users to see a failed git command. + # That failure is being handled here, so it isn't an error. + if(NOT error_msg STREQUAL "") + message(DEBUG "${error_msg}") + endif() + do_fetch() + set(checkout_name "3.0.0") + + else() + # We have the commit, so we know we were asked to find a commit hash + # (otherwise it would have been handled further above), but we don't + # have that commit checked out yet. We don't need to fetch from the remote. + set(checkout_name "3.0.0") + if(NOT error_msg STREQUAL "") + message(WARNING "${error_msg}") + endif() + + endif() +endif() + +set(git_update_strategy "REBASE") +if(git_update_strategy STREQUAL "") + # Backward compatibility requires REBASE as the default behavior + set(git_update_strategy REBASE) +endif() + +if(git_update_strategy MATCHES "^REBASE(_CHECKOUT)?$") + # Asked to potentially try to rebase first, maybe with fallback to checkout. + # We can't if we aren't already on a branch and we shouldn't if that local + # branch isn't tracking the one we want to checkout. + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git symbolic-ref -q HEAD + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + OUTPUT_VARIABLE current_branch + OUTPUT_STRIP_TRAILING_WHITESPACE + # Don't test for an error. If this isn't a branch, we get a non-zero error + # code but empty output. + ) + + if(current_branch STREQUAL "") + # Not on a branch, checkout is the only sensible option since any rebase + # would always fail (and backward compatibility requires us to checkout in + # this situation) + set(git_update_strategy CHECKOUT) + + else() + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git for-each-ref "--format=%(upstream:short)" "${current_branch}" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + OUTPUT_VARIABLE upstream_branch + OUTPUT_STRIP_TRAILING_WHITESPACE + COMMAND_ERROR_IS_FATAL ANY # There is no error if no upstream is set + ) + if(NOT upstream_branch STREQUAL checkout_name) + # Not safe to rebase when asked to checkout a different branch to the one + # we are tracking. If we did rebase, we could end up with arbitrary + # commits added to the ref we were asked to checkout if the current local + # branch happens to be able to rebase onto the target branch. There would + # be no error message and the user wouldn't know this was occurring. + set(git_update_strategy CHECKOUT) + endif() + + endif() +elseif(NOT git_update_strategy STREQUAL "CHECKOUT") + message(FATAL_ERROR "Unsupported git update strategy: ${git_update_strategy}") +endif() + + +# Check if stash is needed +execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git status --porcelain + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE repo_status +) +if(error_code) + message(FATAL_ERROR "Failed to get the status") +endif() +string(LENGTH "${repo_status}" need_stash) + +# If not in clean state, stash changes in order to be able to perform a +# rebase or checkout without losing those changes permanently +if(need_stash) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash save --quiet;--include-untracked + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) +endif() + +if(git_update_strategy STREQUAL "CHECKOUT") + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git checkout "${checkout_name}" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) +else() + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git rebase "${checkout_name}" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE rebase_output + ERROR_VARIABLE rebase_output + ) + if(error_code) + # Rebase failed, undo the rebase attempt before continuing + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git rebase --abort + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + ${maybe_show_command} + ) + + if(NOT git_update_strategy STREQUAL "REBASE_CHECKOUT") + # Not allowed to do a checkout as a fallback, so cannot proceed + if(need_stash) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + ${maybe_show_command} + ) + endif() + message(FATAL_ERROR "\nFailed to rebase in: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src'." + "\nOutput from the attempted rebase follows:" + "\n${rebase_output}" + "\n\nYou will have to resolve the conflicts manually") + endif() + + # Fall back to checkout. We create an annotated tag so that the user + # can manually inspect the situation and revert if required. + # We can't log the failed rebase output because MSVC sees it and + # intervenes, causing the build to fail even though it completes. + # Write it to a file instead. + string(TIMESTAMP tag_timestamp "%Y%m%dT%H%M%S" UTC) + set(tag_name _cmake_ExternalProject_moved_from_here_${tag_timestamp}Z) + set(error_log_file ${CMAKE_CURRENT_LIST_DIR}/rebase_error_${tag_timestamp}Z.log) + file(WRITE ${error_log_file} "${rebase_output}") + message(WARNING "Rebase failed, output has been saved to ${error_log_file}" + "\nFalling back to checkout, previous commit tagged as ${tag_name}") + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git tag -a + -m "ExternalProject attempting to move from here to ${checkout_name}" + ${tag_name} + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) + + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git checkout "${checkout_name}" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) + endif() +endif() + +if(need_stash) + # Put back the stashed changes + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) + if(error_code) + # Stash pop --index failed: Try again dropping the index + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git reset --hard --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + ${maybe_show_command} + ) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash pop --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) + if(error_code) + # Stash pop failed: Restore previous state. + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git reset --hard --quiet ${head_sha} + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + ${maybe_show_command} + ) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + ${maybe_show_command} + ) + message(FATAL_ERROR "\nFailed to unstash changes in: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src'." + "\nYou will have to resolve the conflicts manually") + endif() + endif() +endif() + +set(init_submodules "TRUE") +if(init_submodules) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" + --git-dir=.git + submodule update --recursive --init + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/update.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/update.cmake new file mode 100644 index 00000000..2bb5e2aa --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/update.cmake @@ -0,0 +1,9 @@ +cmake_minimum_required(VERSION 3.29) + +message(VERBOSE "Executing update step for sfml") + +block(SCOPE_FOR VARIABLES) + +include("C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CMakeFiles/fc-tmp/sfml/sfml-gitupdate.cmake") + +endblock() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/rules.ninja b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/rules.ninja new file mode 100644 index 00000000..0a421406 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CMakeFiles/rules.ninja @@ -0,0 +1,331 @@ +# 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: MiniHW2 +# Configurations: Debug +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__MiniHW2_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}"G:\CLion 2024.3\bin\mingw\bin\g++.exe" $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX executable. + +rule CXX_EXECUTABLE_LINKER__MiniHW2_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "G:\CLion 2024.3\bin\mingw\bin\g++.exe" $FLAGS $LINK_FLAGS $in -o $TARGET_FILE -Wl,--out-implib,$TARGET_IMPLIB -Wl,--major-image-version,0,--minor-image-version,0 $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX executable $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__sfml-system_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}"G:\CLion 2024.3\bin\mingw\bin\g++.exe" $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__sfml-system_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E rm -f $TARGET_FILE && "G:\CLion 2024.3\bin\mingw\bin\ar.exe" qc $TARGET_FILE $LINK_FLAGS $in && "G:\CLion 2024.3\bin\mingw\bin\ranlib.exe" $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__sfml-main_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}"G:\CLion 2024.3\bin\mingw\bin\g++.exe" $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__sfml-main_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E rm -f $TARGET_FILE && "G:\CLion 2024.3\bin\mingw\bin\ar.exe" qc $TARGET_FILE $LINK_FLAGS $in && "G:\CLion 2024.3\bin\mingw\bin\ranlib.exe" $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__sfml-window_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}"G:\CLion 2024.3\bin\mingw\bin\g++.exe" $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__sfml-window_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E rm -f $TARGET_FILE && "G:\CLion 2024.3\bin\mingw\bin\ar.exe" qc $TARGET_FILE $LINK_FLAGS $in && "G:\CLion 2024.3\bin\mingw\bin\ranlib.exe" $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__sfml-network_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}"G:\CLion 2024.3\bin\mingw\bin\g++.exe" $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__sfml-network_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E rm -f $TARGET_FILE && "G:\CLion 2024.3\bin\mingw\bin\ar.exe" qc $TARGET_FILE $LINK_FLAGS $in && "G:\CLion 2024.3\bin\mingw\bin\ranlib.exe" $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__sfml-graphics_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}"G:\CLion 2024.3\bin\mingw\bin\g++.exe" $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__sfml-graphics_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E rm -f $TARGET_FILE && "G:\CLion 2024.3\bin\mingw\bin\ar.exe" qc $TARGET_FILE $LINK_FLAGS $in && "G:\CLion 2024.3\bin\mingw\bin\ranlib.exe" $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__freetype_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}"G:\CLion 2024.3\bin\mingw\bin\gcc.exe" $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for compiling RC files. + +rule RC_COMPILER__freetype_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}"G:\CLion 2024.3\bin\mingw\bin\windres.exe" -O coff $DEFINES $INCLUDES $FLAGS $in $out + description = Building RC object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__freetype_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E rm -f $TARGET_FILE && "G:\CLion 2024.3\bin\mingw\bin\ar.exe" qc $TARGET_FILE $LINK_FLAGS $in && "G:\CLion 2024.3\bin\mingw\bin\ranlib.exe" $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__sfml-audio_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}"G:\CLion 2024.3\bin\mingw\bin\g++.exe" $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__sfml-audio_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E rm -f $TARGET_FILE && "G:\CLion 2024.3\bin\mingw\bin\ar.exe" qc $TARGET_FILE $LINK_FLAGS $in && "G:\CLion 2024.3\bin\mingw\bin\ranlib.exe" $TARGET_FILE && $POST_BUILD" + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__ogg_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}"G:\CLion 2024.3\bin\mingw\bin\gcc.exe" $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__ogg_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E rm -f $TARGET_FILE && "G:\CLion 2024.3\bin\mingw\bin\ar.exe" qc $TARGET_FILE $LINK_FLAGS $in && "G:\CLion 2024.3\bin\mingw\bin\ranlib.exe" $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__FLAC_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}"G:\CLion 2024.3\bin\mingw\bin\gcc.exe" $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for compiling RC files. + +rule RC_COMPILER__FLAC_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}"G:\CLion 2024.3\bin\mingw\bin\windres.exe" -O coff $DEFINES $INCLUDES $FLAGS $in $out + description = Building RC object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__FLAC_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E rm -f $TARGET_FILE && "G:\CLion 2024.3\bin\mingw\bin\ar.exe" qc $TARGET_FILE $LINK_FLAGS $in && "G:\CLion 2024.3\bin\mingw\bin\ranlib.exe" $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__benchmark_residual_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}"G:\CLion 2024.3\bin\mingw\bin\gcc.exe" $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C executable. + +rule C_EXECUTABLE_LINKER__benchmark_residual_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "G:\CLion 2024.3\bin\mingw\bin\gcc.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 C executable $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__vorbis_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}"G:\CLion 2024.3\bin\mingw\bin\gcc.exe" $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__vorbis_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E rm -f $TARGET_FILE && "G:\CLion 2024.3\bin\mingw\bin\ar.exe" qc $TARGET_FILE $LINK_FLAGS $in && "G:\CLion 2024.3\bin\mingw\bin\ranlib.exe" $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__vorbisenc_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}"G:\CLion 2024.3\bin\mingw\bin\gcc.exe" $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__vorbisenc_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E rm -f $TARGET_FILE && "G:\CLion 2024.3\bin\mingw\bin\ar.exe" qc $TARGET_FILE $LINK_FLAGS $in && "G:\CLion 2024.3\bin\mingw\bin\ranlib.exe" $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__vorbisfile_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}"G:\CLion 2024.3\bin\mingw\bin\gcc.exe" $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__vorbisfile_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E rm -f $TARGET_FILE && "G:\CLion 2024.3\bin\mingw\bin\ar.exe" qc $TARGET_FILE $LINK_FLAGS $in && "G:\CLion 2024.3\bin\mingw\bin\ranlib.exe" $TARGET_FILE && $POST_BUILD" + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2 -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = "G:\CLion 2024.3\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 = "G:\CLion 2024.3\bin\ninja\win\x64\ninja.exe" -t targets + description = All primary targets available: + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CPackConfig.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CPackConfig.cmake new file mode 100644 index 00000000..91089ab2 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CPackConfig.cmake @@ -0,0 +1,74 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +set(CPACK_BINARY_7Z "OFF") +set(CPACK_BINARY_IFW "OFF") +set(CPACK_BINARY_INNOSETUP "OFF") +set(CPACK_BINARY_NSIS "ON") +set(CPACK_BINARY_NUGET "OFF") +set(CPACK_BINARY_WIX "OFF") +set(CPACK_BINARY_ZIP "OFF") +set(CPACK_BUILD_SOURCE_DIRS "C:/Users/Пашок/CLionProjects/MiniHW2;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug") +set(CPACK_CMAKE_GENERATOR "Ninja") +set(CPACK_COMPONENTS_ALL "Unspecified;devel;headers") +set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Templates/CPack.GenericDescription.txt") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "MiniHW2 built using CMake") +set(CPACK_GENERATOR "NSIS") +set(CPACK_INNOSETUP_ARCHITECTURE "x64") +set(CPACK_INSTALL_CMAKE_PROJECTS "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug;MiniHW2;ALL;/") +set(CPACK_INSTALL_PREFIX "C:/Program Files (x86)/MiniHW2") +set(CPACK_MODULE_PATH "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/cmake") +set(CPACK_NSIS_DISPLAY_NAME "MiniHW2 1.3.5") +set(CPACK_NSIS_INSTALLER_ICON_CODE "") +set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES64") +set(CPACK_NSIS_PACKAGE_NAME "MiniHW2 1.3.5") +set(CPACK_NSIS_UNINSTALL_NAME "Uninstall") +set(CPACK_OBJCOPY_EXECUTABLE "G:/CLion 2024.3/bin/mingw/bin/objcopy.exe") +set(CPACK_OBJDUMP_EXECUTABLE "G:/CLion 2024.3/bin/mingw/bin/objdump.exe") +set(CPACK_OUTPUT_CONFIG_FILE "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackConfig.cmake") +set(CPACK_PACKAGE_DEFAULT_LOCATION "/") +set(CPACK_PACKAGE_DESCRIPTION_FILE "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Templates/CPack.GenericDescription.txt") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "MiniHW2 built using CMake") +set(CPACK_PACKAGE_FILE_NAME "MiniHW2-1.3.5-win64") +set(CPACK_PACKAGE_INSTALL_DIRECTORY "MiniHW2 1.3.5") +set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "MiniHW2 1.3.5") +set(CPACK_PACKAGE_NAME "MiniHW2") +set(CPACK_PACKAGE_RELOCATABLE "true") +set(CPACK_PACKAGE_VENDOR "Humanity") +set(CPACK_PACKAGE_VERSION "1.3.5") +set(CPACK_PACKAGE_VERSION_MAJOR "0") +set(CPACK_PACKAGE_VERSION_MINOR "1") +set(CPACK_PACKAGE_VERSION_PATCH "1") +set(CPACK_READELF_EXECUTABLE "G:/CLion 2024.3/bin/mingw/bin/readelf.exe") +set(CPACK_RESOURCE_FILE_LICENSE "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Templates/CPack.GenericLicense.txt") +set(CPACK_RESOURCE_FILE_README "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Templates/CPack.GenericDescription.txt") +set(CPACK_RESOURCE_FILE_WELCOME "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Templates/CPack.GenericWelcome.txt") +set(CPACK_SET_DESTDIR "OFF") +set(CPACK_SOURCE_7Z "ON") +set(CPACK_SOURCE_GENERATOR "7Z;ZIP") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake") +set(CPACK_SOURCE_ZIP "ON") +set(CPACK_SYSTEM_NAME "win64") +set(CPACK_THREADS "1") +set(CPACK_TOPLEVEL_TAG "win64") +set(CPACK_WIX_SIZEOF_VOID_P "8") + +if(NOT CPACK_PROPERTIES_FILE) + set(CPACK_PROPERTIES_FILE "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake new file mode 100644 index 00000000..1e7cc9c5 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake @@ -0,0 +1,82 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +set(CPACK_BINARY_7Z "OFF") +set(CPACK_BINARY_IFW "OFF") +set(CPACK_BINARY_INNOSETUP "OFF") +set(CPACK_BINARY_NSIS "ON") +set(CPACK_BINARY_NUGET "OFF") +set(CPACK_BINARY_WIX "OFF") +set(CPACK_BINARY_ZIP "OFF") +set(CPACK_BUILD_SOURCE_DIRS "C:/Users/Пашок/CLionProjects/MiniHW2;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug") +set(CPACK_CMAKE_GENERATOR "Ninja") +set(CPACK_COMPONENTS_ALL "Unspecified;devel;headers") +set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Templates/CPack.GenericDescription.txt") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "MiniHW2 built using CMake") +set(CPACK_GENERATOR "7Z;ZIP") +set(CPACK_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") +set(CPACK_INNOSETUP_ARCHITECTURE "x64") +set(CPACK_INSTALLED_DIRECTORIES "C:/Users/Пашок/CLionProjects/MiniHW2;/") +set(CPACK_INSTALL_CMAKE_PROJECTS "") +set(CPACK_INSTALL_PREFIX "C:/Program Files (x86)/MiniHW2") +set(CPACK_MODULE_PATH "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/cmake") +set(CPACK_NSIS_DISPLAY_NAME "MiniHW2 1.3.5") +set(CPACK_NSIS_INSTALLER_ICON_CODE "") +set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES64") +set(CPACK_NSIS_PACKAGE_NAME "MiniHW2 1.3.5") +set(CPACK_NSIS_UNINSTALL_NAME "Uninstall") +set(CPACK_OBJCOPY_EXECUTABLE "G:/CLion 2024.3/bin/mingw/bin/objcopy.exe") +set(CPACK_OBJDUMP_EXECUTABLE "G:/CLion 2024.3/bin/mingw/bin/objdump.exe") +set(CPACK_OUTPUT_CONFIG_FILE "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackConfig.cmake") +set(CPACK_PACKAGE_DEFAULT_LOCATION "/") +set(CPACK_PACKAGE_DESCRIPTION_FILE "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Templates/CPack.GenericDescription.txt") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "MiniHW2 built using CMake") +set(CPACK_PACKAGE_FILE_NAME "MiniHW2-1.3.5-Source") +set(CPACK_PACKAGE_INSTALL_DIRECTORY "MiniHW2 1.3.5") +set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "MiniHW2 1.3.5") +set(CPACK_PACKAGE_NAME "MiniHW2") +set(CPACK_PACKAGE_RELOCATABLE "true") +set(CPACK_PACKAGE_VENDOR "Humanity") +set(CPACK_PACKAGE_VERSION "1.3.5") +set(CPACK_PACKAGE_VERSION_MAJOR "0") +set(CPACK_PACKAGE_VERSION_MINOR "1") +set(CPACK_PACKAGE_VERSION_PATCH "1") +set(CPACK_READELF_EXECUTABLE "G:/CLion 2024.3/bin/mingw/bin/readelf.exe") +set(CPACK_RESOURCE_FILE_LICENSE "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Templates/CPack.GenericLicense.txt") +set(CPACK_RESOURCE_FILE_README "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Templates/CPack.GenericDescription.txt") +set(CPACK_RESOURCE_FILE_WELCOME "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Templates/CPack.GenericWelcome.txt") +set(CPACK_RPM_PACKAGE_SOURCES "ON") +set(CPACK_SET_DESTDIR "OFF") +set(CPACK_SOURCE_7Z "ON") +set(CPACK_SOURCE_GENERATOR "7Z;ZIP") +set(CPACK_SOURCE_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") +set(CPACK_SOURCE_INSTALLED_DIRECTORIES "C:/Users/Пашок/CLionProjects/MiniHW2;/") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake") +set(CPACK_SOURCE_PACKAGE_FILE_NAME "MiniHW2-1.3.5-Source") +set(CPACK_SOURCE_TOPLEVEL_TAG "win64-Source") +set(CPACK_SOURCE_ZIP "ON") +set(CPACK_STRIP_FILES "") +set(CPACK_SYSTEM_NAME "win64") +set(CPACK_THREADS "1") +set(CPACK_TOPLEVEL_TAG "win64-Source") +set(CPACK_WIX_SIZEOF_VOID_P "8") + +if(NOT CPACK_PROPERTIES_FILE) + set(CPACK_PROPERTIES_FILE "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/MiniHW2.exe b/sem2/fedotow-p/MiniHW2/cmake-build-debug/MiniHW2.exe new file mode 100644 index 00000000..9d4a2949 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/MiniHW2.exe differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/Testing/Temporary/LastTest.log b/sem2/fedotow-p/MiniHW2/cmake-build-debug/Testing/Temporary/LastTest.log new file mode 100644 index 00000000..aca881bf --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/Testing/Temporary/LastTest.log @@ -0,0 +1,3 @@ +Start testing: Apr 09 00:18 RTZ 2 () +---------------------------------------------------------- +End testing: Apr 09 00:18 RTZ 2 () diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/Export/baf7b64a9c1b56d368d1c4c52c93ff8a/targets-debug.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/Export/baf7b64a9c1b56d368d1c4c52c93ff8a/targets-debug.cmake new file mode 100644 index 00000000..1c7d66ee --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/Export/baf7b64a9c1b56d368d1c4c52c93ff8a/targets-debug.cmake @@ -0,0 +1,19 @@ +#---------------------------------------------------------------- +# Generated CMake target import file for configuration "Debug". +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Import target "FLAC::FLAC" for configuration "Debug" +set_property(TARGET FLAC::FLAC APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) +set_target_properties(FLAC::FLAC PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "C;RC" + IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/libFLACd.a" + ) + +list(APPEND _cmake_import_check_targets FLAC::FLAC ) +list(APPEND _cmake_import_check_files_for_FLAC::FLAC "${_IMPORT_PREFIX}/lib/libFLACd.a" ) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/Export/baf7b64a9c1b56d368d1c4c52c93ff8a/targets.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/Export/baf7b64a9c1b56d368d1c4c52c93ff8a/targets.cmake new file mode 100644 index 00000000..bc10e0da --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/Export/baf7b64a9c1b56d368d1c4c52c93ff8a/targets.cmake @@ -0,0 +1,124 @@ +# Generated by CMake + +if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) + message(FATAL_ERROR "CMake >= 2.8.0 required") +endif() +if(CMAKE_VERSION VERSION_LESS "2.8.12") + message(FATAL_ERROR "CMake >= 2.8.12 required") +endif() +cmake_policy(PUSH) +cmake_policy(VERSION 2.8.12...3.28) +#---------------------------------------------------------------- +# Generated CMake target import file. +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Protect against multiple inclusion, which would fail when already imported targets are added once more. +set(_cmake_targets_defined "") +set(_cmake_targets_not_defined "") +set(_cmake_expected_targets "") +foreach(_cmake_expected_target IN ITEMS FLAC::FLAC) + list(APPEND _cmake_expected_targets "${_cmake_expected_target}") + if(TARGET "${_cmake_expected_target}") + list(APPEND _cmake_targets_defined "${_cmake_expected_target}") + else() + list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") + endif() +endforeach() +unset(_cmake_expected_target) +if(_cmake_targets_defined STREQUAL _cmake_expected_targets) + unset(_cmake_targets_defined) + unset(_cmake_targets_not_defined) + unset(_cmake_expected_targets) + unset(CMAKE_IMPORT_FILE_VERSION) + cmake_policy(POP) + return() +endif() +if(NOT _cmake_targets_defined STREQUAL "") + string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") + string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") + message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") +endif() +unset(_cmake_targets_defined) +unset(_cmake_targets_not_defined) +unset(_cmake_expected_targets) + + +# Compute the installation prefix relative to this file. +get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +if(_IMPORT_PREFIX STREQUAL "/") + set(_IMPORT_PREFIX "") +endif() + +# Create imported target FLAC::FLAC +add_library(FLAC::FLAC STATIC IMPORTED) + +set_target_properties(FLAC::FLAC PROPERTIES + INTERFACE_COMPILE_DEFINITIONS "\$<\$>:FLAC__NO_DLL>" + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_LINK_LIBRARIES "\$<\$:m>;Ogg::ogg" +) + +# Load information for each installed configuration. +file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/targets-*.cmake") +foreach(_cmake_config_file IN LISTS _cmake_config_files) + include("${_cmake_config_file}") +endforeach() +unset(_cmake_config_file) +unset(_cmake_config_files) + +# Cleanup temporary variables. +set(_IMPORT_PREFIX) + +# Loop over all imported files and verify that they actually exist +foreach(_cmake_target IN LISTS _cmake_import_check_targets) + if(CMAKE_VERSION VERSION_LESS "3.28" + OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target} + OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}") + foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") + if(NOT EXISTS "${_cmake_file}") + message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file + \"${_cmake_file}\" +but this file does not exist. Possible reasons include: +* The file was deleted, renamed, or moved to another location. +* An install or uninstall procedure did not complete successfully. +* The installation package was faulty and contained + \"${CMAKE_CURRENT_LIST_FILE}\" +but not all the files it references. +") + endif() + endforeach() + endif() + unset(_cmake_file) + unset("_cmake_import_check_files_for_${_cmake_target}") +endforeach() +unset(_cmake_target) +unset(_cmake_import_check_targets) + +# Make sure the targets which have been exported in some other +# export set exist. +unset(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) +foreach(_target "Ogg::ogg" ) + if(NOT TARGET "${_target}" ) + set(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets "${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets} ${_target}") + endif() +endforeach() + +if(DEFINED ${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) + if(CMAKE_FIND_PACKAGE_NAME) + set( ${CMAKE_FIND_PACKAGE_NAME}_FOUND FALSE) + set( ${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE "The following imported targets are referenced, but are missing: ${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets}") + else() + message(FATAL_ERROR "The following imported targets are referenced, but are missing: ${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets}") + endif() +endif() +unset(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) +cmake_policy(POP) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/CTestTestfile.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/CTestTestfile.cmake new file mode 100644 index 00000000..e4026ba7 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/CTestTestfile.cmake @@ -0,0 +1,8 @@ +# CMake generated Testfile for +# Source directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src +# Build directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +subdirs("src") +subdirs("microbench") diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/FLACTargets.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/FLACTargets.cmake new file mode 100644 index 00000000..a8560e68 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/FLACTargets.cmake @@ -0,0 +1,86 @@ +# Generated by CMake + +if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) + message(FATAL_ERROR "CMake >= 2.8.0 required") +endif() +if(CMAKE_VERSION VERSION_LESS "2.8.3") + message(FATAL_ERROR "CMake >= 2.8.3 required") +endif() +cmake_policy(PUSH) +cmake_policy(VERSION 2.8.3...3.28) +#---------------------------------------------------------------- +# Generated CMake target import file. +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Protect against multiple inclusion, which would fail when already imported targets are added once more. +set(_cmake_targets_defined "") +set(_cmake_targets_not_defined "") +set(_cmake_expected_targets "") +foreach(_cmake_expected_target IN ITEMS FLAC::FLAC) + list(APPEND _cmake_expected_targets "${_cmake_expected_target}") + if(TARGET "${_cmake_expected_target}") + list(APPEND _cmake_targets_defined "${_cmake_expected_target}") + else() + list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") + endif() +endforeach() +unset(_cmake_expected_target) +if(_cmake_targets_defined STREQUAL _cmake_expected_targets) + unset(_cmake_targets_defined) + unset(_cmake_targets_not_defined) + unset(_cmake_expected_targets) + unset(CMAKE_IMPORT_FILE_VERSION) + cmake_policy(POP) + return() +endif() +if(NOT _cmake_targets_defined STREQUAL "") + string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") + string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") + message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") +endif() +unset(_cmake_targets_defined) +unset(_cmake_targets_not_defined) +unset(_cmake_expected_targets) + + +# Create imported target FLAC::FLAC +add_library(FLAC::FLAC STATIC IMPORTED) + +set_target_properties(FLAC::FLAC PROPERTIES + INTERFACE_COMPILE_DEFINITIONS "\$<\$>:FLAC__NO_DLL>" + INTERFACE_INCLUDE_DIRECTORIES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include" + INTERFACE_LINK_LIBRARIES "\$<\$:m>;Ogg::ogg" +) + +# Import target "FLAC::FLAC" for configuration "Debug" +set_property(TARGET FLAC::FLAC APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) +set_target_properties(FLAC::FLAC PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "C;RC" + IMPORTED_LOCATION_DEBUG "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libFLACd.a" + ) + +# Make sure the targets which have been exported in some other +# export set exist. +unset(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) +foreach(_target "Ogg::ogg" ) + if(NOT TARGET "${_target}" ) + set(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets "${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets} ${_target}") + endif() +endforeach() + +if(DEFINED ${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) + if(CMAKE_FIND_PACKAGE_NAME) + set( ${CMAKE_FIND_PACKAGE_NAME}_FOUND FALSE) + set( ${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE "The following imported targets are referenced, but are missing: ${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets}") + else() + message(FATAL_ERROR "The following imported targets are referenced, but are missing: ${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets}") + endif() +endif() +unset(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) +cmake_policy(POP) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/cmake_install.cmake new file mode 100644 index 00000000..386d3c9e --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/cmake_install.cmake @@ -0,0 +1,83 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/MiniHW2") +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 "G:/CLion 2024.3/bin/mingw/bin/objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/FLAC/targets.cmake") + file(DIFFERENT _cmake_export_file_changed FILES + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/FLAC/targets.cmake" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/Export/baf7b64a9c1b56d368d1c4c52c93ff8a/targets.cmake") + if(_cmake_export_file_changed) + file(GLOB _cmake_old_config_files "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/FLAC/targets-*.cmake") + if(_cmake_old_config_files) + string(REPLACE ";" ", " _cmake_old_config_files_text "${_cmake_old_config_files}") + message(STATUS "Old export file \"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/FLAC/targets.cmake\" will be replaced. Removing files [${_cmake_old_config_files_text}].") + unset(_cmake_old_config_files_text) + file(REMOVE ${_cmake_old_config_files}) + endif() + unset(_cmake_old_config_files) + endif() + unset(_cmake_export_file_changed) + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/FLAC" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/Export/baf7b64a9c1b56d368d1c4c52c93ff8a/targets.cmake") + if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Dd][Ee][Bb][Uu][Gg])$") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/FLAC" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/CMakeFiles/Export/baf7b64a9c1b56d368d1c4c52c93ff8a/targets-debug.cmake") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/FLAC" TYPE FILE FILES + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/flac-config.cmake" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/flac-config-version.cmake" + ) +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/FLAC" TYPE FILE FILES + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/flac-config.cmake" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/flac-config-version.cmake" + ) +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/cmake_install.cmake") + include("C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/microbench/cmake_install.cmake") + +endif() + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/config.h b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/config.h new file mode 100644 index 00000000..a9fca25b --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/config.h @@ -0,0 +1,223 @@ +/* config.h.in. Generated from configure.ac by autoheader. */ + +/* Define if building universal (internal helper macro) */ +/* #undef AC_APPLE_UNIVERSAL_BUILD */ + +/* Target processor is big endian. */ +#define CPU_IS_BIG_ENDIAN 0 + +/* Target processor ARM64 */ +/* #undef FLAC__CPU_ARM64 */ + +/* Set FLAC__BYTES_PER_WORD to 8 (4 is the default) */ +#define ENABLE_64_BIT_WORDS 1 + +/* define to align allocated memory on 32-byte boundaries */ +/* #undef FLAC__ALIGN_MALLOC_DATA */ + +/* define if you have docbook-to-man or docbook2man */ +/* #undef FLAC__HAS_DOCBOOK_TO_MAN */ + +/* define if you have the ogg library */ +#define OGG_FOUND 1 +#define FLAC__HAS_OGG OGG_FOUND + +/* Set to 1 if is available. */ +#define FLAC__HAS_X86INTRIN 1 + +/* Set to 1 if is available. */ +#define FLAC__HAS_NEONINTRIN 0 + +/* Set to 1 if contains A64 intrinsics */ +#define FLAC__HAS_A64NEONINTRIN 0 + +/* define if building for Darwin / MacOS X */ +/* #undef FLAC__SYS_DARWIN */ + +/* define if building for Linux */ +/* #undef FLAC__SYS_LINUX */ + +/* define to enable use of AVX instructions */ +/* #undef WITH_AVX */ +#ifdef WITH_AVX + #define FLAC__USE_AVX +#endif + +/* Define to the commit date of the current git HEAD */ +#define GIT_COMMIT_DATE "20230623" + +/* Define to the short hash of the current git HEAD */ +#define GIT_COMMIT_HASH "28e4f05" + +/* Define to the tag of the current git HEAD */ +#define GIT_COMMIT_TAG "1.4.3" + +/* Compiler has the __builtin_bswap16 intrinsic */ +#define HAVE_BSWAP16 + +/* Compiler has the __builtin_bswap32 intrinsic */ +#define HAVE_BSWAP32 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_BYTESWAP_H */ + +/* define if you have clock_gettime */ +/* #undef HAVE_CLOCK_GETTIME */ + +/* Define to 1 if you have the header file. */ +#define HAVE_CPUID_H + +/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */ +#define HAVE_FSEEKO + +/* Define to 1 if you have the `getopt_long' function. */ +/* #undef HAVE_GETOPT_LONG */ + +/* Define if you have the iconv() function and it works. */ +/* #undef HAVE_ICONV */ + +/* Define to 1 if you have the header file. */ +#define HAVE_INTTYPES_H + +/* Define if you have and nl_langinfo(CODESET). */ +/* #undef HAVE_LANGINFO_CODESET */ + +/* lround support */ +#define HAVE_LROUND 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_MEMORY_H */ + +/* Define to 1 if you have the header file. */ +#define HAVE_STDINT_H + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_STDLIB_H */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_STRING_H */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_SYS_IOCTL_H */ + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_PARAM_H + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_SYS_STAT_H */ + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_TYPES_H + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_TERMIOS_H */ + +/* Define to 1 if typeof works with your compiler. */ +/* #undef HAVE_TYPEOF */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_UNISTD_H */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_X86INTRIN_H */ + +/* Define as const if the declaration of iconv() needs const. */ +/* #undef ICONV_CONST */ + +/* Define if debugging is disabled */ +/* #undef NDEBUG */ + +/* Name of package */ +/* #undef PACKAGE */ + +/* Define to the address where bug reports for this package should be sent. */ +/* #undef PACKAGE_BUGREPORT */ + +/* Define to the full name of this package. */ +/* #undef PACKAGE_NAME */ + +/* Define to the full name and version of this package. */ +/* #undef PACKAGE_STRING */ + +/* Define to the one symbol short name of this package. */ +/* #undef PACKAGE_TARNAME */ + +/* Define to the home page for this package. */ +/* #undef PACKAGE_URL */ + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "1.4.3" + +/* The size of `off_t', as computed by sizeof. */ +/* #undef SIZEOF_OFF_T */ + +/* The size of `void*', as computed by sizeof. */ +/* #undef SIZEOF_VOIDP */ + +/* Enable extensions on AIX 3, Interix. */ +#ifndef _ALL_SOURCE +#define _ALL_SOURCE +#endif + +/* Enable GNU extensions on systems that have them. */ +#ifndef _GNU_SOURCE +#define _GNU_SOURCE +#endif + +#ifndef _XOPEN_SOURCE +/* #undef DODEFINE_XOPEN_SOURCE */ +#ifdef DODEFINE_XOPEN_SOURCE +#define _XOPEN_SOURCE DODEFINE_XOPEN_SOURCE +#endif +#endif + +/* Enable threading extensions on Solaris. */ +#ifndef _POSIX_PTHREAD_SEMANTICS +/* #undef _POSIX_PTHREAD_SEMANTICS */ +#endif +/* Enable extensions on HP NonStop. */ +#ifndef _TANDEM_SOURCE +/* #undef _TANDEM_SOURCE */ +#endif +/* Enable general extensions on Solaris. */ +#ifndef __EXTENSIONS__ +#define DODEFINE_EXTENSIONS +#ifdef DODEFINE_EXTENSIONS +#define __EXTENSIONS__ DODEFINE_EXTENSIONS +#endif +#endif + + +/* Target processor is big endian. */ +#define WORDS_BIGENDIAN CPU_IS_BIG_ENDIAN + +/* Enable large inode numbers on Mac OS X 10.5. */ +#ifndef _DARWIN_USE_64_BIT_INODE +# define _DARWIN_USE_64_BIT_INODE 1 +#endif + +/* Number of bits in a file offset, on hosts where this is settable. */ +#ifndef _FILE_OFFSET_BITS +# define _FILE_OFFSET_BITS 64 +#endif + +/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */ +#ifndef _LARGEFILE_SOURCE +# define _LARGEFILE_SOURCE +#endif + +/* Define for large files, on AIX-style hosts. */ +/* #undef _LARGE_FILES */ + +/* Define to 1 if on MINIX. */ +/* #undef _MINIX */ + +/* Define to 2 if the system does not provide POSIX.1 features except with + this defined. */ +/* #undef _POSIX_1_SOURCE */ + +/* Define to 1 if you need to in order for `stat' and other things to work. */ +/* #undef _POSIX_SOURCE */ + +/* Define to __typeof__ if your compiler spells it that way. */ +/* #undef typeof */ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/flac-config-version.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/flac-config-version.cmake new file mode 100644 index 00000000..f112642f --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/flac-config-version.cmake @@ -0,0 +1,43 @@ +# This is a basic version file for the Config-mode of find_package(). +# It is used by write_basic_package_version_file() as input file for configure_file() +# to create a version-file which can be installed along a config.cmake file. +# +# The created file sets PACKAGE_VERSION_EXACT if the current version string and +# the requested version string are exactly the same and it sets +# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version. +# The variable CVF_VERSION must be set before calling configure_file(). + +set(PACKAGE_VERSION "1.4.3") + +if (PACKAGE_FIND_VERSION_RANGE) + # Package version must be in the requested version range + if ((PACKAGE_FIND_VERSION_RANGE_MIN STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MIN) + OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_GREATER PACKAGE_FIND_VERSION_MAX) + OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_GREATER_EQUAL PACKAGE_FIND_VERSION_MAX))) + set(PACKAGE_VERSION_COMPATIBLE FALSE) + else() + set(PACKAGE_VERSION_COMPATIBLE TRUE) + endif() +else() + if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) + set(PACKAGE_VERSION_COMPATIBLE FALSE) + else() + set(PACKAGE_VERSION_COMPATIBLE TRUE) + if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) + set(PACKAGE_VERSION_EXACT TRUE) + endif() + endif() +endif() + + +# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: +if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "") + return() +endif() + +# check that the installed version has the same 32/64bit-ness as the one which is currently searching: +if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") + math(EXPR installedBits "8 * 8") + set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") + set(PACKAGE_VERSION_UNSUITABLE TRUE) +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/flac-config.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/flac-config.cmake new file mode 100644 index 00000000..36d0ebe9 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/flac-config.cmake @@ -0,0 +1,41 @@ + +####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### +####### Any changes to this file will be overwritten by the next CMake run #### +####### The input file was flac-config.cmake.in ######## + +get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) + +macro(set_and_check _var _file) + set(${_var} "${_file}") + if(NOT EXISTS "${_file}") + message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") + endif() +endmacro() + +macro(check_required_components _NAME) + foreach(comp ${${_NAME}_FIND_COMPONENTS}) + if(NOT ${_NAME}_${comp}_FOUND) + if(${_NAME}_FIND_REQUIRED_${comp}) + set(${_NAME}_FOUND FALSE) + endif() + endif() + endforeach() +endmacro() + +#################################################################################### + +include(CMakeFindDependencyMacro) +if(NOT TARGET Ogg::ogg) + find_dependency(Ogg) +endif() + +include("${CMAKE_CURRENT_LIST_DIR}/targets.cmake") + +if(TARGET FLAC::FLAC) + set(FLAC_FLAC_FOUND 1) +endif() +if(TARGET FLAC::FLAC++) + set(FLAC_FLAC++_FOUND 1) +endif() + +check_required_components(FLAC) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/microbench/CTestTestfile.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/microbench/CTestTestfile.cmake new file mode 100644 index 00000000..0086025c --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/microbench/CTestTestfile.cmake @@ -0,0 +1,6 @@ +# CMake generated Testfile for +# Source directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/microbench +# Build directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/microbench +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/microbench/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/microbench/cmake_install.cmake new file mode 100644 index 00000000..a217467f --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/microbench/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/microbench + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/MiniHW2") +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 "G:/CLion 2024.3/bin/mingw/bin/objdump.exe") +endif() + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/src/CTestTestfile.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/src/CTestTestfile.cmake new file mode 100644 index 00000000..91502709 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/src/CTestTestfile.cmake @@ -0,0 +1,7 @@ +# CMake generated Testfile for +# Source directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src +# Build directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. +subdirs("libFLAC") diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/src/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/src/cmake_install.cmake new file mode 100644 index 00000000..dcd42682 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/src/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/MiniHW2") +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 "G:/CLion 2024.3/bin/mingw/bin/objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/libFLAC/cmake_install.cmake") + +endif() + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/src/libFLAC/CTestTestfile.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/src/libFLAC/CTestTestfile.cmake new file mode 100644 index 00000000..6c99cf43 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/src/libFLAC/CTestTestfile.cmake @@ -0,0 +1,6 @@ +# CMake generated Testfile for +# Source directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC +# Build directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/libFLAC +# +# This file includes the relevant testing commands required for +# testing this directory and lists subdirectories to be tested as well. diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/src/libFLAC/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/src/libFLAC/cmake_install.cmake new file mode 100644 index 00000000..a46b0b29 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-build/src/libFLAC/cmake_install.cmake @@ -0,0 +1,43 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/MiniHW2") +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 "G:/CLion 2024.3/bin/mingw/bin/objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libFLACd.a") +endif() + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-src b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-src new file mode 160000 index 00000000..28e4f052 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-src @@ -0,0 +1 @@ +Subproject commit 28e4f0528c76b296c561e922ba67d43751990599 diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/.ninja_log b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/.ninja_log new file mode 100644 index 00000000..3292e06c --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/.ninja_log @@ -0,0 +1,37 @@ +# ninja log v6 +1 66 7658493989201610 flac-populate-prefix/src/flac-populate-stamp/flac-populate-mkdir d6d7c9f653f82d67 +1 66 7658493989201610 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-mkdir d6d7c9f653f82d67 +3 169 7658494844814702 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-update 8d337cd3735b2b25 +66 2719 7658494015739319 flac-populate-prefix/src/flac-populate-stamp/flac-populate-download 56d9fa0b797f75f2 +491 572 7658494850465145 CMakeFiles/flac-populate-complete bf3aa97747b945d3 +66 2719 7658494015739319 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-download 56d9fa0b797f75f2 +3 169 7658494844814702 flac-populate-prefix/src/flac-populate-stamp/flac-populate-update 8d337cd3735b2b25 +169 239 7658494847128328 flac-populate-prefix/src/flac-populate-stamp/flac-populate-patch 42fff1c96ec7846a +430 490 7658494849646116 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-test 6da7013f28a12cea +169 239 7658494847128328 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-patch 42fff1c96ec7846a +239 304 7658494847768436 flac-populate-prefix/src/flac-populate-stamp/flac-populate-configure d9709073578ce605 +239 304 7658494847768436 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-configure d9709073578ce605 +304 367 7658494848404878 flac-populate-prefix/src/flac-populate-stamp/flac-populate-build 31c5ba94b837ee80 +304 367 7658494848404878 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-build 31c5ba94b837ee80 +367 429 7658494849028071 flac-populate-prefix/src/flac-populate-stamp/flac-populate-install 40b646d04ba874ce +367 429 7658494849028071 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-install 40b646d04ba874ce +430 490 7658494849646116 flac-populate-prefix/src/flac-populate-stamp/flac-populate-test 6da7013f28a12cea +491 572 7658494850465145 flac-populate-prefix/src/flac-populate-stamp/flac-populate-done bf3aa97747b945d3 +491 572 7658494850465145 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/flac-populate-complete bf3aa97747b945d3 +491 572 7658494850465145 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-done bf3aa97747b945d3 +4 162 7658495636209911 flac-populate-prefix/src/flac-populate-stamp/flac-populate-update 8d337cd3735b2b25 +4 162 7658495636209911 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-update 8d337cd3735b2b25 +162 225 7658495638375831 flac-populate-prefix/src/flac-populate-stamp/flac-populate-patch 42fff1c96ec7846a +162 225 7658495638375831 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-patch 42fff1c96ec7846a +225 284 7658495638962402 flac-populate-prefix/src/flac-populate-stamp/flac-populate-configure d9709073578ce605 +225 284 7658495638962402 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-configure d9709073578ce605 +284 345 7658495639568727 flac-populate-prefix/src/flac-populate-stamp/flac-populate-build 31c5ba94b837ee80 +284 345 7658495639568727 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-build 31c5ba94b837ee80 +345 407 7658495640192419 flac-populate-prefix/src/flac-populate-stamp/flac-populate-install 40b646d04ba874ce +345 407 7658495640192419 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-install 40b646d04ba874ce +408 472 7658495640829452 flac-populate-prefix/src/flac-populate-stamp/flac-populate-test 6da7013f28a12cea +408 472 7658495640829452 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-test 6da7013f28a12cea +472 560 7658495641719927 CMakeFiles/flac-populate-complete bf3aa97747b945d3 +472 560 7658495641719927 flac-populate-prefix/src/flac-populate-stamp/flac-populate-done bf3aa97747b945d3 +472 560 7658495641719927 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/flac-populate-complete bf3aa97747b945d3 +472 560 7658495641719927 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-done bf3aa97747b945d3 diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeCache.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeCache.txt new file mode 100644 index 00000000..8ee75de0 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeCache.txt @@ -0,0 +1,109 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild +# It was generated by CMake: G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Enable colored diagnostics throughout. +CMAKE_COLOR_DIAGNOSTICS:BOOL=ON + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/pkgRedirects + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/flac-populate + +//make program +CMAKE_MAKE_PROGRAM:FILEPATH=G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=flac-populate + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +flac-populate_BINARY_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild + +//Value Computed by CMake +flac-populate_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +flac-populate_SOURCE_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild + + +######################## +# INTERNAL cache entries +######################## + +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=30 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=5 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=G:/CLion 2024.3/bin/cmake/win/x64/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=G:/CLion 2024.3/bin/cmake/win/x64/bin/ctest.exe +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/3.30.5/CMakeSystem.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/3.30.5/CMakeSystem.cmake new file mode 100644 index 00000000..000cf698 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/3.30.5/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + + + +set(CMAKE_SYSTEM "Windows-10.0.26100") +set(CMAKE_SYSTEM_NAME "Windows") +set(CMAKE_SYSTEM_VERSION "10.0.26100") +set(CMAKE_SYSTEM_PROCESSOR "AMD64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/CMakeConfigureLog.yaml b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 00000000..3c5743d6 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,11 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:205 (message)" + - "CMakeLists.txt:16 (project)" + message: | + The system is: Windows - 10.0.26100 - AMD64 +... diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/TargetDirectories.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/TargetDirectories.txt new file mode 100644 index 00000000..ac9cdc48 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/flac-populate.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/rebuild_cache.dir diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/cmake.check_cache b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/cmake.check_cache new file mode 100644 index 00000000..3dccd731 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/flac-populate-complete b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/flac-populate-complete new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/flac-populate.dir/Labels.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/flac-populate.dir/Labels.json new file mode 100644 index 00000000..d9d33ad4 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/flac-populate.dir/Labels.json @@ -0,0 +1,46 @@ +{ + "sources" : + [ + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/flac-populate" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/flac-populate.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/flac-populate-complete.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-build.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-configure.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-download.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-install.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-mkdir.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-patch.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-test.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-update.rule" + } + ], + "target" : + { + "labels" : + [ + "flac-populate" + ], + "name" : "flac-populate" + } +} \ No newline at end of file diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/flac-populate.dir/Labels.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/flac-populate.dir/Labels.txt new file mode 100644 index 00000000..3ac829a3 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/flac-populate.dir/Labels.txt @@ -0,0 +1,14 @@ +# Target labels + flac-populate +# Source files and their labels +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/flac-populate +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/flac-populate.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/flac-populate-complete.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-build.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-configure.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-download.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-install.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-mkdir.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-patch.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-test.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-update.rule diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/rules.ninja b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/rules.ninja new file mode 100644 index 00000000..1ff9a474 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/rules.ninja @@ -0,0 +1,45 @@ +# 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: flac-populate +# Configurations: +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-subbuild -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-subbuild + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = "G:\CLion 2024.3\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 = "G:\CLion 2024.3\bin\ninja\win\x64\ninja.exe" -t targets + description = All primary targets available: + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeLists.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeLists.txt new file mode 100644 index 00000000..d13bd3e6 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeLists.txt @@ -0,0 +1,42 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.30.5) + +# Reject any attempt to use a toolchain file. We must not use one because +# we could be downloading it here. If the CMAKE_TOOLCHAIN_FILE environment +# variable is set, the cache variable will have been initialized from it. +unset(CMAKE_TOOLCHAIN_FILE CACHE) +unset(ENV{CMAKE_TOOLCHAIN_FILE}) + +# We name the project and the target for the ExternalProject_Add() call +# to something that will highlight to the user what we are working on if +# something goes wrong and an error message is produced. + +project(flac-populate NONE) + + +# Pass through things we've already detected in the main project to avoid +# paying the cost of redetecting them again in ExternalProject_Add() +set(GIT_EXECUTABLE [==[C:/Program Files/Git/cmd/git.exe]==]) +set(GIT_VERSION_STRING [==[2.49.0.windows.1]==]) +set_property(GLOBAL PROPERTY _CMAKE_FindGit_GIT_EXECUTABLE_VERSION + [==[C:/Program Files/Git/cmd/git.exe;2.49.0.windows.1]==] +) + + +include(ExternalProject) +ExternalProject_Add(flac-populate + "UPDATE_DISCONNECTED" "False" "GIT_REPOSITORY" "https://github.com/xiph/flac.git" "EXTERNALPROJECT_INTERNAL_ARGUMENT_SEPARATOR" "GIT_TAG" "1.4.3" "GIT_SHALLOW" "ON" "PATCH_COMMAND" "G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe" "-DFLAC_DIR=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" "-P" "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/tools/flac/PatchFLAC.cmake" + SOURCE_DIR "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + BINARY_DIR "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build" + CONFIGURE_COMMAND "" + BUILD_COMMAND "" + INSTALL_COMMAND "" + TEST_COMMAND "" + USES_TERMINAL_DOWNLOAD YES + USES_TERMINAL_UPDATE YES + USES_TERMINAL_PATCH YES +) + + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/build.ninja b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/build.ninja new file mode 100644 index 00000000..46b28b90 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/build.ninja @@ -0,0 +1,201 @@ +# 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: flac-populate +# Configurations: +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles\rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = C$:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-subbuild\ + +############################################# +# Utility command for flac-populate + +build flac-populate: phony CMakeFiles\flac-populate CMakeFiles\flac-populate-complete flac-populate-prefix\src\flac-populate-stamp\flac-populate-done flac-populate-prefix\src\flac-populate-stamp\flac-populate-build flac-populate-prefix\src\flac-populate-stamp\flac-populate-configure flac-populate-prefix\src\flac-populate-stamp\flac-populate-download flac-populate-prefix\src\flac-populate-stamp\flac-populate-install flac-populate-prefix\src\flac-populate-stamp\flac-populate-mkdir flac-populate-prefix\src\flac-populate-stamp\flac-populate-patch flac-populate-prefix\src\flac-populate-stamp\flac-populate-test flac-populate-prefix\src\flac-populate-stamp\flac-populate-update + + +############################################# +# Utility command for edit_cache + +build CMakeFiles\edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-subbuild && "G:\CLion 2024.3\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:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-subbuild && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-subbuild -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-subbuild" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles\rebuild_cache.util + + +############################################# +# Phony custom command for CMakeFiles\flac-populate + +build CMakeFiles\flac-populate | ${cmake_ninja_workdir}CMakeFiles\flac-populate: phony CMakeFiles\flac-populate-complete + + +############################################# +# Custom command for CMakeFiles\flac-populate-complete + +build CMakeFiles\flac-populate-complete flac-populate-prefix\src\flac-populate-stamp\flac-populate-done | ${cmake_ninja_workdir}CMakeFiles\flac-populate-complete ${cmake_ninja_workdir}flac-populate-prefix\src\flac-populate-stamp\flac-populate-done: CUSTOM_COMMAND flac-populate-prefix\src\flac-populate-stamp\flac-populate-install flac-populate-prefix\src\flac-populate-stamp\flac-populate-mkdir flac-populate-prefix\src\flac-populate-stamp\flac-populate-download flac-populate-prefix\src\flac-populate-stamp\flac-populate-update flac-populate-prefix\src\flac-populate-stamp\flac-populate-patch flac-populate-prefix\src\flac-populate-stamp\flac-populate-configure flac-populate-prefix\src\flac-populate-stamp\flac-populate-build flac-populate-prefix\src\flac-populate-stamp\flac-populate-install flac-populate-prefix\src\flac-populate-stamp\flac-populate-test + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-subbuild && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E make_directory C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/CMakeFiles/flac-populate-complete && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-done" + DESC = Completed 'flac-populate' + restat = 1 + + +############################################# +# Custom command for flac-populate-prefix\src\flac-populate-stamp\flac-populate-build + +build flac-populate-prefix\src\flac-populate-stamp\flac-populate-build | ${cmake_ninja_workdir}flac-populate-prefix\src\flac-populate-stamp\flac-populate-build: CUSTOM_COMMAND flac-populate-prefix\src\flac-populate-stamp\flac-populate-configure + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo_append && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-build" + DESC = No build step for 'flac-populate' + restat = 1 + + +############################################# +# Custom command for flac-populate-prefix\src\flac-populate-stamp\flac-populate-configure + +build flac-populate-prefix\src\flac-populate-stamp\flac-populate-configure | ${cmake_ninja_workdir}flac-populate-prefix\src\flac-populate-stamp\flac-populate-configure: CUSTOM_COMMAND flac-populate-prefix\tmp\flac-populate-cfgcmd.txt flac-populate-prefix\src\flac-populate-stamp\flac-populate-patch + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo_append && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-configure" + DESC = No configure step for 'flac-populate' + restat = 1 + + +############################################# +# Custom command for flac-populate-prefix\src\flac-populate-stamp\flac-populate-download + +build flac-populate-prefix\src\flac-populate-stamp\flac-populate-download | ${cmake_ninja_workdir}flac-populate-prefix\src\flac-populate-stamp\flac-populate-download: CUSTOM_COMMAND flac-populate-prefix\src\flac-populate-stamp\flac-populate-gitinfo.txt flac-populate-prefix\src\flac-populate-stamp\flac-populate-mkdir + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE -P C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/tmp/flac-populate-gitclone.cmake && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-download" + DESC = Performing download step (git clone) for 'flac-populate' + pool = console + restat = 1 + + +############################################# +# Custom command for flac-populate-prefix\src\flac-populate-stamp\flac-populate-install + +build flac-populate-prefix\src\flac-populate-stamp\flac-populate-install | ${cmake_ninja_workdir}flac-populate-prefix\src\flac-populate-stamp\flac-populate-install: CUSTOM_COMMAND flac-populate-prefix\src\flac-populate-stamp\flac-populate-build + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo_append && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-install" + DESC = No install step for 'flac-populate' + restat = 1 + + +############################################# +# Custom command for flac-populate-prefix\src\flac-populate-stamp\flac-populate-mkdir + +build flac-populate-prefix\src\flac-populate-stamp\flac-populate-mkdir | ${cmake_ninja_workdir}flac-populate-prefix\src\flac-populate-stamp\flac-populate-mkdir: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-subbuild && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -Dcfgdir= -P C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/tmp/flac-populate-mkdirs.cmake && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-mkdir" + DESC = Creating directories for 'flac-populate' + restat = 1 + + +############################################# +# Custom command for flac-populate-prefix\src\flac-populate-stamp\flac-populate-patch + +build flac-populate-prefix\src\flac-populate-stamp\flac-populate-patch | ${cmake_ninja_workdir}flac-populate-prefix\src\flac-populate-stamp\flac-populate-patch: CUSTOM_COMMAND flac-populate-prefix\src\flac-populate-stamp\flac-populate-patch-info.txt flac-populate-prefix\src\flac-populate-stamp\flac-populate-update + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-src && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DFLAC_DIR=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src -P C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/tools/flac/PatchFLAC.cmake && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-patch" + DESC = Performing patch step for 'flac-populate' + pool = console + restat = 1 + + +############################################# +# Custom command for flac-populate-prefix\src\flac-populate-stamp\flac-populate-test + +build flac-populate-prefix\src\flac-populate-stamp\flac-populate-test | ${cmake_ninja_workdir}flac-populate-prefix\src\flac-populate-stamp\flac-populate-test: CUSTOM_COMMAND flac-populate-prefix\src\flac-populate-stamp\flac-populate-install + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo_append && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-test" + DESC = No test step for 'flac-populate' + restat = 1 + + +############################################# +# Custom command for flac-populate-prefix\src\flac-populate-stamp\flac-populate-update + +build flac-populate-prefix\src\flac-populate-stamp\flac-populate-update | ${cmake_ninja_workdir}flac-populate-prefix\src\flac-populate-stamp\flac-populate-update: CUSTOM_COMMAND flac-populate-prefix\tmp\flac-populate-gitupdate.cmake flac-populate-prefix\src\flac-populate-stamp\flac-populate-update-info.txt flac-populate-prefix\src\flac-populate-stamp\flac-populate-download + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-src && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -Dcan_fetch=YES -DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE -P C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/tmp/flac-populate-gitupdate.cmake" + DESC = Performing update step for 'flac-populate' + pool = console + +# ============================================================================= +# Target aliases. + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild + +build all: phony flac-populate + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | CMakeCache.txt CMakeFiles\3.30.5\CMakeSystem.cmake CMakeLists.txt G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeGenericSystem.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeInitializeConfigs.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeSystemSpecificInformation.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeSystemSpecificInitialize.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\PatchInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\RepositoryInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\UpdateInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\cfgcmd.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\gitclone.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\gitupdate.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\mkdirs.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\shared_internal_commands.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\Windows-Initialize.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\Windows.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\WindowsPaths.cmake flac-populate-prefix\tmp\flac-populate-mkdirs.cmake + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build CMakeCache.txt CMakeFiles\3.30.5\CMakeSystem.cmake CMakeLists.txt G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeGenericSystem.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeInitializeConfigs.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeSystemSpecificInformation.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeSystemSpecificInitialize.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\PatchInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\RepositoryInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\UpdateInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\cfgcmd.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\gitclone.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\gitupdate.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\mkdirs.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\shared_internal_commands.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\Windows-Initialize.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\Windows.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\WindowsPaths.cmake flac-populate-prefix\tmp\flac-populate-mkdirs.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/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/cmake_install.cmake new file mode 100644 index 00000000..b6379007 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/cmake_install.cmake @@ -0,0 +1,52 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/flac-populate") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +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:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-build b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-build new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-configure b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-configure new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-done b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-done new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-download b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-download new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-gitclone-lastrun.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-gitclone-lastrun.txt new file mode 100644 index 00000000..346c3803 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-gitclone-lastrun.txt @@ -0,0 +1,15 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=git +command=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/tmp/flac-populate-gitclone.cmake +source_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src +work_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps +repository=https://github.com/xiph/flac.git +remote=origin +init_submodules=TRUE +recurse_submodules=--recursive +submodules= +CMP0097=NEW + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-gitinfo.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-gitinfo.txt new file mode 100644 index 00000000..346c3803 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-gitinfo.txt @@ -0,0 +1,15 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=git +command=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/tmp/flac-populate-gitclone.cmake +source_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src +work_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps +repository=https://github.com/xiph/flac.git +remote=origin +init_submodules=TRUE +recurse_submodules=--recursive +submodules= +CMP0097=NEW + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-install b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-install new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-mkdir b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-mkdir new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-patch b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-patch new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-patch-info.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-patch-info.txt new file mode 100644 index 00000000..da939628 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-patch-info.txt @@ -0,0 +1,6 @@ +# This is a generated file and its contents are an internal implementation detail. +# The update step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-DFLAC_DIR=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/tools/flac/PatchFLAC.cmake +work_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-test b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-test new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-update-info.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-update-info.txt new file mode 100644 index 00000000..a477c717 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-update-info.txt @@ -0,0 +1,7 @@ +# This is a generated file and its contents are an internal implementation detail. +# The patch step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command (connected)=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-Dcan_fetch=YES;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/tmp/flac-populate-gitupdate.cmake +command (disconnected)=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-Dcan_fetch=NO;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/tmp/flac-populate-gitupdate.cmake +work_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/tmp/flac-populate-cfgcmd.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/tmp/flac-populate-cfgcmd.txt new file mode 100644 index 00000000..6a6ed5fd --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/tmp/flac-populate-cfgcmd.txt @@ -0,0 +1 @@ +cmd='' diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/tmp/flac-populate-gitclone.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/tmp/flac-populate-gitclone.cmake new file mode 100644 index 00000000..e2c006a6 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/tmp/flac-populate-gitclone.cmake @@ -0,0 +1,87 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +if(EXISTS "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-gitclone-lastrun.txt" AND EXISTS "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-gitinfo.txt" AND + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-gitclone-lastrun.txt" IS_NEWER_THAN "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-gitinfo.txt") + message(VERBOSE + "Avoiding repeated git clone, stamp file is up to date: " + "'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-gitclone-lastrun.txt'" + ) + return() +endif() + +# Even at VERBOSE level, we don't want to see the commands executed, but +# enabling them to be shown for DEBUG may be useful to help diagnose problems. +cmake_language(GET_MESSAGE_LOG_LEVEL active_log_level) +if(active_log_level MATCHES "DEBUG|TRACE") + set(maybe_show_command COMMAND_ECHO STDOUT) +else() + set(maybe_show_command "") +endif() + +execute_process( + COMMAND ${CMAKE_COMMAND} -E rm -rf "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + RESULT_VARIABLE error_code + ${maybe_show_command} +) +if(error_code) + message(FATAL_ERROR "Failed to remove directory: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src'") +endif() + +# try the clone 3 times in case there is an odd git clone issue +set(error_code 1) +set(number_of_tries 0) +while(error_code AND number_of_tries LESS 3) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" + clone --no-checkout --depth 1 --no-single-branch --config "advice.detachedHead=false" "https://github.com/xiph/flac.git" "flac-src" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) + math(EXPR number_of_tries "${number_of_tries} + 1") +endwhile() +if(number_of_tries GREATER 1) + message(NOTICE "Had to git clone more than once: ${number_of_tries} times.") +endif() +if(error_code) + message(FATAL_ERROR "Failed to clone repository: 'https://github.com/xiph/flac.git'") +endif() + +execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" + checkout "1.4.3" -- + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + RESULT_VARIABLE error_code + ${maybe_show_command} +) +if(error_code) + message(FATAL_ERROR "Failed to checkout tag: '1.4.3'") +endif() + +set(init_submodules TRUE) +if(init_submodules) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" + submodule update --recursive --init + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) +endif() +if(error_code) + message(FATAL_ERROR "Failed to update submodules in: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src'") +endif() + +# Complete success, update the script-last-run stamp file: +# +execute_process( + COMMAND ${CMAKE_COMMAND} -E copy "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-gitinfo.txt" "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-gitclone-lastrun.txt" + RESULT_VARIABLE error_code + ${maybe_show_command} +) +if(error_code) + message(FATAL_ERROR "Failed to copy script-last-run stamp file: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/flac-populate-gitclone-lastrun.txt'") +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/tmp/flac-populate-gitupdate.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/tmp/flac-populate-gitupdate.cmake new file mode 100644 index 00000000..1829ccc0 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/tmp/flac-populate-gitupdate.cmake @@ -0,0 +1,317 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +# Even at VERBOSE level, we don't want to see the commands executed, but +# enabling them to be shown for DEBUG may be useful to help diagnose problems. +cmake_language(GET_MESSAGE_LOG_LEVEL active_log_level) +if(active_log_level MATCHES "DEBUG|TRACE") + set(maybe_show_command COMMAND_ECHO STDOUT) +else() + set(maybe_show_command "") +endif() + +function(do_fetch) + message(VERBOSE "Fetching latest from the remote origin") + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git fetch --tags --force "origin" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + COMMAND_ERROR_IS_FATAL LAST + ${maybe_show_command} + ) +endfunction() + +function(get_hash_for_ref ref out_var err_var) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git rev-parse "${ref}^0" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE ref_hash + ERROR_VARIABLE error_msg + OUTPUT_STRIP_TRAILING_WHITESPACE + ) + if(error_code) + set(${out_var} "" PARENT_SCOPE) + else() + set(${out_var} "${ref_hash}" PARENT_SCOPE) + endif() + set(${err_var} "${error_msg}" PARENT_SCOPE) +endfunction() + +get_hash_for_ref(HEAD head_sha error_msg) +if(head_sha STREQUAL "") + message(FATAL_ERROR "Failed to get the hash for HEAD:\n${error_msg}") +endif() + +if("${can_fetch}" STREQUAL "") + set(can_fetch "YES") +endif() + +execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git show-ref "1.4.3" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + OUTPUT_VARIABLE show_ref_output +) +if(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/remotes/") + # Given a full remote/branch-name and we know about it already. Since + # branches can move around, we should always fetch, if permitted. + if(can_fetch) + do_fetch() + endif() + set(checkout_name "1.4.3") + +elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/tags/") + # Given a tag name that we already know about. We don't know if the tag we + # have matches the remote though (tags can move), so we should fetch. As a + # special case to preserve backward compatibility, if we are already at the + # same commit as the tag we hold locally, don't do a fetch and assume the tag + # hasn't moved on the remote. + # FIXME: We should provide an option to always fetch for this case + get_hash_for_ref("1.4.3" tag_sha error_msg) + if(tag_sha STREQUAL head_sha) + message(VERBOSE "Already at requested tag: 1.4.3") + return() + endif() + + if(can_fetch) + do_fetch() + endif() + set(checkout_name "1.4.3") + +elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/heads/") + # Given a branch name without any remote and we already have a branch by that + # name. We might already have that branch checked out or it might be a + # different branch. It isn't fully safe to use a bare branch name without the + # remote, so do a fetch (if allowed) and replace the ref with one that + # includes the remote. + if(can_fetch) + do_fetch() + endif() + set(checkout_name "origin/1.4.3") + +else() + get_hash_for_ref("1.4.3" tag_sha error_msg) + if(tag_sha STREQUAL head_sha) + # Have the right commit checked out already + message(VERBOSE "Already at requested ref: ${tag_sha}") + return() + + elseif(tag_sha STREQUAL "") + # We don't know about this ref yet, so we have no choice but to fetch. + if(NOT can_fetch) + message(FATAL_ERROR + "Requested git ref \"1.4.3\" is not present locally, and not " + "allowed to contact remote due to UPDATE_DISCONNECTED setting." + ) + endif() + + # We deliberately swallow any error message at the default log level + # because it can be confusing for users to see a failed git command. + # That failure is being handled here, so it isn't an error. + if(NOT error_msg STREQUAL "") + message(DEBUG "${error_msg}") + endif() + do_fetch() + set(checkout_name "1.4.3") + + else() + # We have the commit, so we know we were asked to find a commit hash + # (otherwise it would have been handled further above), but we don't + # have that commit checked out yet. We don't need to fetch from the remote. + set(checkout_name "1.4.3") + if(NOT error_msg STREQUAL "") + message(WARNING "${error_msg}") + endif() + + endif() +endif() + +set(git_update_strategy "REBASE") +if(git_update_strategy STREQUAL "") + # Backward compatibility requires REBASE as the default behavior + set(git_update_strategy REBASE) +endif() + +if(git_update_strategy MATCHES "^REBASE(_CHECKOUT)?$") + # Asked to potentially try to rebase first, maybe with fallback to checkout. + # We can't if we aren't already on a branch and we shouldn't if that local + # branch isn't tracking the one we want to checkout. + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git symbolic-ref -q HEAD + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + OUTPUT_VARIABLE current_branch + OUTPUT_STRIP_TRAILING_WHITESPACE + # Don't test for an error. If this isn't a branch, we get a non-zero error + # code but empty output. + ) + + if(current_branch STREQUAL "") + # Not on a branch, checkout is the only sensible option since any rebase + # would always fail (and backward compatibility requires us to checkout in + # this situation) + set(git_update_strategy CHECKOUT) + + else() + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git for-each-ref "--format=%(upstream:short)" "${current_branch}" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + OUTPUT_VARIABLE upstream_branch + OUTPUT_STRIP_TRAILING_WHITESPACE + COMMAND_ERROR_IS_FATAL ANY # There is no error if no upstream is set + ) + if(NOT upstream_branch STREQUAL checkout_name) + # Not safe to rebase when asked to checkout a different branch to the one + # we are tracking. If we did rebase, we could end up with arbitrary + # commits added to the ref we were asked to checkout if the current local + # branch happens to be able to rebase onto the target branch. There would + # be no error message and the user wouldn't know this was occurring. + set(git_update_strategy CHECKOUT) + endif() + + endif() +elseif(NOT git_update_strategy STREQUAL "CHECKOUT") + message(FATAL_ERROR "Unsupported git update strategy: ${git_update_strategy}") +endif() + + +# Check if stash is needed +execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git status --porcelain + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE repo_status +) +if(error_code) + message(FATAL_ERROR "Failed to get the status") +endif() +string(LENGTH "${repo_status}" need_stash) + +# If not in clean state, stash changes in order to be able to perform a +# rebase or checkout without losing those changes permanently +if(need_stash) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash save --quiet;--include-untracked + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) +endif() + +if(git_update_strategy STREQUAL "CHECKOUT") + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git checkout "${checkout_name}" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) +else() + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git rebase "${checkout_name}" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE rebase_output + ERROR_VARIABLE rebase_output + ) + if(error_code) + # Rebase failed, undo the rebase attempt before continuing + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git rebase --abort + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + ${maybe_show_command} + ) + + if(NOT git_update_strategy STREQUAL "REBASE_CHECKOUT") + # Not allowed to do a checkout as a fallback, so cannot proceed + if(need_stash) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + ${maybe_show_command} + ) + endif() + message(FATAL_ERROR "\nFailed to rebase in: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src'." + "\nOutput from the attempted rebase follows:" + "\n${rebase_output}" + "\n\nYou will have to resolve the conflicts manually") + endif() + + # Fall back to checkout. We create an annotated tag so that the user + # can manually inspect the situation and revert if required. + # We can't log the failed rebase output because MSVC sees it and + # intervenes, causing the build to fail even though it completes. + # Write it to a file instead. + string(TIMESTAMP tag_timestamp "%Y%m%dT%H%M%S" UTC) + set(tag_name _cmake_ExternalProject_moved_from_here_${tag_timestamp}Z) + set(error_log_file ${CMAKE_CURRENT_LIST_DIR}/rebase_error_${tag_timestamp}Z.log) + file(WRITE ${error_log_file} "${rebase_output}") + message(WARNING "Rebase failed, output has been saved to ${error_log_file}" + "\nFalling back to checkout, previous commit tagged as ${tag_name}") + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git tag -a + -m "ExternalProject attempting to move from here to ${checkout_name}" + ${tag_name} + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) + + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git checkout "${checkout_name}" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) + endif() +endif() + +if(need_stash) + # Put back the stashed changes + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) + if(error_code) + # Stash pop --index failed: Try again dropping the index + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git reset --hard --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + ${maybe_show_command} + ) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash pop --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) + if(error_code) + # Stash pop failed: Restore previous state. + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git reset --hard --quiet ${head_sha} + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + ${maybe_show_command} + ) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + ${maybe_show_command} + ) + message(FATAL_ERROR "\nFailed to unstash changes in: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src'." + "\nYou will have to resolve the conflicts manually") + endif() + endif() +endif() + +set(init_submodules "TRUE") +if(init_submodules) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" + --git-dir=.git + submodule update --recursive --init + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/tmp/flac-populate-mkdirs.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/tmp/flac-populate-mkdirs.cmake new file mode 100644 index 00000000..049589df --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/tmp/flac-populate-mkdirs.cmake @@ -0,0 +1,27 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +# If CMAKE_DISABLE_SOURCE_CHANGES is set to true and the source directory is an +# existing directory in our source tree, calling file(MAKE_DIRECTORY) on it +# would cause a fatal error, even though it would be a no-op. +if(NOT EXISTS "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src") + file(MAKE_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src") +endif() +file(MAKE_DIRECTORY + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/tmp" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp" +) + +set(configSubDirs ) +foreach(subDir IN LISTS configSubDirs) + file(MAKE_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp/${subDir}") +endforeach() +if(cfgdir) + file(MAKE_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-subbuild/flac-populate-prefix/src/flac-populate-stamp${cfgdir}") # cfgdir has leading slash +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/Export/778b4f54a68e80ec034bf381f364ca2c/freetype-config-debug.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/Export/778b4f54a68e80ec034bf381f364ca2c/freetype-config-debug.cmake new file mode 100644 index 00000000..b555fc39 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/Export/778b4f54a68e80ec034bf381f364ca2c/freetype-config-debug.cmake @@ -0,0 +1,19 @@ +#---------------------------------------------------------------- +# Generated CMake target import file for configuration "Debug". +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Import target "freetype" for configuration "Debug" +set_property(TARGET freetype APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) +set_target_properties(freetype PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "C;RC" + IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/libfreetyped.a" + ) + +list(APPEND _cmake_import_check_targets freetype ) +list(APPEND _cmake_import_check_files_for_freetype "${_IMPORT_PREFIX}/lib/libfreetyped.a" ) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/Export/778b4f54a68e80ec034bf381f364ca2c/freetype-config.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/Export/778b4f54a68e80ec034bf381f364ca2c/freetype-config.cmake new file mode 100644 index 00000000..f50bbecd --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/Export/778b4f54a68e80ec034bf381f364ca2c/freetype-config.cmake @@ -0,0 +1,113 @@ +# Generated by CMake + +if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) + message(FATAL_ERROR "CMake >= 2.8.0 required") +endif() +if(CMAKE_VERSION VERSION_LESS "3.0.0") + message(FATAL_ERROR "CMake >= 3.0.0 required") +endif() +cmake_policy(PUSH) +cmake_policy(VERSION 3.0.0...3.28) +#---------------------------------------------------------------- +# Generated CMake target import file. +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Protect against multiple inclusion, which would fail when already imported targets are added once more. +set(_cmake_targets_defined "") +set(_cmake_targets_not_defined "") +set(_cmake_expected_targets "") +foreach(_cmake_expected_target IN ITEMS freetype Freetype::Freetype) + list(APPEND _cmake_expected_targets "${_cmake_expected_target}") + if(TARGET "${_cmake_expected_target}") + list(APPEND _cmake_targets_defined "${_cmake_expected_target}") + else() + list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") + endif() +endforeach() +unset(_cmake_expected_target) +if(_cmake_targets_defined STREQUAL _cmake_expected_targets) + unset(_cmake_targets_defined) + unset(_cmake_targets_not_defined) + unset(_cmake_expected_targets) + unset(CMAKE_IMPORT_FILE_VERSION) + cmake_policy(POP) + return() +endif() +if(NOT _cmake_targets_defined STREQUAL "") + string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") + string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") + message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") +endif() +unset(_cmake_targets_defined) +unset(_cmake_targets_not_defined) +unset(_cmake_expected_targets) + + +# Compute the installation prefix relative to this file. +get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +if(_IMPORT_PREFIX STREQUAL "/") + set(_IMPORT_PREFIX "") +endif() + +# Create imported target freetype +add_library(freetype STATIC IMPORTED) + +set_target_properties(freetype PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include/freetype2" +) + +# Create imported target Freetype::Freetype +add_library(Freetype::Freetype INTERFACE IMPORTED) + +set_target_properties(Freetype::Freetype PROPERTIES + INTERFACE_LINK_LIBRARIES "freetype" +) + +# Load information for each installed configuration. +file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/freetype-config-*.cmake") +foreach(_cmake_config_file IN LISTS _cmake_config_files) + include("${_cmake_config_file}") +endforeach() +unset(_cmake_config_file) +unset(_cmake_config_files) + +# Cleanup temporary variables. +set(_IMPORT_PREFIX) + +# Loop over all imported files and verify that they actually exist +foreach(_cmake_target IN LISTS _cmake_import_check_targets) + if(CMAKE_VERSION VERSION_LESS "3.28" + OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target} + OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}") + foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") + if(NOT EXISTS "${_cmake_file}") + message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file + \"${_cmake_file}\" +but this file does not exist. Possible reasons include: +* The file was deleted, renamed, or moved to another location. +* An install or uninstall procedure did not complete successfully. +* The installation package was faulty and contained + \"${CMAKE_CURRENT_LIST_FILE}\" +but not all the files it references. +") + endif() + endforeach() + endif() + unset(_cmake_file) + unset("_cmake_import_check_files_for_${_cmake_target}") +endforeach() +unset(_cmake_target) +unset(_cmake_import_check_targets) + +# This file does not depend on other imported targets which have +# been exported from the same project but in a separate export set. + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) +cmake_policy(POP) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/builds/windows/ftdebug.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/builds/windows/ftdebug.c.obj new file mode 100644 index 00000000..3d8aa105 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/builds/windows/ftdebug.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/builds/windows/ftsystem.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/builds/windows/ftsystem.c.obj new file mode 100644 index 00000000..3e3a25cc Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/builds/windows/ftsystem.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/autofit/autofit.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/autofit/autofit.c.obj new file mode 100644 index 00000000..edce5fce Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/autofit/autofit.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbase.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbase.c.obj new file mode 100644 index 00000000..93e009c8 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbase.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbbox.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbbox.c.obj new file mode 100644 index 00000000..dbbe5f43 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbbox.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbdf.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbdf.c.obj new file mode 100644 index 00000000..f1cf972f Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbdf.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbitmap.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbitmap.c.obj new file mode 100644 index 00000000..ce8d0220 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbitmap.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftcid.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftcid.c.obj new file mode 100644 index 00000000..4fc176ad Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftcid.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftfstype.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftfstype.c.obj new file mode 100644 index 00000000..76183889 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftfstype.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftgasp.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftgasp.c.obj new file mode 100644 index 00000000..b752bef5 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftgasp.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftglyph.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftglyph.c.obj new file mode 100644 index 00000000..87f10ffe Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftglyph.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftgxval.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftgxval.c.obj new file mode 100644 index 00000000..86211917 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftgxval.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftinit.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftinit.c.obj new file mode 100644 index 00000000..8124f8c1 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftinit.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftmm.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftmm.c.obj new file mode 100644 index 00000000..1e1dca4b Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftmm.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftotval.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftotval.c.obj new file mode 100644 index 00000000..49e7e936 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftotval.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftpatent.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftpatent.c.obj new file mode 100644 index 00000000..8ae4196e Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftpatent.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftpfr.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftpfr.c.obj new file mode 100644 index 00000000..6eccbee4 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftpfr.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftstroke.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftstroke.c.obj new file mode 100644 index 00000000..cc174ada Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftstroke.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftsynth.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftsynth.c.obj new file mode 100644 index 00000000..21be0918 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftsynth.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/fttype1.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/fttype1.c.obj new file mode 100644 index 00000000..4c92fb34 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/fttype1.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftver.rc.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftver.rc.obj new file mode 100644 index 00000000..fcab6b30 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftver.rc.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftwinfnt.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftwinfnt.c.obj new file mode 100644 index 00000000..a238b28b Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftwinfnt.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/bdf/bdf.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/bdf/bdf.c.obj new file mode 100644 index 00000000..697227e9 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/bdf/bdf.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/bzip2/ftbzip2.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/bzip2/ftbzip2.c.obj new file mode 100644 index 00000000..4d6f1419 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/bzip2/ftbzip2.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/cache/ftcache.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/cache/ftcache.c.obj new file mode 100644 index 00000000..78d64c02 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/cache/ftcache.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/cff/cff.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/cff/cff.c.obj new file mode 100644 index 00000000..13f0b2ac Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/cff/cff.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/cid/type1cid.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/cid/type1cid.c.obj new file mode 100644 index 00000000..4da11a83 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/cid/type1cid.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/gzip/ftgzip.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/gzip/ftgzip.c.obj new file mode 100644 index 00000000..3f142f06 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/gzip/ftgzip.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/lzw/ftlzw.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/lzw/ftlzw.c.obj new file mode 100644 index 00000000..2b002ab5 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/lzw/ftlzw.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/pcf/pcf.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/pcf/pcf.c.obj new file mode 100644 index 00000000..68d37f17 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/pcf/pcf.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/pfr/pfr.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/pfr/pfr.c.obj new file mode 100644 index 00000000..e5ed0085 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/pfr/pfr.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/psaux/psaux.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/psaux/psaux.c.obj new file mode 100644 index 00000000..b50650b8 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/psaux/psaux.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/pshinter/pshinter.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/pshinter/pshinter.c.obj new file mode 100644 index 00000000..d032371b Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/pshinter/pshinter.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/psnames/psnames.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/psnames/psnames.c.obj new file mode 100644 index 00000000..b9ef7057 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/psnames/psnames.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/raster/raster.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/raster/raster.c.obj new file mode 100644 index 00000000..96983f27 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/raster/raster.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/sdf/sdf.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/sdf/sdf.c.obj new file mode 100644 index 00000000..7b387e20 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/sdf/sdf.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/sfnt/sfnt.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/sfnt/sfnt.c.obj new file mode 100644 index 00000000..f892a4b2 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/sfnt/sfnt.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/smooth/smooth.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/smooth/smooth.c.obj new file mode 100644 index 00000000..63b97f64 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/smooth/smooth.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/svg/svg.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/svg/svg.c.obj new file mode 100644 index 00000000..e3db723b Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/svg/svg.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/truetype/truetype.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/truetype/truetype.c.obj new file mode 100644 index 00000000..fac602eb Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/truetype/truetype.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/type1/type1.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/type1/type1.c.obj new file mode 100644 index 00000000..6c93bf22 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/type1/type1.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/type42/type42.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/type42/type42.c.obj new file mode 100644 index 00000000..bf9d8392 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/type42/type42.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/winfonts/winfnt.c.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/winfonts/winfnt.c.obj new file mode 100644 index 00000000..07005a70 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/freetype.dir/src/winfonts/winfnt.c.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/cmake_install.cmake new file mode 100644 index 00000000..8e973ec9 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/cmake_install.cmake @@ -0,0 +1,70 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/MiniHW2") +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 "G:/CLion 2024.3/bin/mingw/bin/objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libfreetyped.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "headers" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/freetype/freetype-config.cmake") + file(DIFFERENT _cmake_export_file_changed FILES + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/freetype/freetype-config.cmake" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/Export/778b4f54a68e80ec034bf381f364ca2c/freetype-config.cmake") + if(_cmake_export_file_changed) + file(GLOB _cmake_old_config_files "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/freetype/freetype-config-*.cmake") + if(_cmake_old_config_files) + string(REPLACE ";" ", " _cmake_old_config_files_text "${_cmake_old_config_files}") + message(STATUS "Old export file \"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/freetype/freetype-config.cmake\" will be replaced. Removing files [${_cmake_old_config_files_text}].") + unset(_cmake_old_config_files_text) + file(REMOVE ${_cmake_old_config_files}) + endif() + unset(_cmake_old_config_files) + endif() + unset(_cmake_export_file_changed) + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/freetype" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/Export/778b4f54a68e80ec034bf381f364ca2c/freetype-config.cmake") + if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Dd][Ee][Bb][Uu][Gg])$") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/freetype" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/CMakeFiles/Export/778b4f54a68e80ec034bf381f364ca2c/freetype-config-debug.cmake") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "headers" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/freetype" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/freetype-config-version.cmake") +endif() + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/freetype-config-version.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/freetype-config-version.cmake new file mode 100644 index 00000000..0554d8c2 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/freetype-config-version.cmake @@ -0,0 +1,65 @@ +# This is a basic version file for the Config-mode of find_package(). +# It is used by write_basic_package_version_file() as input file for configure_file() +# to create a version-file which can be installed along a config.cmake file. +# +# The created file sets PACKAGE_VERSION_EXACT if the current version string and +# the requested version string are exactly the same and it sets +# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version, +# but only if the requested major version is the same as the current one. +# The variable CVF_VERSION must be set before calling configure_file(). + + +set(PACKAGE_VERSION "2.13.2") + +if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) + set(PACKAGE_VERSION_COMPATIBLE FALSE) +else() + + if("2.13.2" MATCHES "^([0-9]+)\\.") + set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}") + if(NOT CVF_VERSION_MAJOR VERSION_EQUAL 0) + string(REGEX REPLACE "^0+" "" CVF_VERSION_MAJOR "${CVF_VERSION_MAJOR}") + endif() + else() + set(CVF_VERSION_MAJOR "2.13.2") + endif() + + if(PACKAGE_FIND_VERSION_RANGE) + # both endpoints of the range must have the expected major version + math (EXPR CVF_VERSION_MAJOR_NEXT "${CVF_VERSION_MAJOR} + 1") + if (NOT PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR + OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX_MAJOR STREQUAL CVF_VERSION_MAJOR) + OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX VERSION_LESS_EQUAL CVF_VERSION_MAJOR_NEXT))) + set(PACKAGE_VERSION_COMPATIBLE FALSE) + elseif(PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR + AND ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS_EQUAL PACKAGE_FIND_VERSION_MAX) + OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MAX))) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + else() + set(PACKAGE_VERSION_COMPATIBLE FALSE) + endif() + else() + if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + else() + set(PACKAGE_VERSION_COMPATIBLE FALSE) + endif() + + if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) + set(PACKAGE_VERSION_EXACT TRUE) + endif() + endif() +endif() + + +# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: +if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "") + return() +endif() + +# check that the installed version has the same 32/64bit-ness as the one which is currently searching: +if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") + math(EXPR installedBits "8 * 8") + set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") + set(PACKAGE_VERSION_UNSUITABLE TRUE) +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/freetype2.pc b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/freetype2.pc new file mode 100644 index 00000000..04a3b3b6 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/freetype2.pc @@ -0,0 +1,14 @@ +prefix=C:/Program Files (x86)/MiniHW2 +exec_prefix=${prefix} +libdir=${prefix}/lib +includedir=${prefix}/include + +Name: FreeType 2 +URL: https://freetype.org +Description: A free, high-quality, and portable font engine. +Version: 26.1.20 +Requires: +Requires.private: +Libs: -L${libdir} -lfreetype +Libs.private: +Cflags: -I${includedir}/freetype2 diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config/ftconfig.h b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config/ftconfig.h new file mode 100644 index 00000000..a8515169 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config/ftconfig.h @@ -0,0 +1,51 @@ +/**************************************************************************** + * + * ftconfig.h + * + * ANSI-specific configuration file (specification only). + * + * Copyright (C) 1996-2023 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * This header file contains a number of macro definitions that are used by + * the rest of the engine. Most of the macros here are automatically + * determined at compile time, and you should not need to change it to port + * FreeType, except to compile the library with a non-ANSI compiler. + * + * Note however that if some specific modifications are needed, we advise + * you to place a modified copy in your build directory. + * + * The build directory is usually `builds/`, and contains + * system-specific files that are always included first when building the + * library. + * + * This ANSI version should stay in `include/config/`. + * + */ + +#ifndef FTCONFIG_H_ +#define FTCONFIG_H_ + +#include +#include FT_CONFIG_OPTIONS_H +#include FT_CONFIG_STANDARD_LIBRARY_H + +#include +#include +#include + +#endif /* FTCONFIG_H_ */ + + +/* END */ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config/ftoption.h b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config/ftoption.h new file mode 100644 index 00000000..60fe1213 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config/ftoption.h @@ -0,0 +1,1014 @@ +/**************************************************************************** + * + * ftoption.h + * + * User-selectable configuration macros (specification only). + * + * Copyright (C) 1996-2023 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTOPTION_H_ +#define FTOPTION_H_ + + +#include + + +FT_BEGIN_HEADER + + /************************************************************************** + * + * USER-SELECTABLE CONFIGURATION MACROS + * + * This file contains the default configuration macro definitions for a + * standard build of the FreeType library. There are three ways to use + * this file to build project-specific versions of the library: + * + * - You can modify this file by hand, but this is not recommended in + * cases where you would like to build several versions of the library + * from a single source directory. + * + * - You can put a copy of this file in your build directory, more + * precisely in `$BUILD/freetype/config/ftoption.h`, where `$BUILD` is + * the name of a directory that is included _before_ the FreeType include + * path during compilation. + * + * The default FreeType Makefiles use the build directory + * `builds/` by default, but you can easily change that for your + * own projects. + * + * - Copy the file to `$BUILD/ft2build.h` and modify it + * slightly to pre-define the macro `FT_CONFIG_OPTIONS_H` used to locate + * this file during the build. For example, + * + * ``` + * #define FT_CONFIG_OPTIONS_H + * #include + * ``` + * + * will use `$BUILD/myftoptions.h` instead of this file for macro + * definitions. + * + * Note also that you can similarly pre-define the macro + * `FT_CONFIG_MODULES_H` used to locate the file listing of the modules + * that are statically linked to the library at compile time. By + * default, this file is ``. + * + * We highly recommend using the third method whenever possible. + * + */ + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** G E N E R A L F R E E T Y P E 2 C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /*#************************************************************************ + * + * If you enable this configuration option, FreeType recognizes an + * environment variable called `FREETYPE_PROPERTIES`, which can be used to + * control the various font drivers and modules. The controllable + * properties are listed in the section @properties. + * + * You have to undefine this configuration option on platforms that lack + * the concept of environment variables (and thus don't have the `getenv` + * function), for example Windows CE. + * + * `FREETYPE_PROPERTIES` has the following syntax form (broken here into + * multiple lines for better readability). + * + * ``` + * + * ':' + * '=' + * + * ':' + * '=' + * ... + * ``` + * + * Example: + * + * ``` + * FREETYPE_PROPERTIES=truetype:interpreter-version=35 \ + * cff:no-stem-darkening=1 + * ``` + * + */ +#define FT_CONFIG_OPTION_ENVIRONMENT_PROPERTIES + + + /************************************************************************** + * + * Uncomment the line below if you want to activate LCD rendering + * technology similar to ClearType in this build of the library. This + * technology triples the resolution in the direction color subpixels. To + * mitigate color fringes inherent to this technology, you also need to + * explicitly set up LCD filtering. + * + * When this macro is not defined, FreeType offers alternative LCD + * rendering technology that produces excellent output. + */ +/* #define FT_CONFIG_OPTION_SUBPIXEL_RENDERING */ + + + /************************************************************************** + * + * Many compilers provide a non-ANSI 64-bit data type that can be used by + * FreeType to speed up some computations. However, this will create some + * problems when compiling the library in strict ANSI mode. + * + * For this reason, the use of 64-bit integers is normally disabled when + * the `__STDC__` macro is defined. You can however disable this by + * defining the macro `FT_CONFIG_OPTION_FORCE_INT64` here. + * + * For most compilers, this will only create compilation warnings when + * building the library. + * + * ObNote: The compiler-specific 64-bit integers are detected in the + * file `ftconfig.h` either statically or through the `configure` + * script on supported platforms. + */ +#undef FT_CONFIG_OPTION_FORCE_INT64 + + + /************************************************************************** + * + * If this macro is defined, do not try to use an assembler version of + * performance-critical functions (e.g., @FT_MulFix). You should only do + * that to verify that the assembler function works properly, or to execute + * benchmark tests of the various implementations. + */ +/* #define FT_CONFIG_OPTION_NO_ASSEMBLER */ + + + /************************************************************************** + * + * If this macro is defined, try to use an inlined assembler version of the + * @FT_MulFix function, which is a 'hotspot' when loading and hinting + * glyphs, and which should be executed as fast as possible. + * + * Note that if your compiler or CPU is not supported, this will default to + * the standard and portable implementation found in `ftcalc.c`. + */ +#define FT_CONFIG_OPTION_INLINE_MULFIX + + + /************************************************************************** + * + * LZW-compressed file support. + * + * FreeType now handles font files that have been compressed with the + * `compress` program. This is mostly used to parse many of the PCF + * files that come with various X11 distributions. The implementation + * uses NetBSD's `zopen` to partially uncompress the file on the fly (see + * `src/lzw/ftgzip.c`). + * + * Define this macro if you want to enable this 'feature'. + */ +#define FT_CONFIG_OPTION_USE_LZW + + + /************************************************************************** + * + * Gzip-compressed file support. + * + * FreeType now handles font files that have been compressed with the + * `gzip` program. This is mostly used to parse many of the PCF files + * that come with XFree86. The implementation uses 'zlib' to partially + * uncompress the file on the fly (see `src/gzip/ftgzip.c`). + * + * Define this macro if you want to enable this 'feature'. See also the + * macro `FT_CONFIG_OPTION_SYSTEM_ZLIB` below. + */ +#define FT_CONFIG_OPTION_USE_ZLIB + + + /************************************************************************** + * + * ZLib library selection + * + * This macro is only used when `FT_CONFIG_OPTION_USE_ZLIB` is defined. + * It allows FreeType's 'ftgzip' component to link to the system's + * installation of the ZLib library. This is useful on systems like + * Unix or VMS where it generally is already available. + * + * If you let it undefined, the component will use its own copy of the + * zlib sources instead. These have been modified to be included + * directly within the component and **not** export external function + * names. This allows you to link any program with FreeType _and_ ZLib + * without linking conflicts. + * + * Do not `#undef` this macro here since the build system might define + * it for certain configurations only. + * + * If you use a build system like cmake or the `configure` script, + * options set by those programs have precedence, overwriting the value + * here with the configured one. + * + * If you use the GNU make build system directly (that is, without the + * `configure` script) and you define this macro, you also have to pass + * `SYSTEM_ZLIB=yes` as an argument to make. + */ +/* #define FT_CONFIG_OPTION_SYSTEM_ZLIB */ + + + /************************************************************************** + * + * Bzip2-compressed file support. + * + * FreeType now handles font files that have been compressed with the + * `bzip2` program. This is mostly used to parse many of the PCF files + * that come with XFree86. The implementation uses `libbz2` to partially + * uncompress the file on the fly (see `src/bzip2/ftbzip2.c`). Contrary + * to gzip, bzip2 currently is not included and need to use the system + * available bzip2 implementation. + * + * Define this macro if you want to enable this 'feature'. + * + * If you use a build system like cmake or the `configure` script, + * options set by those programs have precedence, overwriting the value + * here with the configured one. + */ +/* #define FT_CONFIG_OPTION_USE_BZIP2 */ + + + /************************************************************************** + * + * Define to disable the use of file stream functions and types, `FILE`, + * `fopen`, etc. Enables the use of smaller system libraries on embedded + * systems that have multiple system libraries, some with or without file + * stream support, in the cases where file stream support is not necessary + * such as memory loading of font files. + */ +/* #define FT_CONFIG_OPTION_DISABLE_STREAM_SUPPORT */ + + + /************************************************************************** + * + * PNG bitmap support. + * + * FreeType now handles loading color bitmap glyphs in the PNG format. + * This requires help from the external libpng library. Uncompressed + * color bitmaps do not need any external libraries and will be supported + * regardless of this configuration. + * + * Define this macro if you want to enable this 'feature'. + * + * If you use a build system like cmake or the `configure` script, + * options set by those programs have precedence, overwriting the value + * here with the configured one. + */ +/* #define FT_CONFIG_OPTION_USE_PNG */ + + + /************************************************************************** + * + * HarfBuzz support. + * + * FreeType uses the HarfBuzz library to improve auto-hinting of OpenType + * fonts. If available, many glyphs not directly addressable by a font's + * character map will be hinted also. + * + * Define this macro if you want to enable this 'feature'. + * + * If you use a build system like cmake or the `configure` script, + * options set by those programs have precedence, overwriting the value + * here with the configured one. + */ +/* #define FT_CONFIG_OPTION_USE_HARFBUZZ */ + + + /************************************************************************** + * + * Brotli support. + * + * FreeType uses the Brotli library to provide support for decompressing + * WOFF2 streams. + * + * Define this macro if you want to enable this 'feature'. + * + * If you use a build system like cmake or the `configure` script, + * options set by those programs have precedence, overwriting the value + * here with the configured one. + */ +/* #define FT_CONFIG_OPTION_USE_BROTLI */ + + + /************************************************************************** + * + * Glyph Postscript Names handling + * + * By default, FreeType 2 is compiled with the 'psnames' module. This + * module is in charge of converting a glyph name string into a Unicode + * value, or return a Macintosh standard glyph name for the use with the + * TrueType 'post' table. + * + * Undefine this macro if you do not want 'psnames' compiled in your + * build of FreeType. This has the following effects: + * + * - The TrueType driver will provide its own set of glyph names, if you + * build it to support postscript names in the TrueType 'post' table, + * but will not synthesize a missing Unicode charmap. + * + * - The Type~1 driver will not be able to synthesize a Unicode charmap + * out of the glyphs found in the fonts. + * + * You would normally undefine this configuration macro when building a + * version of FreeType that doesn't contain a Type~1 or CFF driver. + */ +#define FT_CONFIG_OPTION_POSTSCRIPT_NAMES + + + /************************************************************************** + * + * Postscript Names to Unicode Values support + * + * By default, FreeType~2 is built with the 'psnames' module compiled in. + * Among other things, the module is used to convert a glyph name into a + * Unicode value. This is especially useful in order to synthesize on + * the fly a Unicode charmap from the CFF/Type~1 driver through a big + * table named the 'Adobe Glyph List' (AGL). + * + * Undefine this macro if you do not want the Adobe Glyph List compiled + * in your 'psnames' module. The Type~1 driver will not be able to + * synthesize a Unicode charmap out of the glyphs found in the fonts. + */ +#define FT_CONFIG_OPTION_ADOBE_GLYPH_LIST + + + /************************************************************************** + * + * Support for Mac fonts + * + * Define this macro if you want support for outline fonts in Mac format + * (mac dfont, mac resource, macbinary containing a mac resource) on + * non-Mac platforms. + * + * Note that the 'FOND' resource isn't checked. + */ +#define FT_CONFIG_OPTION_MAC_FONTS + + + /************************************************************************** + * + * Guessing methods to access embedded resource forks + * + * Enable extra Mac fonts support on non-Mac platforms (e.g., GNU/Linux). + * + * Resource forks which include fonts data are stored sometimes in + * locations which users or developers don't expected. In some cases, + * resource forks start with some offset from the head of a file. In + * other cases, the actual resource fork is stored in file different from + * what the user specifies. If this option is activated, FreeType tries + * to guess whether such offsets or different file names must be used. + * + * Note that normal, direct access of resource forks is controlled via + * the `FT_CONFIG_OPTION_MAC_FONTS` option. + */ +#ifdef FT_CONFIG_OPTION_MAC_FONTS +#define FT_CONFIG_OPTION_GUESSING_EMBEDDED_RFORK +#endif + + + /************************************************************************** + * + * Allow the use of `FT_Incremental_Interface` to load typefaces that + * contain no glyph data, but supply it via a callback function. This is + * required by clients supporting document formats which supply font data + * incrementally as the document is parsed, such as the Ghostscript + * interpreter for the PostScript language. + */ +#define FT_CONFIG_OPTION_INCREMENTAL + + + /************************************************************************** + * + * The size in bytes of the render pool used by the scan-line converter to + * do all of its work. + */ +#define FT_RENDER_POOL_SIZE 16384L + + + /************************************************************************** + * + * FT_MAX_MODULES + * + * The maximum number of modules that can be registered in a single + * FreeType library object. 32~is the default. + */ +#define FT_MAX_MODULES 32 + + + /************************************************************************** + * + * Debug level + * + * FreeType can be compiled in debug or trace mode. In debug mode, + * errors are reported through the 'ftdebug' component. In trace mode, + * additional messages are sent to the standard output during execution. + * + * Define `FT_DEBUG_LEVEL_ERROR` to build the library in debug mode. + * Define `FT_DEBUG_LEVEL_TRACE` to build it in trace mode. + * + * Don't define any of these macros to compile in 'release' mode! + * + * Do not `#undef` these macros here since the build system might define + * them for certain configurations only. + */ +/* #define FT_DEBUG_LEVEL_ERROR */ +/* #define FT_DEBUG_LEVEL_TRACE */ + + + /************************************************************************** + * + * Logging + * + * Compiling FreeType in debug or trace mode makes FreeType write error + * and trace log messages to `stderr`. Enabling this macro + * automatically forces the `FT_DEBUG_LEVEL_ERROR` and + * `FT_DEBUG_LEVEL_TRACE` macros and allows FreeType to write error and + * trace log messages to a file instead of `stderr`. For writing logs + * to a file, FreeType uses an the external `dlg` library (the source + * code is in `src/dlg`). + * + * This option needs a C99 compiler. + */ +/* #define FT_DEBUG_LOGGING */ + + + /************************************************************************** + * + * Autofitter debugging + * + * If `FT_DEBUG_AUTOFIT` is defined, FreeType provides some means to + * control the autofitter behaviour for debugging purposes with global + * boolean variables (consequently, you should **never** enable this + * while compiling in 'release' mode): + * + * ``` + * af_debug_disable_horz_hints_ + * af_debug_disable_vert_hints_ + * af_debug_disable_blue_hints_ + * ``` + * + * Additionally, the following functions provide dumps of various + * internal autofit structures to stdout (using `printf`): + * + * ``` + * af_glyph_hints_dump_points + * af_glyph_hints_dump_segments + * af_glyph_hints_dump_edges + * af_glyph_hints_get_num_segments + * af_glyph_hints_get_segment_offset + * ``` + * + * As an argument, they use another global variable: + * + * ``` + * af_debug_hints_ + * ``` + * + * Please have a look at the `ftgrid` demo program to see how those + * variables and macros should be used. + * + * Do not `#undef` these macros here since the build system might define + * them for certain configurations only. + */ +/* #define FT_DEBUG_AUTOFIT */ + + + /************************************************************************** + * + * Memory Debugging + * + * FreeType now comes with an integrated memory debugger that is capable + * of detecting simple errors like memory leaks or double deletes. To + * compile it within your build of the library, you should define + * `FT_DEBUG_MEMORY` here. + * + * Note that the memory debugger is only activated at runtime when when + * the _environment_ variable `FT2_DEBUG_MEMORY` is defined also! + * + * Do not `#undef` this macro here since the build system might define it + * for certain configurations only. + */ +/* #define FT_DEBUG_MEMORY */ + + + /************************************************************************** + * + * Module errors + * + * If this macro is set (which is _not_ the default), the higher byte of + * an error code gives the module in which the error has occurred, while + * the lower byte is the real error code. + * + * Setting this macro makes sense for debugging purposes only, since it + * would break source compatibility of certain programs that use + * FreeType~2. + * + * More details can be found in the files `ftmoderr.h` and `fterrors.h`. + */ +#undef FT_CONFIG_OPTION_USE_MODULE_ERRORS + + + /************************************************************************** + * + * OpenType SVG Glyph Support + * + * Setting this macro enables support for OpenType SVG glyphs. By + * default, FreeType can only fetch SVG documents. However, it can also + * render them if external rendering hook functions are plugged in at + * runtime. + * + * More details on the hooks can be found in file `otsvg.h`. + */ +#define FT_CONFIG_OPTION_SVG + + + /************************************************************************** + * + * Error Strings + * + * If this macro is set, `FT_Error_String` will return meaningful + * descriptions. This is not enabled by default to reduce the overall + * size of FreeType. + * + * More details can be found in the file `fterrors.h`. + */ +#define FT_CONFIG_OPTION_ERROR_STRINGS + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** S F N T D R I V E R C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_EMBEDDED_BITMAPS` if you want to support + * embedded bitmaps in all formats using the 'sfnt' module (namely + * TrueType~& OpenType). + */ +#define TT_CONFIG_OPTION_EMBEDDED_BITMAPS + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_COLOR_LAYERS` if you want to support colored + * outlines (from the 'COLR'/'CPAL' tables) in all formats using the 'sfnt' + * module (namely TrueType~& OpenType). + */ +#define TT_CONFIG_OPTION_COLOR_LAYERS + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_POSTSCRIPT_NAMES` if you want to be able to + * load and enumerate Postscript names of glyphs in a TrueType or OpenType + * file. + * + * Note that if you do not compile the 'psnames' module by undefining the + * above `FT_CONFIG_OPTION_POSTSCRIPT_NAMES` macro, the 'sfnt' module will + * contain additional code to read the PostScript name table from a font. + * + * (By default, the module uses 'psnames' to extract glyph names.) + */ +#define TT_CONFIG_OPTION_POSTSCRIPT_NAMES + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_SFNT_NAMES` if your applications need to access + * the internal name table in a SFNT-based format like TrueType or + * OpenType. The name table contains various strings used to describe the + * font, like family name, copyright, version, etc. It does not contain + * any glyph name though. + * + * Accessing SFNT names is done through the functions declared in + * `ftsnames.h`. + */ +#define TT_CONFIG_OPTION_SFNT_NAMES + + + /************************************************************************** + * + * TrueType CMap support + * + * Here you can fine-tune which TrueType CMap table format shall be + * supported. + */ +#define TT_CONFIG_CMAP_FORMAT_0 +#define TT_CONFIG_CMAP_FORMAT_2 +#define TT_CONFIG_CMAP_FORMAT_4 +#define TT_CONFIG_CMAP_FORMAT_6 +#define TT_CONFIG_CMAP_FORMAT_8 +#define TT_CONFIG_CMAP_FORMAT_10 +#define TT_CONFIG_CMAP_FORMAT_12 +#define TT_CONFIG_CMAP_FORMAT_13 +#define TT_CONFIG_CMAP_FORMAT_14 + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** T R U E T Y P E D R I V E R C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_BYTECODE_INTERPRETER` if you want to compile a + * bytecode interpreter in the TrueType driver. + * + * By undefining this, you will only compile the code necessary to load + * TrueType glyphs without hinting. + * + * Do not `#undef` this macro here, since the build system might define it + * for certain configurations only. + */ +#define TT_CONFIG_OPTION_BYTECODE_INTERPRETER + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_SUBPIXEL_HINTING` if you want to compile + * subpixel hinting support into the TrueType driver. This modifies the + * TrueType hinting mechanism when anything but `FT_RENDER_MODE_MONO` is + * requested. + * + * In particular, it modifies the bytecode interpreter to interpret (or + * not) instructions in a certain way so that all TrueType fonts look like + * they do in a Windows ClearType (DirectWrite) environment. See [1] for a + * technical overview on what this means. See `ttinterp.h` for more + * details on this option. + * + * The new default mode focuses on applying a minimal set of rules to all + * fonts indiscriminately so that modern and web fonts render well while + * legacy fonts render okay. The corresponding interpreter version is v40. + * The so-called Infinality mode (v38) is no longer available in FreeType. + * + * By undefining these, you get rendering behavior like on Windows without + * ClearType, i.e., Windows XP without ClearType enabled and Win9x + * (interpreter version v35). Or not, depending on how much hinting blood + * and testing tears the font designer put into a given font. If you + * define one or both subpixel hinting options, you can switch between + * between v35 and the ones you define (using `FT_Property_Set`). + * + * This option requires `TT_CONFIG_OPTION_BYTECODE_INTERPRETER` to be + * defined. + * + * [1] + * https://www.microsoft.com/typography/cleartype/truetypecleartype.aspx + */ +#define TT_CONFIG_OPTION_SUBPIXEL_HINTING + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_COMPONENT_OFFSET_SCALED` to compile the + * TrueType glyph loader to use Apple's definition of how to handle + * component offsets in composite glyphs. + * + * Apple and MS disagree on the default behavior of component offsets in + * composites. Apple says that they should be scaled by the scaling + * factors in the transformation matrix (roughly, it's more complex) while + * MS says they should not. OpenType defines two bits in the composite + * flags array which can be used to disambiguate, but old fonts will not + * have them. + * + * https://www.microsoft.com/typography/otspec/glyf.htm + * https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6glyf.html + */ +#undef TT_CONFIG_OPTION_COMPONENT_OFFSET_SCALED + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_GX_VAR_SUPPORT` if you want to include support + * for Apple's distortable font technology ('fvar', 'gvar', 'cvar', and + * 'avar' tables). Tagged 'Font Variations', this is now part of OpenType + * also. This has many similarities to Type~1 Multiple Masters support. + */ +#define TT_CONFIG_OPTION_GX_VAR_SUPPORT + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_NO_BORING_EXPANSION` if you want to exclude + * support for 'boring' OpenType specification expansions. + * + * https://github.com/harfbuzz/boring-expansion-spec + * + * Right now, the following features are covered: + * + * - 'avar' version 2.0 + * + * Most likely, this is a temporary configuration option to be removed in + * the near future, since it is assumed that eventually those features are + * added to the OpenType standard. + */ +/* #define TT_CONFIG_OPTION_NO_BORING_EXPANSION */ + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_BDF` if you want to include support for an + * embedded 'BDF~' table within SFNT-based bitmap formats. + */ +#define TT_CONFIG_OPTION_BDF + + + /************************************************************************** + * + * Option `TT_CONFIG_OPTION_MAX_RUNNABLE_OPCODES` controls the maximum + * number of bytecode instructions executed for a single run of the + * bytecode interpreter, needed to prevent infinite loops. You don't want + * to change this except for very special situations (e.g., making a + * library fuzzer spend less time to handle broken fonts). + * + * It is not expected that this value is ever modified by a configuring + * script; instead, it gets surrounded with `#ifndef ... #endif` so that + * the value can be set as a preprocessor option on the compiler's command + * line. + */ +#ifndef TT_CONFIG_OPTION_MAX_RUNNABLE_OPCODES +#define TT_CONFIG_OPTION_MAX_RUNNABLE_OPCODES 1000000L +#endif + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** T Y P E 1 D R I V E R C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * `T1_MAX_DICT_DEPTH` is the maximum depth of nest dictionaries and arrays + * in the Type~1 stream (see `t1load.c`). A minimum of~4 is required. + */ +#define T1_MAX_DICT_DEPTH 5 + + + /************************************************************************** + * + * `T1_MAX_SUBRS_CALLS` details the maximum number of nested sub-routine + * calls during glyph loading. + */ +#define T1_MAX_SUBRS_CALLS 16 + + + /************************************************************************** + * + * `T1_MAX_CHARSTRING_OPERANDS` is the charstring stack's capacity. A + * minimum of~16 is required. + * + * The Chinese font 'MingTiEG-Medium' (covering the CNS 11643 character + * set) needs 256. + */ +#define T1_MAX_CHARSTRINGS_OPERANDS 256 + + + /************************************************************************** + * + * Define this configuration macro if you want to prevent the compilation + * of the 't1afm' module, which is in charge of reading Type~1 AFM files + * into an existing face. Note that if set, the Type~1 driver will be + * unable to produce kerning distances. + */ +#undef T1_CONFIG_OPTION_NO_AFM + + + /************************************************************************** + * + * Define this configuration macro if you want to prevent the compilation + * of the Multiple Masters font support in the Type~1 driver. + */ +#undef T1_CONFIG_OPTION_NO_MM_SUPPORT + + + /************************************************************************** + * + * `T1_CONFIG_OPTION_OLD_ENGINE` controls whether the pre-Adobe Type~1 + * engine gets compiled into FreeType. If defined, it is possible to + * switch between the two engines using the `hinting-engine` property of + * the 'type1' driver module. + */ +/* #define T1_CONFIG_OPTION_OLD_ENGINE */ + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** C F F D R I V E R C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * Using `CFF_CONFIG_OPTION_DARKENING_PARAMETER_{X,Y}{1,2,3,4}` it is + * possible to set up the default values of the four control points that + * define the stem darkening behaviour of the (new) CFF engine. For more + * details please read the documentation of the `darkening-parameters` + * property (file `ftdriver.h`), which allows the control at run-time. + * + * Do **not** undefine these macros! + */ +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_X1 500 +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y1 400 + +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_X2 1000 +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y2 275 + +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_X3 1667 +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y3 275 + +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_X4 2333 +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y4 0 + + + /************************************************************************** + * + * `CFF_CONFIG_OPTION_OLD_ENGINE` controls whether the pre-Adobe CFF engine + * gets compiled into FreeType. If defined, it is possible to switch + * between the two engines using the `hinting-engine` property of the 'cff' + * driver module. + */ +/* #define CFF_CONFIG_OPTION_OLD_ENGINE */ + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** P C F D R I V E R C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * There are many PCF fonts just called 'Fixed' which look completely + * different, and which have nothing to do with each other. When selecting + * 'Fixed' in KDE or Gnome one gets results that appear rather random, the + * style changes often if one changes the size and one cannot select some + * fonts at all. This option makes the 'pcf' module prepend the foundry + * name (plus a space) to the family name. + * + * We also check whether we have 'wide' characters; all put together, we + * get family names like 'Sony Fixed' or 'Misc Fixed Wide'. + * + * If this option is activated, it can be controlled with the + * `no-long-family-names` property of the 'pcf' driver module. + */ +/* #define PCF_CONFIG_OPTION_LONG_FAMILY_NAMES */ + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** A U T O F I T M O D U L E C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * Compile 'autofit' module with CJK (Chinese, Japanese, Korean) script + * support. + */ +#define AF_CONFIG_OPTION_CJK + + + /************************************************************************** + * + * Compile 'autofit' module with fallback Indic script support, covering + * some scripts that the 'latin' submodule of the 'autofit' module doesn't + * (yet) handle. Currently, this needs option `AF_CONFIG_OPTION_CJK`. + */ +#ifdef AF_CONFIG_OPTION_CJK +#define AF_CONFIG_OPTION_INDIC +#endif + + + /************************************************************************** + * + * Use TrueType-like size metrics for 'light' auto-hinting. + * + * It is strongly recommended to avoid this option, which exists only to + * help some legacy applications retain its appearance and behaviour with + * respect to auto-hinted TrueType fonts. + * + * The very reason this option exists at all are GNU/Linux distributions + * like Fedora that did not un-patch the following change (which was + * present in FreeType between versions 2.4.6 and 2.7.1, inclusive). + * + * ``` + * 2011-07-16 Steven Chu + * + * [truetype] Fix metrics on size request for scalable fonts. + * ``` + * + * This problematic commit is now reverted (more or less). + */ +/* #define AF_CONFIG_OPTION_TT_SIZE_METRICS */ + + /* */ + + + /* + * This macro is obsolete. Support has been removed in FreeType version + * 2.5. + */ +/* #define FT_CONFIG_OPTION_OLD_INTERNALS */ + + + /* + * The next two macros are defined if native TrueType hinting is + * requested by the definitions above. Don't change this. + */ +#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER +#define TT_USE_BYTECODE_INTERPRETER +#ifdef TT_CONFIG_OPTION_SUBPIXEL_HINTING +#define TT_SUPPORT_SUBPIXEL_HINTING_MINIMAL +#endif +#endif + + + /* + * The TT_SUPPORT_COLRV1 macro is defined to indicate to clients that this + * version of FreeType has support for 'COLR' v1 API. This definition is + * useful to FreeType clients that want to build in support for 'COLR' v1 + * depending on a tip-of-tree checkout before it is officially released in + * FreeType, and while the feature cannot yet be tested against using + * version macros. Don't change this macro. This may be removed once the + * feature is in a FreeType release version and version macros can be used + * to test for availability. + */ +#ifdef TT_CONFIG_OPTION_COLOR_LAYERS +#define TT_SUPPORT_COLRV1 +#endif + + + /* + * Check CFF darkening parameters. The checks are the same as in function + * `cff_property_set` in file `cffdrivr.c`. + */ +#if CFF_CONFIG_OPTION_DARKENING_PARAMETER_X1 < 0 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X2 < 0 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X3 < 0 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X4 < 0 || \ + \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y1 < 0 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y2 < 0 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y3 < 0 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y4 < 0 || \ + \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X1 > \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X2 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X2 > \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X3 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X3 > \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X4 || \ + \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y1 > 500 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y2 > 500 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y3 > 500 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y4 > 500 +#error "Invalid CFF darkening parameters!" +#endif + + +FT_END_HEADER + +#endif /* FTOPTION_H_ */ + + +/* END */ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-src b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-src new file mode 160000 index 00000000..920c5502 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-src @@ -0,0 +1 @@ +Subproject commit 920c5502cc3ddda88f6c7d85ee834ac611bb11cc diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/.ninja_log b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/.ninja_log new file mode 100644 index 00000000..ada9bf53 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/.ninja_log @@ -0,0 +1,37 @@ +# ninja log v6 +2 66 7658493810934524 freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-mkdir 4c040160d77b24a7 +2 160 7658494829342006 freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-update 1fa2f14c94fe5e80 +160 225 7658494831521508 freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-patch 640da729d80dba83 +470 551 7658494834784296 freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-done deb21185b4a1b881 +2 66 7658493810934524 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-mkdir 4c040160d77b24a7 +66 9698 7658493907261282 freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-download 6cb2f14cf8009f63 +66 9698 7658493907261282 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-download 6cb2f14cf8009f63 +160 225 7658494831521508 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-patch 640da729d80dba83 +2 160 7658494829342006 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-update 1fa2f14c94fe5e80 +225 286 7658494832138491 freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-configure c60edc6c8f1740d6 +225 286 7658494832138491 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-configure c60edc6c8f1740d6 +470 551 7658494834784296 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-done deb21185b4a1b881 +286 348 7658494832742255 freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-build eae43a49d9ba2848 +286 348 7658494832742255 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-build eae43a49d9ba2848 +470 551 7658494834784296 CMakeFiles/freetype-populate-complete deb21185b4a1b881 +348 409 7658494833359747 freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-install 3872dd32cd41a956 +348 409 7658494833359747 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-install 3872dd32cd41a956 +409 470 7658494833969611 freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-test 8f5f2827a76bbf23 +409 470 7658494833969611 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-test 8f5f2827a76bbf23 +470 551 7658494834784296 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/freetype-populate-complete deb21185b4a1b881 +3 167 7658495621131106 freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-update 1fa2f14c94fe5e80 +3 167 7658495621131106 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-update 1fa2f14c94fe5e80 +167 232 7658495623373826 freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-patch 640da729d80dba83 +167 232 7658495623373826 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-patch 640da729d80dba83 +232 293 7658495623974516 freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-configure c60edc6c8f1740d6 +232 293 7658495623974516 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-configure c60edc6c8f1740d6 +294 354 7658495624594088 freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-build eae43a49d9ba2848 +294 354 7658495624594088 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-build eae43a49d9ba2848 +354 416 7658495625210763 freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-install 3872dd32cd41a956 +354 416 7658495625210763 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-install 3872dd32cd41a956 +417 479 7658495625840985 freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-test 8f5f2827a76bbf23 +417 479 7658495625840985 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-test 8f5f2827a76bbf23 +479 561 7658495626663545 CMakeFiles/freetype-populate-complete deb21185b4a1b881 +479 561 7658495626663545 freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-done deb21185b4a1b881 +479 561 7658495626663545 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/freetype-populate-complete deb21185b4a1b881 +479 561 7658495626663545 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-done deb21185b4a1b881 diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeCache.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeCache.txt new file mode 100644 index 00000000..aee8ba70 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeCache.txt @@ -0,0 +1,109 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild +# It was generated by CMake: G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Enable colored diagnostics throughout. +CMAKE_COLOR_DIAGNOSTICS:BOOL=ON + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/pkgRedirects + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/freetype-populate + +//make program +CMAKE_MAKE_PROGRAM:FILEPATH=G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=freetype-populate + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +freetype-populate_BINARY_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild + +//Value Computed by CMake +freetype-populate_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +freetype-populate_SOURCE_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild + + +######################## +# INTERNAL cache entries +######################## + +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=30 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=5 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=G:/CLion 2024.3/bin/cmake/win/x64/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=G:/CLion 2024.3/bin/cmake/win/x64/bin/ctest.exe +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/3.30.5/CMakeSystem.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/3.30.5/CMakeSystem.cmake new file mode 100644 index 00000000..000cf698 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/3.30.5/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + + + +set(CMAKE_SYSTEM "Windows-10.0.26100") +set(CMAKE_SYSTEM_NAME "Windows") +set(CMAKE_SYSTEM_VERSION "10.0.26100") +set(CMAKE_SYSTEM_PROCESSOR "AMD64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/CMakeConfigureLog.yaml b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 00000000..3c5743d6 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,11 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:205 (message)" + - "CMakeLists.txt:16 (project)" + message: | + The system is: Windows - 10.0.26100 - AMD64 +... diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/TargetDirectories.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/TargetDirectories.txt new file mode 100644 index 00000000..b6e024e8 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/freetype-populate.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/rebuild_cache.dir diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/cmake.check_cache b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/cmake.check_cache new file mode 100644 index 00000000..3dccd731 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/freetype-populate-complete b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/freetype-populate-complete new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/freetype-populate.dir/Labels.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/freetype-populate.dir/Labels.json new file mode 100644 index 00000000..1a85f805 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/freetype-populate.dir/Labels.json @@ -0,0 +1,46 @@ +{ + "sources" : + [ + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/freetype-populate" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/freetype-populate.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/freetype-populate-complete.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-build.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-configure.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-download.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-install.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-mkdir.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-patch.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-test.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-update.rule" + } + ], + "target" : + { + "labels" : + [ + "freetype-populate" + ], + "name" : "freetype-populate" + } +} \ No newline at end of file diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/freetype-populate.dir/Labels.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/freetype-populate.dir/Labels.txt new file mode 100644 index 00000000..e7084e43 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/freetype-populate.dir/Labels.txt @@ -0,0 +1,14 @@ +# Target labels + freetype-populate +# Source files and their labels +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/freetype-populate +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/freetype-populate.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/freetype-populate-complete.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-build.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-configure.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-download.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-install.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-mkdir.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-patch.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-test.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-update.rule diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/rules.ninja b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/rules.ninja new file mode 100644 index 00000000..a515046b --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/rules.ninja @@ -0,0 +1,45 @@ +# 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: freetype-populate +# Configurations: +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\freetype-subbuild -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\freetype-subbuild + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = "G:\CLion 2024.3\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 = "G:\CLion 2024.3\bin\ninja\win\x64\ninja.exe" -t targets + description = All primary targets available: + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeLists.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeLists.txt new file mode 100644 index 00000000..78e1af73 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeLists.txt @@ -0,0 +1,42 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.30.5) + +# Reject any attempt to use a toolchain file. We must not use one because +# we could be downloading it here. If the CMAKE_TOOLCHAIN_FILE environment +# variable is set, the cache variable will have been initialized from it. +unset(CMAKE_TOOLCHAIN_FILE CACHE) +unset(ENV{CMAKE_TOOLCHAIN_FILE}) + +# We name the project and the target for the ExternalProject_Add() call +# to something that will highlight to the user what we are working on if +# something goes wrong and an error message is produced. + +project(freetype-populate NONE) + + +# Pass through things we've already detected in the main project to avoid +# paying the cost of redetecting them again in ExternalProject_Add() +set(GIT_EXECUTABLE [==[C:/Program Files/Git/cmd/git.exe]==]) +set(GIT_VERSION_STRING [==[2.49.0.windows.1]==]) +set_property(GLOBAL PROPERTY _CMAKE_FindGit_GIT_EXECUTABLE_VERSION + [==[C:/Program Files/Git/cmd/git.exe;2.49.0.windows.1]==] +) + + +include(ExternalProject) +ExternalProject_Add(freetype-populate + "UPDATE_DISCONNECTED" "False" "GIT_REPOSITORY" "https://github.com/freetype/freetype.git" "EXTERNALPROJECT_INTERNAL_ARGUMENT_SEPARATOR" "GIT_TAG" "VER-2-13-2" "GIT_SHALLOW" "ON" "PATCH_COMMAND" "G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe" "-DFREETYPE_DIR=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" "-P" "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/tools/freetype/PatchFreetype.cmake" + SOURCE_DIR "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + BINARY_DIR "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build" + CONFIGURE_COMMAND "" + BUILD_COMMAND "" + INSTALL_COMMAND "" + TEST_COMMAND "" + USES_TERMINAL_DOWNLOAD YES + USES_TERMINAL_UPDATE YES + USES_TERMINAL_PATCH YES +) + + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/build.ninja b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/build.ninja new file mode 100644 index 00000000..f7d9e098 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/build.ninja @@ -0,0 +1,201 @@ +# 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: freetype-populate +# Configurations: +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles\rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = C$:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\freetype-subbuild\ + +############################################# +# Utility command for freetype-populate + +build freetype-populate: phony CMakeFiles\freetype-populate CMakeFiles\freetype-populate-complete freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-done freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-build freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-configure freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-download freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-install freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-mkdir freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-patch freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-test freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-update + + +############################################# +# Utility command for edit_cache + +build CMakeFiles\edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\freetype-subbuild && "G:\CLion 2024.3\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:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\freetype-subbuild && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\freetype-subbuild -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\freetype-subbuild" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles\rebuild_cache.util + + +############################################# +# Phony custom command for CMakeFiles\freetype-populate + +build CMakeFiles\freetype-populate | ${cmake_ninja_workdir}CMakeFiles\freetype-populate: phony CMakeFiles\freetype-populate-complete + + +############################################# +# Custom command for CMakeFiles\freetype-populate-complete + +build CMakeFiles\freetype-populate-complete freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-done | ${cmake_ninja_workdir}CMakeFiles\freetype-populate-complete ${cmake_ninja_workdir}freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-done: CUSTOM_COMMAND freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-install freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-mkdir freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-download freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-update freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-patch freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-configure freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-build freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-install freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-test + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\freetype-subbuild && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E make_directory C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/CMakeFiles/freetype-populate-complete && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-done" + DESC = Completed 'freetype-populate' + restat = 1 + + +############################################# +# Custom command for freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-build + +build freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-build | ${cmake_ninja_workdir}freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-build: CUSTOM_COMMAND freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-configure + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\freetype-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo_append && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-build" + DESC = No build step for 'freetype-populate' + restat = 1 + + +############################################# +# Custom command for freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-configure + +build freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-configure | ${cmake_ninja_workdir}freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-configure: CUSTOM_COMMAND freetype-populate-prefix\tmp\freetype-populate-cfgcmd.txt freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-patch + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\freetype-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo_append && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-configure" + DESC = No configure step for 'freetype-populate' + restat = 1 + + +############################################# +# Custom command for freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-download + +build freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-download | ${cmake_ninja_workdir}freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-download: CUSTOM_COMMAND freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-gitinfo.txt freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-mkdir + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE -P C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/tmp/freetype-populate-gitclone.cmake && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-download" + DESC = Performing download step (git clone) for 'freetype-populate' + pool = console + restat = 1 + + +############################################# +# Custom command for freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-install + +build freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-install | ${cmake_ninja_workdir}freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-install: CUSTOM_COMMAND freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-build + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\freetype-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo_append && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-install" + DESC = No install step for 'freetype-populate' + restat = 1 + + +############################################# +# Custom command for freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-mkdir + +build freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-mkdir | ${cmake_ninja_workdir}freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-mkdir: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\freetype-subbuild && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -Dcfgdir= -P C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/tmp/freetype-populate-mkdirs.cmake && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-mkdir" + DESC = Creating directories for 'freetype-populate' + restat = 1 + + +############################################# +# Custom command for freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-patch + +build freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-patch | ${cmake_ninja_workdir}freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-patch: CUSTOM_COMMAND freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-patch-info.txt freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-update + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\freetype-src && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DFREETYPE_DIR=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src -P C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/tools/freetype/PatchFreetype.cmake && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-patch" + DESC = Performing patch step for 'freetype-populate' + pool = console + restat = 1 + + +############################################# +# Custom command for freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-test + +build freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-test | ${cmake_ninja_workdir}freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-test: CUSTOM_COMMAND freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-install + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\freetype-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo_append && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-test" + DESC = No test step for 'freetype-populate' + restat = 1 + + +############################################# +# Custom command for freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-update + +build freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-update | ${cmake_ninja_workdir}freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-update: CUSTOM_COMMAND freetype-populate-prefix\tmp\freetype-populate-gitupdate.cmake freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-update-info.txt freetype-populate-prefix\src\freetype-populate-stamp\freetype-populate-download + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\freetype-src && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -Dcan_fetch=YES -DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE -P C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/tmp/freetype-populate-gitupdate.cmake" + DESC = Performing update step for 'freetype-populate' + pool = console + +# ============================================================================= +# Target aliases. + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild + +build all: phony freetype-populate + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | CMakeCache.txt CMakeFiles\3.30.5\CMakeSystem.cmake CMakeLists.txt G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeGenericSystem.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeInitializeConfigs.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeSystemSpecificInformation.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeSystemSpecificInitialize.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\PatchInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\RepositoryInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\UpdateInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\cfgcmd.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\gitclone.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\gitupdate.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\mkdirs.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\shared_internal_commands.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\Windows-Initialize.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\Windows.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\WindowsPaths.cmake freetype-populate-prefix\tmp\freetype-populate-mkdirs.cmake + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build CMakeCache.txt CMakeFiles\3.30.5\CMakeSystem.cmake CMakeLists.txt G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeGenericSystem.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeInitializeConfigs.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeSystemSpecificInformation.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeSystemSpecificInitialize.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\PatchInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\RepositoryInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\UpdateInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\cfgcmd.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\gitclone.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\gitupdate.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\mkdirs.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\shared_internal_commands.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\Windows-Initialize.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\Windows.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\WindowsPaths.cmake freetype-populate-prefix\tmp\freetype-populate-mkdirs.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/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/cmake_install.cmake new file mode 100644 index 00000000..ae26cab0 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/cmake_install.cmake @@ -0,0 +1,52 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/freetype-populate") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +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:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-build b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-build new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-configure b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-configure new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-done b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-done new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-download b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-download new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-gitclone-lastrun.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-gitclone-lastrun.txt new file mode 100644 index 00000000..b64d2255 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-gitclone-lastrun.txt @@ -0,0 +1,15 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=git +command=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/tmp/freetype-populate-gitclone.cmake +source_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src +work_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps +repository=https://github.com/freetype/freetype.git +remote=origin +init_submodules=TRUE +recurse_submodules=--recursive +submodules= +CMP0097=NEW + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-gitinfo.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-gitinfo.txt new file mode 100644 index 00000000..b64d2255 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-gitinfo.txt @@ -0,0 +1,15 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=git +command=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/tmp/freetype-populate-gitclone.cmake +source_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src +work_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps +repository=https://github.com/freetype/freetype.git +remote=origin +init_submodules=TRUE +recurse_submodules=--recursive +submodules= +CMP0097=NEW + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-install b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-install new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-mkdir b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-mkdir new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-patch b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-patch new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-patch-info.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-patch-info.txt new file mode 100644 index 00000000..19134c00 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-patch-info.txt @@ -0,0 +1,6 @@ +# This is a generated file and its contents are an internal implementation detail. +# The update step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-DFREETYPE_DIR=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/tools/freetype/PatchFreetype.cmake +work_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-test b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-test new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-update-info.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-update-info.txt new file mode 100644 index 00000000..cc7cccb3 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-update-info.txt @@ -0,0 +1,7 @@ +# This is a generated file and its contents are an internal implementation detail. +# The patch step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command (connected)=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-Dcan_fetch=YES;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/tmp/freetype-populate-gitupdate.cmake +command (disconnected)=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-Dcan_fetch=NO;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/tmp/freetype-populate-gitupdate.cmake +work_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/tmp/freetype-populate-cfgcmd.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/tmp/freetype-populate-cfgcmd.txt new file mode 100644 index 00000000..6a6ed5fd --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/tmp/freetype-populate-cfgcmd.txt @@ -0,0 +1 @@ +cmd='' diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/tmp/freetype-populate-gitclone.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/tmp/freetype-populate-gitclone.cmake new file mode 100644 index 00000000..d317b48e --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/tmp/freetype-populate-gitclone.cmake @@ -0,0 +1,87 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +if(EXISTS "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-gitclone-lastrun.txt" AND EXISTS "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-gitinfo.txt" AND + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-gitclone-lastrun.txt" IS_NEWER_THAN "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-gitinfo.txt") + message(VERBOSE + "Avoiding repeated git clone, stamp file is up to date: " + "'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-gitclone-lastrun.txt'" + ) + return() +endif() + +# Even at VERBOSE level, we don't want to see the commands executed, but +# enabling them to be shown for DEBUG may be useful to help diagnose problems. +cmake_language(GET_MESSAGE_LOG_LEVEL active_log_level) +if(active_log_level MATCHES "DEBUG|TRACE") + set(maybe_show_command COMMAND_ECHO STDOUT) +else() + set(maybe_show_command "") +endif() + +execute_process( + COMMAND ${CMAKE_COMMAND} -E rm -rf "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + RESULT_VARIABLE error_code + ${maybe_show_command} +) +if(error_code) + message(FATAL_ERROR "Failed to remove directory: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src'") +endif() + +# try the clone 3 times in case there is an odd git clone issue +set(error_code 1) +set(number_of_tries 0) +while(error_code AND number_of_tries LESS 3) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" + clone --no-checkout --depth 1 --no-single-branch --config "advice.detachedHead=false" "https://github.com/freetype/freetype.git" "freetype-src" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) + math(EXPR number_of_tries "${number_of_tries} + 1") +endwhile() +if(number_of_tries GREATER 1) + message(NOTICE "Had to git clone more than once: ${number_of_tries} times.") +endif() +if(error_code) + message(FATAL_ERROR "Failed to clone repository: 'https://github.com/freetype/freetype.git'") +endif() + +execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" + checkout "VER-2-13-2" -- + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + RESULT_VARIABLE error_code + ${maybe_show_command} +) +if(error_code) + message(FATAL_ERROR "Failed to checkout tag: 'VER-2-13-2'") +endif() + +set(init_submodules TRUE) +if(init_submodules) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" + submodule update --recursive --init + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) +endif() +if(error_code) + message(FATAL_ERROR "Failed to update submodules in: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src'") +endif() + +# Complete success, update the script-last-run stamp file: +# +execute_process( + COMMAND ${CMAKE_COMMAND} -E copy "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-gitinfo.txt" "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-gitclone-lastrun.txt" + RESULT_VARIABLE error_code + ${maybe_show_command} +) +if(error_code) + message(FATAL_ERROR "Failed to copy script-last-run stamp file: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/freetype-populate-gitclone-lastrun.txt'") +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/tmp/freetype-populate-gitupdate.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/tmp/freetype-populate-gitupdate.cmake new file mode 100644 index 00000000..d1017c0a --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/tmp/freetype-populate-gitupdate.cmake @@ -0,0 +1,317 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +# Even at VERBOSE level, we don't want to see the commands executed, but +# enabling them to be shown for DEBUG may be useful to help diagnose problems. +cmake_language(GET_MESSAGE_LOG_LEVEL active_log_level) +if(active_log_level MATCHES "DEBUG|TRACE") + set(maybe_show_command COMMAND_ECHO STDOUT) +else() + set(maybe_show_command "") +endif() + +function(do_fetch) + message(VERBOSE "Fetching latest from the remote origin") + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git fetch --tags --force "origin" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + COMMAND_ERROR_IS_FATAL LAST + ${maybe_show_command} + ) +endfunction() + +function(get_hash_for_ref ref out_var err_var) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git rev-parse "${ref}^0" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE ref_hash + ERROR_VARIABLE error_msg + OUTPUT_STRIP_TRAILING_WHITESPACE + ) + if(error_code) + set(${out_var} "" PARENT_SCOPE) + else() + set(${out_var} "${ref_hash}" PARENT_SCOPE) + endif() + set(${err_var} "${error_msg}" PARENT_SCOPE) +endfunction() + +get_hash_for_ref(HEAD head_sha error_msg) +if(head_sha STREQUAL "") + message(FATAL_ERROR "Failed to get the hash for HEAD:\n${error_msg}") +endif() + +if("${can_fetch}" STREQUAL "") + set(can_fetch "YES") +endif() + +execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git show-ref "VER-2-13-2" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + OUTPUT_VARIABLE show_ref_output +) +if(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/remotes/") + # Given a full remote/branch-name and we know about it already. Since + # branches can move around, we should always fetch, if permitted. + if(can_fetch) + do_fetch() + endif() + set(checkout_name "VER-2-13-2") + +elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/tags/") + # Given a tag name that we already know about. We don't know if the tag we + # have matches the remote though (tags can move), so we should fetch. As a + # special case to preserve backward compatibility, if we are already at the + # same commit as the tag we hold locally, don't do a fetch and assume the tag + # hasn't moved on the remote. + # FIXME: We should provide an option to always fetch for this case + get_hash_for_ref("VER-2-13-2" tag_sha error_msg) + if(tag_sha STREQUAL head_sha) + message(VERBOSE "Already at requested tag: VER-2-13-2") + return() + endif() + + if(can_fetch) + do_fetch() + endif() + set(checkout_name "VER-2-13-2") + +elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/heads/") + # Given a branch name without any remote and we already have a branch by that + # name. We might already have that branch checked out or it might be a + # different branch. It isn't fully safe to use a bare branch name without the + # remote, so do a fetch (if allowed) and replace the ref with one that + # includes the remote. + if(can_fetch) + do_fetch() + endif() + set(checkout_name "origin/VER-2-13-2") + +else() + get_hash_for_ref("VER-2-13-2" tag_sha error_msg) + if(tag_sha STREQUAL head_sha) + # Have the right commit checked out already + message(VERBOSE "Already at requested ref: ${tag_sha}") + return() + + elseif(tag_sha STREQUAL "") + # We don't know about this ref yet, so we have no choice but to fetch. + if(NOT can_fetch) + message(FATAL_ERROR + "Requested git ref \"VER-2-13-2\" is not present locally, and not " + "allowed to contact remote due to UPDATE_DISCONNECTED setting." + ) + endif() + + # We deliberately swallow any error message at the default log level + # because it can be confusing for users to see a failed git command. + # That failure is being handled here, so it isn't an error. + if(NOT error_msg STREQUAL "") + message(DEBUG "${error_msg}") + endif() + do_fetch() + set(checkout_name "VER-2-13-2") + + else() + # We have the commit, so we know we were asked to find a commit hash + # (otherwise it would have been handled further above), but we don't + # have that commit checked out yet. We don't need to fetch from the remote. + set(checkout_name "VER-2-13-2") + if(NOT error_msg STREQUAL "") + message(WARNING "${error_msg}") + endif() + + endif() +endif() + +set(git_update_strategy "REBASE") +if(git_update_strategy STREQUAL "") + # Backward compatibility requires REBASE as the default behavior + set(git_update_strategy REBASE) +endif() + +if(git_update_strategy MATCHES "^REBASE(_CHECKOUT)?$") + # Asked to potentially try to rebase first, maybe with fallback to checkout. + # We can't if we aren't already on a branch and we shouldn't if that local + # branch isn't tracking the one we want to checkout. + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git symbolic-ref -q HEAD + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + OUTPUT_VARIABLE current_branch + OUTPUT_STRIP_TRAILING_WHITESPACE + # Don't test for an error. If this isn't a branch, we get a non-zero error + # code but empty output. + ) + + if(current_branch STREQUAL "") + # Not on a branch, checkout is the only sensible option since any rebase + # would always fail (and backward compatibility requires us to checkout in + # this situation) + set(git_update_strategy CHECKOUT) + + else() + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git for-each-ref "--format=%(upstream:short)" "${current_branch}" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + OUTPUT_VARIABLE upstream_branch + OUTPUT_STRIP_TRAILING_WHITESPACE + COMMAND_ERROR_IS_FATAL ANY # There is no error if no upstream is set + ) + if(NOT upstream_branch STREQUAL checkout_name) + # Not safe to rebase when asked to checkout a different branch to the one + # we are tracking. If we did rebase, we could end up with arbitrary + # commits added to the ref we were asked to checkout if the current local + # branch happens to be able to rebase onto the target branch. There would + # be no error message and the user wouldn't know this was occurring. + set(git_update_strategy CHECKOUT) + endif() + + endif() +elseif(NOT git_update_strategy STREQUAL "CHECKOUT") + message(FATAL_ERROR "Unsupported git update strategy: ${git_update_strategy}") +endif() + + +# Check if stash is needed +execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git status --porcelain + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE repo_status +) +if(error_code) + message(FATAL_ERROR "Failed to get the status") +endif() +string(LENGTH "${repo_status}" need_stash) + +# If not in clean state, stash changes in order to be able to perform a +# rebase or checkout without losing those changes permanently +if(need_stash) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash save --quiet;--include-untracked + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) +endif() + +if(git_update_strategy STREQUAL "CHECKOUT") + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git checkout "${checkout_name}" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) +else() + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git rebase "${checkout_name}" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE rebase_output + ERROR_VARIABLE rebase_output + ) + if(error_code) + # Rebase failed, undo the rebase attempt before continuing + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git rebase --abort + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + ${maybe_show_command} + ) + + if(NOT git_update_strategy STREQUAL "REBASE_CHECKOUT") + # Not allowed to do a checkout as a fallback, so cannot proceed + if(need_stash) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + ${maybe_show_command} + ) + endif() + message(FATAL_ERROR "\nFailed to rebase in: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src'." + "\nOutput from the attempted rebase follows:" + "\n${rebase_output}" + "\n\nYou will have to resolve the conflicts manually") + endif() + + # Fall back to checkout. We create an annotated tag so that the user + # can manually inspect the situation and revert if required. + # We can't log the failed rebase output because MSVC sees it and + # intervenes, causing the build to fail even though it completes. + # Write it to a file instead. + string(TIMESTAMP tag_timestamp "%Y%m%dT%H%M%S" UTC) + set(tag_name _cmake_ExternalProject_moved_from_here_${tag_timestamp}Z) + set(error_log_file ${CMAKE_CURRENT_LIST_DIR}/rebase_error_${tag_timestamp}Z.log) + file(WRITE ${error_log_file} "${rebase_output}") + message(WARNING "Rebase failed, output has been saved to ${error_log_file}" + "\nFalling back to checkout, previous commit tagged as ${tag_name}") + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git tag -a + -m "ExternalProject attempting to move from here to ${checkout_name}" + ${tag_name} + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) + + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git checkout "${checkout_name}" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) + endif() +endif() + +if(need_stash) + # Put back the stashed changes + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) + if(error_code) + # Stash pop --index failed: Try again dropping the index + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git reset --hard --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + ${maybe_show_command} + ) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash pop --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) + if(error_code) + # Stash pop failed: Restore previous state. + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git reset --hard --quiet ${head_sha} + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + ${maybe_show_command} + ) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + ${maybe_show_command} + ) + message(FATAL_ERROR "\nFailed to unstash changes in: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src'." + "\nYou will have to resolve the conflicts manually") + endif() + endif() +endif() + +set(init_submodules "TRUE") +if(init_submodules) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" + --git-dir=.git + submodule update --recursive --init + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/tmp/freetype-populate-mkdirs.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/tmp/freetype-populate-mkdirs.cmake new file mode 100644 index 00000000..40bdeea3 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/tmp/freetype-populate-mkdirs.cmake @@ -0,0 +1,27 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +# If CMAKE_DISABLE_SOURCE_CHANGES is set to true and the source directory is an +# existing directory in our source tree, calling file(MAKE_DIRECTORY) on it +# would cause a fatal error, even though it would be a no-op. +if(NOT EXISTS "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src") + file(MAKE_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src") +endif() +file(MAKE_DIRECTORY + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/tmp" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp" +) + +set(configSubDirs ) +foreach(subDir IN LISTS configSubDirs) + file(MAKE_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp/${subDir}") +endforeach() +if(cfgdir) + file(MAKE_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-subbuild/freetype-populate-prefix/src/freetype-populate-stamp${cfgdir}") # cfgdir has leading slash +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/CMakeFiles/Export/dee6fd410a50d06b294b496f57355584/OggTargets-debug.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/CMakeFiles/Export/dee6fd410a50d06b294b496f57355584/OggTargets-debug.cmake new file mode 100644 index 00000000..0f2e262c --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/CMakeFiles/Export/dee6fd410a50d06b294b496f57355584/OggTargets-debug.cmake @@ -0,0 +1,19 @@ +#---------------------------------------------------------------- +# Generated CMake target import file for configuration "Debug". +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Import target "Ogg::ogg" for configuration "Debug" +set_property(TARGET Ogg::ogg APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) +set_target_properties(Ogg::ogg PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "C" + IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/liboggd.a" + ) + +list(APPEND _cmake_import_check_targets Ogg::ogg ) +list(APPEND _cmake_import_check_files_for_Ogg::ogg "${_IMPORT_PREFIX}/lib/liboggd.a" ) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/CMakeFiles/Export/dee6fd410a50d06b294b496f57355584/OggTargets.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/CMakeFiles/Export/dee6fd410a50d06b294b496f57355584/OggTargets.cmake new file mode 100644 index 00000000..8e7d538b --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/CMakeFiles/Export/dee6fd410a50d06b294b496f57355584/OggTargets.cmake @@ -0,0 +1,106 @@ +# Generated by CMake + +if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) + message(FATAL_ERROR "CMake >= 2.8.0 required") +endif() +if(CMAKE_VERSION VERSION_LESS "2.8.3") + message(FATAL_ERROR "CMake >= 2.8.3 required") +endif() +cmake_policy(PUSH) +cmake_policy(VERSION 2.8.3...3.28) +#---------------------------------------------------------------- +# Generated CMake target import file. +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Protect against multiple inclusion, which would fail when already imported targets are added once more. +set(_cmake_targets_defined "") +set(_cmake_targets_not_defined "") +set(_cmake_expected_targets "") +foreach(_cmake_expected_target IN ITEMS Ogg::ogg) + list(APPEND _cmake_expected_targets "${_cmake_expected_target}") + if(TARGET "${_cmake_expected_target}") + list(APPEND _cmake_targets_defined "${_cmake_expected_target}") + else() + list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") + endif() +endforeach() +unset(_cmake_expected_target) +if(_cmake_targets_defined STREQUAL _cmake_expected_targets) + unset(_cmake_targets_defined) + unset(_cmake_targets_not_defined) + unset(_cmake_expected_targets) + unset(CMAKE_IMPORT_FILE_VERSION) + cmake_policy(POP) + return() +endif() +if(NOT _cmake_targets_defined STREQUAL "") + string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") + string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") + message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") +endif() +unset(_cmake_targets_defined) +unset(_cmake_targets_not_defined) +unset(_cmake_expected_targets) + + +# Compute the installation prefix relative to this file. +get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +if(_IMPORT_PREFIX STREQUAL "/") + set(_IMPORT_PREFIX "") +endif() + +# Create imported target Ogg::ogg +add_library(Ogg::ogg STATIC IMPORTED) + +set_target_properties(Ogg::ogg PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" +) + +# Load information for each installed configuration. +file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/OggTargets-*.cmake") +foreach(_cmake_config_file IN LISTS _cmake_config_files) + include("${_cmake_config_file}") +endforeach() +unset(_cmake_config_file) +unset(_cmake_config_files) + +# Cleanup temporary variables. +set(_IMPORT_PREFIX) + +# Loop over all imported files and verify that they actually exist +foreach(_cmake_target IN LISTS _cmake_import_check_targets) + if(CMAKE_VERSION VERSION_LESS "3.28" + OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target} + OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}") + foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") + if(NOT EXISTS "${_cmake_file}") + message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file + \"${_cmake_file}\" +but this file does not exist. Possible reasons include: +* The file was deleted, renamed, or moved to another location. +* An install or uninstall procedure did not complete successfully. +* The installation package was faulty and contained + \"${CMAKE_CURRENT_LIST_FILE}\" +but not all the files it references. +") + endif() + endforeach() + endif() + unset(_cmake_file) + unset("_cmake_import_check_files_for_${_cmake_target}") +endforeach() +unset(_cmake_target) +unset(_cmake_import_check_targets) + +# This file does not depend on other imported targets which have +# been exported from the same project but in a separate export set. + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) +cmake_policy(POP) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/OggConfig.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/OggConfig.cmake new file mode 100644 index 00000000..ded6c1f8 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/OggConfig.cmake @@ -0,0 +1,40 @@ + +####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### +####### Any changes to this file will be overwritten by the next CMake run #### +####### The input file was OggConfig.cmake.in ######## + +get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) + +macro(set_and_check _var _file) + set(${_var} "${_file}") + if(NOT EXISTS "${_file}") + message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") + endif() +endmacro() + +macro(check_required_components _NAME) + foreach(comp ${${_NAME}_FIND_COMPONENTS}) + if(NOT ${_NAME}_${comp}_FOUND) + if(${_NAME}_FIND_REQUIRED_${comp}) + set(${_NAME}_FOUND FALSE) + endif() + endif() + endforeach() +endmacro() + +#################################################################################### + +set(Ogg_INCLUDE_DIR "${PACKAGE_PREFIX_DIR}/include") +set(OGG_INCLUDE_DIR "${PACKAGE_PREFIX_DIR}/include") +set(Ogg_INCLUDE_DIRS "${PACKAGE_PREFIX_DIR}/include") +set(OGG_INCLUDE_DIRS "${PACKAGE_PREFIX_DIR}/include") + +include(${CMAKE_CURRENT_LIST_DIR}/OggTargets.cmake) + +set(Ogg_LIBRARY Ogg::ogg) +set(OGG_LIBRARY Ogg::ogg) +set(Ogg_LIBRARIES Ogg::ogg) +set(OGG_LIBRARIES Ogg::ogg) + +check_required_components(Ogg) +set(OGG_FOUND 1) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/OggConfigVersion.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/OggConfigVersion.cmake new file mode 100644 index 00000000..b2dac2cb --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/OggConfigVersion.cmake @@ -0,0 +1,65 @@ +# This is a basic version file for the Config-mode of find_package(). +# It is used by write_basic_package_version_file() as input file for configure_file() +# to create a version-file which can be installed along a config.cmake file. +# +# The created file sets PACKAGE_VERSION_EXACT if the current version string and +# the requested version string are exactly the same and it sets +# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version, +# but only if the requested major version is the same as the current one. +# The variable CVF_VERSION must be set before calling configure_file(). + + +set(PACKAGE_VERSION "1.3.5") + +if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) + set(PACKAGE_VERSION_COMPATIBLE FALSE) +else() + + if("1.3.5" MATCHES "^([0-9]+)\\.") + set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}") + if(NOT CVF_VERSION_MAJOR VERSION_EQUAL 0) + string(REGEX REPLACE "^0+" "" CVF_VERSION_MAJOR "${CVF_VERSION_MAJOR}") + endif() + else() + set(CVF_VERSION_MAJOR "1.3.5") + endif() + + if(PACKAGE_FIND_VERSION_RANGE) + # both endpoints of the range must have the expected major version + math (EXPR CVF_VERSION_MAJOR_NEXT "${CVF_VERSION_MAJOR} + 1") + if (NOT PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR + OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX_MAJOR STREQUAL CVF_VERSION_MAJOR) + OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX VERSION_LESS_EQUAL CVF_VERSION_MAJOR_NEXT))) + set(PACKAGE_VERSION_COMPATIBLE FALSE) + elseif(PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR + AND ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS_EQUAL PACKAGE_FIND_VERSION_MAX) + OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MAX))) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + else() + set(PACKAGE_VERSION_COMPATIBLE FALSE) + endif() + else() + if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + else() + set(PACKAGE_VERSION_COMPATIBLE FALSE) + endif() + + if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) + set(PACKAGE_VERSION_EXACT TRUE) + endif() + endif() +endif() + + +# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: +if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "") + return() +endif() + +# check that the installed version has the same 32/64bit-ness as the one which is currently searching: +if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") + math(EXPR installedBits "8 * 8") + set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") + set(PACKAGE_VERSION_UNSUITABLE TRUE) +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/OggTargets.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/OggTargets.cmake new file mode 100644 index 00000000..1400c72b --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/OggTargets.cmake @@ -0,0 +1,68 @@ +# Generated by CMake + +if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) + message(FATAL_ERROR "CMake >= 2.8.0 required") +endif() +if(CMAKE_VERSION VERSION_LESS "2.8.3") + message(FATAL_ERROR "CMake >= 2.8.3 required") +endif() +cmake_policy(PUSH) +cmake_policy(VERSION 2.8.3...3.28) +#---------------------------------------------------------------- +# Generated CMake target import file. +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Protect against multiple inclusion, which would fail when already imported targets are added once more. +set(_cmake_targets_defined "") +set(_cmake_targets_not_defined "") +set(_cmake_expected_targets "") +foreach(_cmake_expected_target IN ITEMS Ogg::ogg) + list(APPEND _cmake_expected_targets "${_cmake_expected_target}") + if(TARGET "${_cmake_expected_target}") + list(APPEND _cmake_targets_defined "${_cmake_expected_target}") + else() + list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") + endif() +endforeach() +unset(_cmake_expected_target) +if(_cmake_targets_defined STREQUAL _cmake_expected_targets) + unset(_cmake_targets_defined) + unset(_cmake_targets_not_defined) + unset(_cmake_expected_targets) + unset(CMAKE_IMPORT_FILE_VERSION) + cmake_policy(POP) + return() +endif() +if(NOT _cmake_targets_defined STREQUAL "") + string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") + string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") + message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") +endif() +unset(_cmake_targets_defined) +unset(_cmake_targets_not_defined) +unset(_cmake_expected_targets) + + +# Create imported target Ogg::ogg +add_library(Ogg::ogg STATIC IMPORTED) + +set_target_properties(Ogg::ogg PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include" +) + +# Import target "Ogg::ogg" for configuration "Debug" +set_property(TARGET Ogg::ogg APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) +set_target_properties(Ogg::ogg PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "C" + IMPORTED_LOCATION_DEBUG "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/liboggd.a" + ) + +# This file does not depend on other imported targets which have +# been exported from the same project but in a separate export set. + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) +cmake_policy(POP) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/cmake_install.cmake new file mode 100644 index 00000000..9ccb8c84 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/cmake_install.cmake @@ -0,0 +1,73 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/MiniHW2") +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 "G:/CLion 2024.3/bin/mingw/bin/objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/liboggd.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/Ogg/OggTargets.cmake") + file(DIFFERENT _cmake_export_file_changed FILES + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/Ogg/OggTargets.cmake" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/CMakeFiles/Export/dee6fd410a50d06b294b496f57355584/OggTargets.cmake") + if(_cmake_export_file_changed) + file(GLOB _cmake_old_config_files "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/Ogg/OggTargets-*.cmake") + if(_cmake_old_config_files) + string(REPLACE ";" ", " _cmake_old_config_files_text "${_cmake_old_config_files}") + message(STATUS "Old export file \"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/Ogg/OggTargets.cmake\" will be replaced. Removing files [${_cmake_old_config_files_text}].") + unset(_cmake_old_config_files_text) + file(REMOVE ${_cmake_old_config_files}) + endif() + unset(_cmake_old_config_files) + endif() + unset(_cmake_export_file_changed) + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/Ogg" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/CMakeFiles/Export/dee6fd410a50d06b294b496f57355584/OggTargets.cmake") + if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Dd][Ee][Bb][Uu][Gg])$") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/Ogg" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/CMakeFiles/Export/dee6fd410a50d06b294b496f57355584/OggTargets-debug.cmake") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/Ogg" TYPE FILE FILES + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/OggConfig.cmake" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/OggConfigVersion.cmake" + ) +endif() + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/include/ogg/config_types.h b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/include/ogg/config_types.h new file mode 100644 index 00000000..1a87df64 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/include/ogg/config_types.h @@ -0,0 +1,26 @@ +#ifndef __CONFIG_TYPES_H__ +#define __CONFIG_TYPES_H__ + +/* these are filled in by configure or cmake*/ +#define INCLUDE_INTTYPES_H 1 +#define INCLUDE_STDINT_H 1 +#define INCLUDE_SYS_TYPES_H 1 + +#if INCLUDE_INTTYPES_H +# include +#endif +#if INCLUDE_STDINT_H +# include +#endif +#if INCLUDE_SYS_TYPES_H +# include +#endif + +typedef int16_t ogg_int16_t; +typedef uint16_t ogg_uint16_t; +typedef int32_t ogg_int32_t; +typedef uint32_t ogg_uint32_t; +typedef int64_t ogg_int64_t; +typedef uint64_t ogg_uint64_t; + +#endif diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/ogg.pc b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/ogg.pc new file mode 100644 index 00000000..4adf4b9b --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-build/ogg.pc @@ -0,0 +1,14 @@ +# ogg pkg-config file + +prefix=C:/Program Files (x86)/MiniHW2 +exec_prefix=C:/Program Files (x86)/MiniHW2/bin +libdir=C:/Program Files (x86)/MiniHW2/lib +includedir=C:/Program Files (x86)/MiniHW2/include + +Name: ogg +Description: ogg is a library for manipulating ogg bitstreams +Version: 1.3.5 +Requires: +Conflicts: +Libs: -L${libdir} -logg +Cflags: -I${includedir} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-src b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-src new file mode 160000 index 00000000..e1774cd7 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-src @@ -0,0 +1 @@ +Subproject commit e1774cd77f471443541596e09078e78fdc342e4f diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/.ninja_log b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/.ninja_log new file mode 100644 index 00000000..029748fb --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/.ninja_log @@ -0,0 +1,37 @@ +# ninja log v6 +2 71 7658493915599675 ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-mkdir 9272aad5df861949 +72 1913 7658493934018979 ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-download e629cb58d5c036bf +4 161 7658494837059388 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-update d1714fad729ce70d +162 228 7658494839258246 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-patch 26b3dfaf988fe1a9 +2 71 7658493915599675 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-mkdir 9272aad5df861949 +72 1913 7658493934018979 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-download e629cb58d5c036bf +4 161 7658494837059388 ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-update d1714fad729ce70d +162 228 7658494839258246 ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-patch 26b3dfaf988fe1a9 +228 292 7658494839895956 ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-configure 69998b99218cee5 +228 292 7658494839895956 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-configure 69998b99218cee5 +292 355 7658494840531695 ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-build 1c0a409ecf273eec +292 355 7658494840531695 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-build 1c0a409ecf273eec +355 416 7658494841145878 ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-install bdf36c1606b08e10 +355 416 7658494841145878 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-install bdf36c1606b08e10 +417 477 7658494841754283 ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-test de1e5c2131e1d864 +417 477 7658494841754283 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-test de1e5c2131e1d864 +477 561 7658494842597183 CMakeFiles/ogg-populate-complete 44cd6df7b8caafaa +477 561 7658494842597183 ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-done 44cd6df7b8caafaa +477 561 7658494842597183 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/ogg-populate-complete 44cd6df7b8caafaa +477 561 7658494842597183 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-done 44cd6df7b8caafaa +3 153 7658495628991499 ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-update d1714fad729ce70d +3 153 7658495628991499 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-update d1714fad729ce70d +153 216 7658495631073424 ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-patch 26b3dfaf988fe1a9 +153 216 7658495631073424 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-patch 26b3dfaf988fe1a9 +216 275 7658495631664671 ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-configure 69998b99218cee5 +216 275 7658495631664671 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-configure 69998b99218cee5 +275 335 7658495632263562 ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-build 1c0a409ecf273eec +275 335 7658495632263562 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-build 1c0a409ecf273eec +335 395 7658495632869158 ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-install bdf36c1606b08e10 +335 395 7658495632869158 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-install bdf36c1606b08e10 +395 457 7658495633482012 ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-test de1e5c2131e1d864 +395 457 7658495633482012 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-test de1e5c2131e1d864 +457 539 7658495634304812 CMakeFiles/ogg-populate-complete 44cd6df7b8caafaa +457 539 7658495634304812 ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-done 44cd6df7b8caafaa +457 539 7658495634304812 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/ogg-populate-complete 44cd6df7b8caafaa +457 539 7658495634304812 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-done 44cd6df7b8caafaa diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeCache.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeCache.txt new file mode 100644 index 00000000..d2d93838 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeCache.txt @@ -0,0 +1,109 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild +# It was generated by CMake: G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Enable colored diagnostics throughout. +CMAKE_COLOR_DIAGNOSTICS:BOOL=ON + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/pkgRedirects + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/ogg-populate + +//make program +CMAKE_MAKE_PROGRAM:FILEPATH=G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=ogg-populate + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +ogg-populate_BINARY_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild + +//Value Computed by CMake +ogg-populate_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +ogg-populate_SOURCE_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild + + +######################## +# INTERNAL cache entries +######################## + +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=30 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=5 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=G:/CLion 2024.3/bin/cmake/win/x64/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=G:/CLion 2024.3/bin/cmake/win/x64/bin/ctest.exe +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/3.30.5/CMakeSystem.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/3.30.5/CMakeSystem.cmake new file mode 100644 index 00000000..000cf698 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/3.30.5/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + + + +set(CMAKE_SYSTEM "Windows-10.0.26100") +set(CMAKE_SYSTEM_NAME "Windows") +set(CMAKE_SYSTEM_VERSION "10.0.26100") +set(CMAKE_SYSTEM_PROCESSOR "AMD64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/CMakeConfigureLog.yaml b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 00000000..3c5743d6 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,11 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:205 (message)" + - "CMakeLists.txt:16 (project)" + message: | + The system is: Windows - 10.0.26100 - AMD64 +... diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/TargetDirectories.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/TargetDirectories.txt new file mode 100644 index 00000000..92f1feb9 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/ogg-populate.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/rebuild_cache.dir diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/cmake.check_cache b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/cmake.check_cache new file mode 100644 index 00000000..3dccd731 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/ogg-populate-complete b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/ogg-populate-complete new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/ogg-populate.dir/Labels.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/ogg-populate.dir/Labels.json new file mode 100644 index 00000000..32de6750 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/ogg-populate.dir/Labels.json @@ -0,0 +1,46 @@ +{ + "sources" : + [ + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/ogg-populate" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/ogg-populate.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/ogg-populate-complete.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-build.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-configure.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-download.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-install.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-mkdir.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-patch.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-test.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-update.rule" + } + ], + "target" : + { + "labels" : + [ + "ogg-populate" + ], + "name" : "ogg-populate" + } +} \ No newline at end of file diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/ogg-populate.dir/Labels.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/ogg-populate.dir/Labels.txt new file mode 100644 index 00000000..6b4dde0d --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/ogg-populate.dir/Labels.txt @@ -0,0 +1,14 @@ +# Target labels + ogg-populate +# Source files and their labels +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/ogg-populate +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/ogg-populate.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/ogg-populate-complete.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-build.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-configure.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-download.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-install.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-mkdir.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-patch.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-test.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-update.rule diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/rules.ninja b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/rules.ninja new file mode 100644 index 00000000..b2d0c2d5 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/rules.ninja @@ -0,0 +1,45 @@ +# 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: ogg-populate +# Configurations: +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\ogg-subbuild -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\ogg-subbuild + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = "G:\CLion 2024.3\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 = "G:\CLion 2024.3\bin\ninja\win\x64\ninja.exe" -t targets + description = All primary targets available: + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeLists.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeLists.txt new file mode 100644 index 00000000..e38bd422 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeLists.txt @@ -0,0 +1,42 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.30.5) + +# Reject any attempt to use a toolchain file. We must not use one because +# we could be downloading it here. If the CMAKE_TOOLCHAIN_FILE environment +# variable is set, the cache variable will have been initialized from it. +unset(CMAKE_TOOLCHAIN_FILE CACHE) +unset(ENV{CMAKE_TOOLCHAIN_FILE}) + +# We name the project and the target for the ExternalProject_Add() call +# to something that will highlight to the user what we are working on if +# something goes wrong and an error message is produced. + +project(ogg-populate NONE) + + +# Pass through things we've already detected in the main project to avoid +# paying the cost of redetecting them again in ExternalProject_Add() +set(GIT_EXECUTABLE [==[C:/Program Files/Git/cmd/git.exe]==]) +set(GIT_VERSION_STRING [==[2.49.0.windows.1]==]) +set_property(GLOBAL PROPERTY _CMAKE_FindGit_GIT_EXECUTABLE_VERSION + [==[C:/Program Files/Git/cmd/git.exe;2.49.0.windows.1]==] +) + + +include(ExternalProject) +ExternalProject_Add(ogg-populate + "UPDATE_DISCONNECTED" "False" "GIT_REPOSITORY" "https://github.com/xiph/ogg.git" "EXTERNALPROJECT_INTERNAL_ARGUMENT_SEPARATOR" "GIT_TAG" "v1.3.5" "GIT_SHALLOW" "ON" "PATCH_COMMAND" "G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe" "-DOGG_DIR=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" "-P" "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/tools/ogg/PatchOgg.cmake" + SOURCE_DIR "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + BINARY_DIR "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build" + CONFIGURE_COMMAND "" + BUILD_COMMAND "" + INSTALL_COMMAND "" + TEST_COMMAND "" + USES_TERMINAL_DOWNLOAD YES + USES_TERMINAL_UPDATE YES + USES_TERMINAL_PATCH YES +) + + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/build.ninja b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/build.ninja new file mode 100644 index 00000000..07b2666a --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/build.ninja @@ -0,0 +1,201 @@ +# 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: ogg-populate +# Configurations: +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles\rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = C$:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\ogg-subbuild\ + +############################################# +# Utility command for ogg-populate + +build ogg-populate: phony CMakeFiles\ogg-populate CMakeFiles\ogg-populate-complete ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-done ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-build ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-configure ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-download ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-install ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-mkdir ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-patch ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-test ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-update + + +############################################# +# Utility command for edit_cache + +build CMakeFiles\edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\ogg-subbuild && "G:\CLion 2024.3\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:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\ogg-subbuild && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\ogg-subbuild -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\ogg-subbuild" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles\rebuild_cache.util + + +############################################# +# Phony custom command for CMakeFiles\ogg-populate + +build CMakeFiles\ogg-populate | ${cmake_ninja_workdir}CMakeFiles\ogg-populate: phony CMakeFiles\ogg-populate-complete + + +############################################# +# Custom command for CMakeFiles\ogg-populate-complete + +build CMakeFiles\ogg-populate-complete ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-done | ${cmake_ninja_workdir}CMakeFiles\ogg-populate-complete ${cmake_ninja_workdir}ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-done: CUSTOM_COMMAND ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-install ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-mkdir ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-download ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-update ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-patch ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-configure ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-build ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-install ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-test + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\ogg-subbuild && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E make_directory C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/CMakeFiles/ogg-populate-complete && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-done" + DESC = Completed 'ogg-populate' + restat = 1 + + +############################################# +# Custom command for ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-build + +build ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-build | ${cmake_ninja_workdir}ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-build: CUSTOM_COMMAND ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-configure + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\ogg-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo_append && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-build" + DESC = No build step for 'ogg-populate' + restat = 1 + + +############################################# +# Custom command for ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-configure + +build ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-configure | ${cmake_ninja_workdir}ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-configure: CUSTOM_COMMAND ogg-populate-prefix\tmp\ogg-populate-cfgcmd.txt ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-patch + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\ogg-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo_append && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-configure" + DESC = No configure step for 'ogg-populate' + restat = 1 + + +############################################# +# Custom command for ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-download + +build ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-download | ${cmake_ninja_workdir}ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-download: CUSTOM_COMMAND ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-gitinfo.txt ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-mkdir + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE -P C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/tmp/ogg-populate-gitclone.cmake && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-download" + DESC = Performing download step (git clone) for 'ogg-populate' + pool = console + restat = 1 + + +############################################# +# Custom command for ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-install + +build ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-install | ${cmake_ninja_workdir}ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-install: CUSTOM_COMMAND ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-build + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\ogg-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo_append && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-install" + DESC = No install step for 'ogg-populate' + restat = 1 + + +############################################# +# Custom command for ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-mkdir + +build ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-mkdir | ${cmake_ninja_workdir}ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-mkdir: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\ogg-subbuild && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -Dcfgdir= -P C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/tmp/ogg-populate-mkdirs.cmake && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-mkdir" + DESC = Creating directories for 'ogg-populate' + restat = 1 + + +############################################# +# Custom command for ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-patch + +build ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-patch | ${cmake_ninja_workdir}ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-patch: CUSTOM_COMMAND ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-patch-info.txt ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-update + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\ogg-src && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DOGG_DIR=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src -P C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/tools/ogg/PatchOgg.cmake && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-patch" + DESC = Performing patch step for 'ogg-populate' + pool = console + restat = 1 + + +############################################# +# Custom command for ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-test + +build ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-test | ${cmake_ninja_workdir}ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-test: CUSTOM_COMMAND ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-install + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\ogg-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo_append && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-test" + DESC = No test step for 'ogg-populate' + restat = 1 + + +############################################# +# Custom command for ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-update + +build ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-update | ${cmake_ninja_workdir}ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-update: CUSTOM_COMMAND ogg-populate-prefix\tmp\ogg-populate-gitupdate.cmake ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-update-info.txt ogg-populate-prefix\src\ogg-populate-stamp\ogg-populate-download + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\ogg-src && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -Dcan_fetch=YES -DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE -P C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/tmp/ogg-populate-gitupdate.cmake" + DESC = Performing update step for 'ogg-populate' + pool = console + +# ============================================================================= +# Target aliases. + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild + +build all: phony ogg-populate + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | CMakeCache.txt CMakeFiles\3.30.5\CMakeSystem.cmake CMakeLists.txt G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeGenericSystem.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeInitializeConfigs.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeSystemSpecificInformation.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeSystemSpecificInitialize.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\PatchInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\RepositoryInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\UpdateInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\cfgcmd.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\gitclone.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\gitupdate.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\mkdirs.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\shared_internal_commands.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\Windows-Initialize.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\Windows.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\WindowsPaths.cmake ogg-populate-prefix\tmp\ogg-populate-mkdirs.cmake + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build CMakeCache.txt CMakeFiles\3.30.5\CMakeSystem.cmake CMakeLists.txt G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeGenericSystem.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeInitializeConfigs.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeSystemSpecificInformation.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeSystemSpecificInitialize.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\PatchInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\RepositoryInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\UpdateInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\cfgcmd.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\gitclone.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\gitupdate.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\mkdirs.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\shared_internal_commands.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\Windows-Initialize.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\Windows.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\WindowsPaths.cmake ogg-populate-prefix\tmp\ogg-populate-mkdirs.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/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/cmake_install.cmake new file mode 100644 index 00000000..1a76d123 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/cmake_install.cmake @@ -0,0 +1,52 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/ogg-populate") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +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:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-build b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-build new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-configure b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-configure new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-done b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-done new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-download b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-download new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-gitclone-lastrun.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-gitclone-lastrun.txt new file mode 100644 index 00000000..c419a92c --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-gitclone-lastrun.txt @@ -0,0 +1,15 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=git +command=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/tmp/ogg-populate-gitclone.cmake +source_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src +work_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps +repository=https://github.com/xiph/ogg.git +remote=origin +init_submodules=TRUE +recurse_submodules=--recursive +submodules= +CMP0097=NEW + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-gitinfo.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-gitinfo.txt new file mode 100644 index 00000000..c419a92c --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-gitinfo.txt @@ -0,0 +1,15 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=git +command=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/tmp/ogg-populate-gitclone.cmake +source_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src +work_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps +repository=https://github.com/xiph/ogg.git +remote=origin +init_submodules=TRUE +recurse_submodules=--recursive +submodules= +CMP0097=NEW + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-install b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-install new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-mkdir b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-mkdir new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-patch b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-patch new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-patch-info.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-patch-info.txt new file mode 100644 index 00000000..01792f90 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-patch-info.txt @@ -0,0 +1,6 @@ +# This is a generated file and its contents are an internal implementation detail. +# The update step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-DOGG_DIR=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/tools/ogg/PatchOgg.cmake +work_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-test b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-test new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-update-info.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-update-info.txt new file mode 100644 index 00000000..0c0d840b --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-update-info.txt @@ -0,0 +1,7 @@ +# This is a generated file and its contents are an internal implementation detail. +# The patch step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command (connected)=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-Dcan_fetch=YES;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/tmp/ogg-populate-gitupdate.cmake +command (disconnected)=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-Dcan_fetch=NO;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/tmp/ogg-populate-gitupdate.cmake +work_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/tmp/ogg-populate-cfgcmd.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/tmp/ogg-populate-cfgcmd.txt new file mode 100644 index 00000000..6a6ed5fd --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/tmp/ogg-populate-cfgcmd.txt @@ -0,0 +1 @@ +cmd='' diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/tmp/ogg-populate-gitclone.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/tmp/ogg-populate-gitclone.cmake new file mode 100644 index 00000000..bff1b248 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/tmp/ogg-populate-gitclone.cmake @@ -0,0 +1,87 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +if(EXISTS "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-gitclone-lastrun.txt" AND EXISTS "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-gitinfo.txt" AND + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-gitclone-lastrun.txt" IS_NEWER_THAN "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-gitinfo.txt") + message(VERBOSE + "Avoiding repeated git clone, stamp file is up to date: " + "'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-gitclone-lastrun.txt'" + ) + return() +endif() + +# Even at VERBOSE level, we don't want to see the commands executed, but +# enabling them to be shown for DEBUG may be useful to help diagnose problems. +cmake_language(GET_MESSAGE_LOG_LEVEL active_log_level) +if(active_log_level MATCHES "DEBUG|TRACE") + set(maybe_show_command COMMAND_ECHO STDOUT) +else() + set(maybe_show_command "") +endif() + +execute_process( + COMMAND ${CMAKE_COMMAND} -E rm -rf "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + RESULT_VARIABLE error_code + ${maybe_show_command} +) +if(error_code) + message(FATAL_ERROR "Failed to remove directory: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src'") +endif() + +# try the clone 3 times in case there is an odd git clone issue +set(error_code 1) +set(number_of_tries 0) +while(error_code AND number_of_tries LESS 3) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" + clone --no-checkout --depth 1 --no-single-branch --config "advice.detachedHead=false" "https://github.com/xiph/ogg.git" "ogg-src" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) + math(EXPR number_of_tries "${number_of_tries} + 1") +endwhile() +if(number_of_tries GREATER 1) + message(NOTICE "Had to git clone more than once: ${number_of_tries} times.") +endif() +if(error_code) + message(FATAL_ERROR "Failed to clone repository: 'https://github.com/xiph/ogg.git'") +endif() + +execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" + checkout "v1.3.5" -- + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + RESULT_VARIABLE error_code + ${maybe_show_command} +) +if(error_code) + message(FATAL_ERROR "Failed to checkout tag: 'v1.3.5'") +endif() + +set(init_submodules TRUE) +if(init_submodules) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" + submodule update --recursive --init + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) +endif() +if(error_code) + message(FATAL_ERROR "Failed to update submodules in: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src'") +endif() + +# Complete success, update the script-last-run stamp file: +# +execute_process( + COMMAND ${CMAKE_COMMAND} -E copy "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-gitinfo.txt" "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-gitclone-lastrun.txt" + RESULT_VARIABLE error_code + ${maybe_show_command} +) +if(error_code) + message(FATAL_ERROR "Failed to copy script-last-run stamp file: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/ogg-populate-gitclone-lastrun.txt'") +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/tmp/ogg-populate-gitupdate.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/tmp/ogg-populate-gitupdate.cmake new file mode 100644 index 00000000..d9e9c799 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/tmp/ogg-populate-gitupdate.cmake @@ -0,0 +1,317 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +# Even at VERBOSE level, we don't want to see the commands executed, but +# enabling them to be shown for DEBUG may be useful to help diagnose problems. +cmake_language(GET_MESSAGE_LOG_LEVEL active_log_level) +if(active_log_level MATCHES "DEBUG|TRACE") + set(maybe_show_command COMMAND_ECHO STDOUT) +else() + set(maybe_show_command "") +endif() + +function(do_fetch) + message(VERBOSE "Fetching latest from the remote origin") + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git fetch --tags --force "origin" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + COMMAND_ERROR_IS_FATAL LAST + ${maybe_show_command} + ) +endfunction() + +function(get_hash_for_ref ref out_var err_var) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git rev-parse "${ref}^0" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE ref_hash + ERROR_VARIABLE error_msg + OUTPUT_STRIP_TRAILING_WHITESPACE + ) + if(error_code) + set(${out_var} "" PARENT_SCOPE) + else() + set(${out_var} "${ref_hash}" PARENT_SCOPE) + endif() + set(${err_var} "${error_msg}" PARENT_SCOPE) +endfunction() + +get_hash_for_ref(HEAD head_sha error_msg) +if(head_sha STREQUAL "") + message(FATAL_ERROR "Failed to get the hash for HEAD:\n${error_msg}") +endif() + +if("${can_fetch}" STREQUAL "") + set(can_fetch "YES") +endif() + +execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git show-ref "v1.3.5" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + OUTPUT_VARIABLE show_ref_output +) +if(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/remotes/") + # Given a full remote/branch-name and we know about it already. Since + # branches can move around, we should always fetch, if permitted. + if(can_fetch) + do_fetch() + endif() + set(checkout_name "v1.3.5") + +elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/tags/") + # Given a tag name that we already know about. We don't know if the tag we + # have matches the remote though (tags can move), so we should fetch. As a + # special case to preserve backward compatibility, if we are already at the + # same commit as the tag we hold locally, don't do a fetch and assume the tag + # hasn't moved on the remote. + # FIXME: We should provide an option to always fetch for this case + get_hash_for_ref("v1.3.5" tag_sha error_msg) + if(tag_sha STREQUAL head_sha) + message(VERBOSE "Already at requested tag: v1.3.5") + return() + endif() + + if(can_fetch) + do_fetch() + endif() + set(checkout_name "v1.3.5") + +elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/heads/") + # Given a branch name without any remote and we already have a branch by that + # name. We might already have that branch checked out or it might be a + # different branch. It isn't fully safe to use a bare branch name without the + # remote, so do a fetch (if allowed) and replace the ref with one that + # includes the remote. + if(can_fetch) + do_fetch() + endif() + set(checkout_name "origin/v1.3.5") + +else() + get_hash_for_ref("v1.3.5" tag_sha error_msg) + if(tag_sha STREQUAL head_sha) + # Have the right commit checked out already + message(VERBOSE "Already at requested ref: ${tag_sha}") + return() + + elseif(tag_sha STREQUAL "") + # We don't know about this ref yet, so we have no choice but to fetch. + if(NOT can_fetch) + message(FATAL_ERROR + "Requested git ref \"v1.3.5\" is not present locally, and not " + "allowed to contact remote due to UPDATE_DISCONNECTED setting." + ) + endif() + + # We deliberately swallow any error message at the default log level + # because it can be confusing for users to see a failed git command. + # That failure is being handled here, so it isn't an error. + if(NOT error_msg STREQUAL "") + message(DEBUG "${error_msg}") + endif() + do_fetch() + set(checkout_name "v1.3.5") + + else() + # We have the commit, so we know we were asked to find a commit hash + # (otherwise it would have been handled further above), but we don't + # have that commit checked out yet. We don't need to fetch from the remote. + set(checkout_name "v1.3.5") + if(NOT error_msg STREQUAL "") + message(WARNING "${error_msg}") + endif() + + endif() +endif() + +set(git_update_strategy "REBASE") +if(git_update_strategy STREQUAL "") + # Backward compatibility requires REBASE as the default behavior + set(git_update_strategy REBASE) +endif() + +if(git_update_strategy MATCHES "^REBASE(_CHECKOUT)?$") + # Asked to potentially try to rebase first, maybe with fallback to checkout. + # We can't if we aren't already on a branch and we shouldn't if that local + # branch isn't tracking the one we want to checkout. + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git symbolic-ref -q HEAD + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + OUTPUT_VARIABLE current_branch + OUTPUT_STRIP_TRAILING_WHITESPACE + # Don't test for an error. If this isn't a branch, we get a non-zero error + # code but empty output. + ) + + if(current_branch STREQUAL "") + # Not on a branch, checkout is the only sensible option since any rebase + # would always fail (and backward compatibility requires us to checkout in + # this situation) + set(git_update_strategy CHECKOUT) + + else() + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git for-each-ref "--format=%(upstream:short)" "${current_branch}" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + OUTPUT_VARIABLE upstream_branch + OUTPUT_STRIP_TRAILING_WHITESPACE + COMMAND_ERROR_IS_FATAL ANY # There is no error if no upstream is set + ) + if(NOT upstream_branch STREQUAL checkout_name) + # Not safe to rebase when asked to checkout a different branch to the one + # we are tracking. If we did rebase, we could end up with arbitrary + # commits added to the ref we were asked to checkout if the current local + # branch happens to be able to rebase onto the target branch. There would + # be no error message and the user wouldn't know this was occurring. + set(git_update_strategy CHECKOUT) + endif() + + endif() +elseif(NOT git_update_strategy STREQUAL "CHECKOUT") + message(FATAL_ERROR "Unsupported git update strategy: ${git_update_strategy}") +endif() + + +# Check if stash is needed +execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git status --porcelain + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE repo_status +) +if(error_code) + message(FATAL_ERROR "Failed to get the status") +endif() +string(LENGTH "${repo_status}" need_stash) + +# If not in clean state, stash changes in order to be able to perform a +# rebase or checkout without losing those changes permanently +if(need_stash) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash save --quiet;--include-untracked + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) +endif() + +if(git_update_strategy STREQUAL "CHECKOUT") + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git checkout "${checkout_name}" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) +else() + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git rebase "${checkout_name}" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE rebase_output + ERROR_VARIABLE rebase_output + ) + if(error_code) + # Rebase failed, undo the rebase attempt before continuing + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git rebase --abort + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + ${maybe_show_command} + ) + + if(NOT git_update_strategy STREQUAL "REBASE_CHECKOUT") + # Not allowed to do a checkout as a fallback, so cannot proceed + if(need_stash) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + ${maybe_show_command} + ) + endif() + message(FATAL_ERROR "\nFailed to rebase in: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src'." + "\nOutput from the attempted rebase follows:" + "\n${rebase_output}" + "\n\nYou will have to resolve the conflicts manually") + endif() + + # Fall back to checkout. We create an annotated tag so that the user + # can manually inspect the situation and revert if required. + # We can't log the failed rebase output because MSVC sees it and + # intervenes, causing the build to fail even though it completes. + # Write it to a file instead. + string(TIMESTAMP tag_timestamp "%Y%m%dT%H%M%S" UTC) + set(tag_name _cmake_ExternalProject_moved_from_here_${tag_timestamp}Z) + set(error_log_file ${CMAKE_CURRENT_LIST_DIR}/rebase_error_${tag_timestamp}Z.log) + file(WRITE ${error_log_file} "${rebase_output}") + message(WARNING "Rebase failed, output has been saved to ${error_log_file}" + "\nFalling back to checkout, previous commit tagged as ${tag_name}") + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git tag -a + -m "ExternalProject attempting to move from here to ${checkout_name}" + ${tag_name} + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) + + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git checkout "${checkout_name}" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) + endif() +endif() + +if(need_stash) + # Put back the stashed changes + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) + if(error_code) + # Stash pop --index failed: Try again dropping the index + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git reset --hard --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + ${maybe_show_command} + ) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash pop --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) + if(error_code) + # Stash pop failed: Restore previous state. + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git reset --hard --quiet ${head_sha} + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + ${maybe_show_command} + ) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + ${maybe_show_command} + ) + message(FATAL_ERROR "\nFailed to unstash changes in: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src'." + "\nYou will have to resolve the conflicts manually") + endif() + endif() +endif() + +set(init_submodules "TRUE") +if(init_submodules) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" + --git-dir=.git + submodule update --recursive --init + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/tmp/ogg-populate-mkdirs.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/tmp/ogg-populate-mkdirs.cmake new file mode 100644 index 00000000..254ce3e7 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/tmp/ogg-populate-mkdirs.cmake @@ -0,0 +1,27 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +# If CMAKE_DISABLE_SOURCE_CHANGES is set to true and the source directory is an +# existing directory in our source tree, calling file(MAKE_DIRECTORY) on it +# would cause a fatal error, even though it would be a no-op. +if(NOT EXISTS "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src") + file(MAKE_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src") +endif() +file(MAKE_DIRECTORY + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/tmp" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp" +) + +set(configSubDirs ) +foreach(subDir IN LISTS configSubDirs) + file(MAKE_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp/${subDir}") +endforeach() +if(cfgdir) + file(MAKE_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-subbuild/ogg-populate-prefix/src/ogg-populate-stamp${cfgdir}") # cfgdir has leading slash +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLAudioStaticTargets-debug.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLAudioStaticTargets-debug.cmake new file mode 100644 index 00000000..54c3fe35 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLAudioStaticTargets-debug.cmake @@ -0,0 +1,19 @@ +#---------------------------------------------------------------- +# Generated CMake target import file for configuration "Debug". +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Import target "SFML::Audio" for configuration "Debug" +set_property(TARGET SFML::Audio APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) +set_target_properties(SFML::Audio PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "CXX" + IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/libsfml-audio-s-d.a" + ) + +list(APPEND _cmake_import_check_targets SFML::Audio ) +list(APPEND _cmake_import_check_files_for_SFML::Audio "${_IMPORT_PREFIX}/lib/libsfml-audio-s-d.a" ) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLAudioStaticTargets.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLAudioStaticTargets.cmake new file mode 100644 index 00000000..3cc7129b --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLAudioStaticTargets.cmake @@ -0,0 +1,125 @@ +# Generated by CMake + +if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) + message(FATAL_ERROR "CMake >= 2.8.0 required") +endif() +if(CMAKE_VERSION VERSION_LESS "2.8.12") + message(FATAL_ERROR "CMake >= 2.8.12 required") +endif() +cmake_policy(PUSH) +cmake_policy(VERSION 2.8.12...3.28) +#---------------------------------------------------------------- +# Generated CMake target import file. +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Protect against multiple inclusion, which would fail when already imported targets are added once more. +set(_cmake_targets_defined "") +set(_cmake_targets_not_defined "") +set(_cmake_expected_targets "") +foreach(_cmake_expected_target IN ITEMS SFML::Audio) + list(APPEND _cmake_expected_targets "${_cmake_expected_target}") + if(TARGET "${_cmake_expected_target}") + list(APPEND _cmake_targets_defined "${_cmake_expected_target}") + else() + list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") + endif() +endforeach() +unset(_cmake_expected_target) +if(_cmake_targets_defined STREQUAL _cmake_expected_targets) + unset(_cmake_targets_defined) + unset(_cmake_targets_not_defined) + unset(_cmake_expected_targets) + unset(CMAKE_IMPORT_FILE_VERSION) + cmake_policy(POP) + return() +endif() +if(NOT _cmake_targets_defined STREQUAL "") + string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") + string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") + message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") +endif() +unset(_cmake_targets_defined) +unset(_cmake_targets_not_defined) +unset(_cmake_expected_targets) + + +# Compute the installation prefix relative to this file. +get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +if(_IMPORT_PREFIX STREQUAL "/") + set(_IMPORT_PREFIX "") +endif() + +# Create imported target SFML::Audio +add_library(SFML::Audio STATIC IMPORTED) + +set_target_properties(SFML::Audio PROPERTIES + INTERFACE_COMPILE_DEFINITIONS "SFML_STATIC" + INTERFACE_COMPILE_FEATURES "cxx_std_17" + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_LINK_LIBRARIES "SFML::System;\$;\$;\$;\$;\$" +) + +# Load information for each installed configuration. +file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/SFMLAudioStaticTargets-*.cmake") +foreach(_cmake_config_file IN LISTS _cmake_config_files) + include("${_cmake_config_file}") +endforeach() +unset(_cmake_config_file) +unset(_cmake_config_files) + +# Cleanup temporary variables. +set(_IMPORT_PREFIX) + +# Loop over all imported files and verify that they actually exist +foreach(_cmake_target IN LISTS _cmake_import_check_targets) + if(CMAKE_VERSION VERSION_LESS "3.28" + OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target} + OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}") + foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") + if(NOT EXISTS "${_cmake_file}") + message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file + \"${_cmake_file}\" +but this file does not exist. Possible reasons include: +* The file was deleted, renamed, or moved to another location. +* An install or uninstall procedure did not complete successfully. +* The installation package was faulty and contained + \"${CMAKE_CURRENT_LIST_FILE}\" +but not all the files it references. +") + endif() + endforeach() + endif() + unset(_cmake_file) + unset("_cmake_import_check_files_for_${_cmake_target}") +endforeach() +unset(_cmake_target) +unset(_cmake_import_check_targets) + +# Make sure the targets which have been exported in some other +# export set exist. +unset(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) +foreach(_target "SFML::System" "Vorbis::vorbis" "Vorbis::vorbisfile" "Vorbis::vorbisenc" "FLAC::FLAC" ) + if(NOT TARGET "${_target}" ) + set(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets "${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets} ${_target}") + endif() +endforeach() + +if(DEFINED ${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) + if(CMAKE_FIND_PACKAGE_NAME) + set( ${CMAKE_FIND_PACKAGE_NAME}_FOUND FALSE) + set( ${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE "The following imported targets are referenced, but are missing: ${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets}") + else() + message(FATAL_ERROR "The following imported targets are referenced, but are missing: ${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets}") + endif() +endif() +unset(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) +cmake_policy(POP) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLGraphicsStaticTargets-debug.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLGraphicsStaticTargets-debug.cmake new file mode 100644 index 00000000..6345ad5c --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLGraphicsStaticTargets-debug.cmake @@ -0,0 +1,19 @@ +#---------------------------------------------------------------- +# Generated CMake target import file for configuration "Debug". +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Import target "SFML::Graphics" for configuration "Debug" +set_property(TARGET SFML::Graphics APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) +set_target_properties(SFML::Graphics PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "CXX" + IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/libsfml-graphics-s-d.a" + ) + +list(APPEND _cmake_import_check_targets SFML::Graphics ) +list(APPEND _cmake_import_check_files_for_SFML::Graphics "${_IMPORT_PREFIX}/lib/libsfml-graphics-s-d.a" ) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLGraphicsStaticTargets.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLGraphicsStaticTargets.cmake new file mode 100644 index 00000000..f4ad1f1b --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLGraphicsStaticTargets.cmake @@ -0,0 +1,125 @@ +# Generated by CMake + +if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) + message(FATAL_ERROR "CMake >= 2.8.0 required") +endif() +if(CMAKE_VERSION VERSION_LESS "2.8.12") + message(FATAL_ERROR "CMake >= 2.8.12 required") +endif() +cmake_policy(PUSH) +cmake_policy(VERSION 2.8.12...3.28) +#---------------------------------------------------------------- +# Generated CMake target import file. +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Protect against multiple inclusion, which would fail when already imported targets are added once more. +set(_cmake_targets_defined "") +set(_cmake_targets_not_defined "") +set(_cmake_expected_targets "") +foreach(_cmake_expected_target IN ITEMS SFML::Graphics) + list(APPEND _cmake_expected_targets "${_cmake_expected_target}") + if(TARGET "${_cmake_expected_target}") + list(APPEND _cmake_targets_defined "${_cmake_expected_target}") + else() + list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") + endif() +endforeach() +unset(_cmake_expected_target) +if(_cmake_targets_defined STREQUAL _cmake_expected_targets) + unset(_cmake_targets_defined) + unset(_cmake_targets_not_defined) + unset(_cmake_expected_targets) + unset(CMAKE_IMPORT_FILE_VERSION) + cmake_policy(POP) + return() +endif() +if(NOT _cmake_targets_defined STREQUAL "") + string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") + string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") + message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") +endif() +unset(_cmake_targets_defined) +unset(_cmake_targets_not_defined) +unset(_cmake_expected_targets) + + +# Compute the installation prefix relative to this file. +get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +if(_IMPORT_PREFIX STREQUAL "/") + set(_IMPORT_PREFIX "") +endif() + +# Create imported target SFML::Graphics +add_library(SFML::Graphics STATIC IMPORTED) + +set_target_properties(SFML::Graphics PROPERTIES + INTERFACE_COMPILE_DEFINITIONS "SFML_STATIC" + INTERFACE_COMPILE_FEATURES "cxx_std_17" + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_LINK_LIBRARIES "SFML::Window;\$" +) + +# Load information for each installed configuration. +file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/SFMLGraphicsStaticTargets-*.cmake") +foreach(_cmake_config_file IN LISTS _cmake_config_files) + include("${_cmake_config_file}") +endforeach() +unset(_cmake_config_file) +unset(_cmake_config_files) + +# Cleanup temporary variables. +set(_IMPORT_PREFIX) + +# Loop over all imported files and verify that they actually exist +foreach(_cmake_target IN LISTS _cmake_import_check_targets) + if(CMAKE_VERSION VERSION_LESS "3.28" + OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target} + OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}") + foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") + if(NOT EXISTS "${_cmake_file}") + message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file + \"${_cmake_file}\" +but this file does not exist. Possible reasons include: +* The file was deleted, renamed, or moved to another location. +* An install or uninstall procedure did not complete successfully. +* The installation package was faulty and contained + \"${CMAKE_CURRENT_LIST_FILE}\" +but not all the files it references. +") + endif() + endforeach() + endif() + unset(_cmake_file) + unset("_cmake_import_check_files_for_${_cmake_target}") +endforeach() +unset(_cmake_target) +unset(_cmake_import_check_targets) + +# Make sure the targets which have been exported in some other +# export set exist. +unset(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) +foreach(_target "SFML::Window" "freetype" ) + if(NOT TARGET "${_target}" ) + set(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets "${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets} ${_target}") + endif() +endforeach() + +if(DEFINED ${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) + if(CMAKE_FIND_PACKAGE_NAME) + set( ${CMAKE_FIND_PACKAGE_NAME}_FOUND FALSE) + set( ${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE "The following imported targets are referenced, but are missing: ${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets}") + else() + message(FATAL_ERROR "The following imported targets are referenced, but are missing: ${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets}") + endif() +endif() +unset(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) +cmake_policy(POP) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLMainStaticTargets-debug.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLMainStaticTargets-debug.cmake new file mode 100644 index 00000000..666a938a --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLMainStaticTargets-debug.cmake @@ -0,0 +1,19 @@ +#---------------------------------------------------------------- +# Generated CMake target import file for configuration "Debug". +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Import target "SFML::Main" for configuration "Debug" +set_property(TARGET SFML::Main APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) +set_target_properties(SFML::Main PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "CXX" + IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/libsfml-main-s-d.a" + ) + +list(APPEND _cmake_import_check_targets SFML::Main ) +list(APPEND _cmake_import_check_files_for_SFML::Main "${_IMPORT_PREFIX}/lib/libsfml-main-s-d.a" ) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLMainStaticTargets.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLMainStaticTargets.cmake new file mode 100644 index 00000000..5f766528 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLMainStaticTargets.cmake @@ -0,0 +1,108 @@ +# Generated by CMake + +if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) + message(FATAL_ERROR "CMake >= 2.8.0 required") +endif() +if(CMAKE_VERSION VERSION_LESS "2.8.3") + message(FATAL_ERROR "CMake >= 2.8.3 required") +endif() +cmake_policy(PUSH) +cmake_policy(VERSION 2.8.3...3.28) +#---------------------------------------------------------------- +# Generated CMake target import file. +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Protect against multiple inclusion, which would fail when already imported targets are added once more. +set(_cmake_targets_defined "") +set(_cmake_targets_not_defined "") +set(_cmake_expected_targets "") +foreach(_cmake_expected_target IN ITEMS SFML::Main) + list(APPEND _cmake_expected_targets "${_cmake_expected_target}") + if(TARGET "${_cmake_expected_target}") + list(APPEND _cmake_targets_defined "${_cmake_expected_target}") + else() + list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") + endif() +endforeach() +unset(_cmake_expected_target) +if(_cmake_targets_defined STREQUAL _cmake_expected_targets) + unset(_cmake_targets_defined) + unset(_cmake_targets_not_defined) + unset(_cmake_expected_targets) + unset(CMAKE_IMPORT_FILE_VERSION) + cmake_policy(POP) + return() +endif() +if(NOT _cmake_targets_defined STREQUAL "") + string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") + string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") + message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") +endif() +unset(_cmake_targets_defined) +unset(_cmake_targets_not_defined) +unset(_cmake_expected_targets) + + +# Compute the installation prefix relative to this file. +get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +if(_IMPORT_PREFIX STREQUAL "/") + set(_IMPORT_PREFIX "") +endif() + +# Create imported target SFML::Main +add_library(SFML::Main STATIC IMPORTED) + +set_target_properties(SFML::Main PROPERTIES + INTERFACE_COMPILE_DEFINITIONS "SFML_STATIC" + INTERFACE_COMPILE_FEATURES "cxx_std_17" + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" +) + +# Load information for each installed configuration. +file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/SFMLMainStaticTargets-*.cmake") +foreach(_cmake_config_file IN LISTS _cmake_config_files) + include("${_cmake_config_file}") +endforeach() +unset(_cmake_config_file) +unset(_cmake_config_files) + +# Cleanup temporary variables. +set(_IMPORT_PREFIX) + +# Loop over all imported files and verify that they actually exist +foreach(_cmake_target IN LISTS _cmake_import_check_targets) + if(CMAKE_VERSION VERSION_LESS "3.28" + OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target} + OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}") + foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") + if(NOT EXISTS "${_cmake_file}") + message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file + \"${_cmake_file}\" +but this file does not exist. Possible reasons include: +* The file was deleted, renamed, or moved to another location. +* An install or uninstall procedure did not complete successfully. +* The installation package was faulty and contained + \"${CMAKE_CURRENT_LIST_FILE}\" +but not all the files it references. +") + endif() + endforeach() + endif() + unset(_cmake_file) + unset("_cmake_import_check_files_for_${_cmake_target}") +endforeach() +unset(_cmake_target) +unset(_cmake_import_check_targets) + +# This file does not depend on other imported targets which have +# been exported from the same project but in a separate export set. + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) +cmake_policy(POP) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLNetworkStaticTargets-debug.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLNetworkStaticTargets-debug.cmake new file mode 100644 index 00000000..171530d5 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLNetworkStaticTargets-debug.cmake @@ -0,0 +1,19 @@ +#---------------------------------------------------------------- +# Generated CMake target import file for configuration "Debug". +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Import target "SFML::Network" for configuration "Debug" +set_property(TARGET SFML::Network APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) +set_target_properties(SFML::Network PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "CXX" + IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/libsfml-network-s-d.a" + ) + +list(APPEND _cmake_import_check_targets SFML::Network ) +list(APPEND _cmake_import_check_files_for_SFML::Network "${_IMPORT_PREFIX}/lib/libsfml-network-s-d.a" ) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLNetworkStaticTargets.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLNetworkStaticTargets.cmake new file mode 100644 index 00000000..37df3f6f --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLNetworkStaticTargets.cmake @@ -0,0 +1,125 @@ +# Generated by CMake + +if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) + message(FATAL_ERROR "CMake >= 2.8.0 required") +endif() +if(CMAKE_VERSION VERSION_LESS "2.8.12") + message(FATAL_ERROR "CMake >= 2.8.12 required") +endif() +cmake_policy(PUSH) +cmake_policy(VERSION 2.8.12...3.28) +#---------------------------------------------------------------- +# Generated CMake target import file. +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Protect against multiple inclusion, which would fail when already imported targets are added once more. +set(_cmake_targets_defined "") +set(_cmake_targets_not_defined "") +set(_cmake_expected_targets "") +foreach(_cmake_expected_target IN ITEMS SFML::Network) + list(APPEND _cmake_expected_targets "${_cmake_expected_target}") + if(TARGET "${_cmake_expected_target}") + list(APPEND _cmake_targets_defined "${_cmake_expected_target}") + else() + list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") + endif() +endforeach() +unset(_cmake_expected_target) +if(_cmake_targets_defined STREQUAL _cmake_expected_targets) + unset(_cmake_targets_defined) + unset(_cmake_targets_not_defined) + unset(_cmake_expected_targets) + unset(CMAKE_IMPORT_FILE_VERSION) + cmake_policy(POP) + return() +endif() +if(NOT _cmake_targets_defined STREQUAL "") + string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") + string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") + message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") +endif() +unset(_cmake_targets_defined) +unset(_cmake_targets_not_defined) +unset(_cmake_expected_targets) + + +# Compute the installation prefix relative to this file. +get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +if(_IMPORT_PREFIX STREQUAL "/") + set(_IMPORT_PREFIX "") +endif() + +# Create imported target SFML::Network +add_library(SFML::Network STATIC IMPORTED) + +set_target_properties(SFML::Network PROPERTIES + INTERFACE_COMPILE_DEFINITIONS "SFML_STATIC" + INTERFACE_COMPILE_FEATURES "cxx_std_17" + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_LINK_LIBRARIES "SFML::System;\$" +) + +# Load information for each installed configuration. +file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/SFMLNetworkStaticTargets-*.cmake") +foreach(_cmake_config_file IN LISTS _cmake_config_files) + include("${_cmake_config_file}") +endforeach() +unset(_cmake_config_file) +unset(_cmake_config_files) + +# Cleanup temporary variables. +set(_IMPORT_PREFIX) + +# Loop over all imported files and verify that they actually exist +foreach(_cmake_target IN LISTS _cmake_import_check_targets) + if(CMAKE_VERSION VERSION_LESS "3.28" + OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target} + OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}") + foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") + if(NOT EXISTS "${_cmake_file}") + message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file + \"${_cmake_file}\" +but this file does not exist. Possible reasons include: +* The file was deleted, renamed, or moved to another location. +* An install or uninstall procedure did not complete successfully. +* The installation package was faulty and contained + \"${CMAKE_CURRENT_LIST_FILE}\" +but not all the files it references. +") + endif() + endforeach() + endif() + unset(_cmake_file) + unset("_cmake_import_check_files_for_${_cmake_target}") +endforeach() +unset(_cmake_target) +unset(_cmake_import_check_targets) + +# Make sure the targets which have been exported in some other +# export set exist. +unset(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) +foreach(_target "SFML::System" ) + if(NOT TARGET "${_target}" ) + set(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets "${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets} ${_target}") + endif() +endforeach() + +if(DEFINED ${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) + if(CMAKE_FIND_PACKAGE_NAME) + set( ${CMAKE_FIND_PACKAGE_NAME}_FOUND FALSE) + set( ${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE "The following imported targets are referenced, but are missing: ${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets}") + else() + message(FATAL_ERROR "The following imported targets are referenced, but are missing: ${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets}") + endif() +endif() +unset(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) +cmake_policy(POP) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLSystemStaticTargets-debug.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLSystemStaticTargets-debug.cmake new file mode 100644 index 00000000..c9fffe82 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLSystemStaticTargets-debug.cmake @@ -0,0 +1,19 @@ +#---------------------------------------------------------------- +# Generated CMake target import file for configuration "Debug". +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Import target "SFML::System" for configuration "Debug" +set_property(TARGET SFML::System APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) +set_target_properties(SFML::System PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "CXX" + IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/libsfml-system-s-d.a" + ) + +list(APPEND _cmake_import_check_targets SFML::System ) +list(APPEND _cmake_import_check_files_for_SFML::System "${_IMPORT_PREFIX}/lib/libsfml-system-s-d.a" ) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLSystemStaticTargets.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLSystemStaticTargets.cmake new file mode 100644 index 00000000..75223254 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLSystemStaticTargets.cmake @@ -0,0 +1,109 @@ +# Generated by CMake + +if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) + message(FATAL_ERROR "CMake >= 2.8.0 required") +endif() +if(CMAKE_VERSION VERSION_LESS "2.8.12") + message(FATAL_ERROR "CMake >= 2.8.12 required") +endif() +cmake_policy(PUSH) +cmake_policy(VERSION 2.8.12...3.28) +#---------------------------------------------------------------- +# Generated CMake target import file. +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Protect against multiple inclusion, which would fail when already imported targets are added once more. +set(_cmake_targets_defined "") +set(_cmake_targets_not_defined "") +set(_cmake_expected_targets "") +foreach(_cmake_expected_target IN ITEMS SFML::System) + list(APPEND _cmake_expected_targets "${_cmake_expected_target}") + if(TARGET "${_cmake_expected_target}") + list(APPEND _cmake_targets_defined "${_cmake_expected_target}") + else() + list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") + endif() +endforeach() +unset(_cmake_expected_target) +if(_cmake_targets_defined STREQUAL _cmake_expected_targets) + unset(_cmake_targets_defined) + unset(_cmake_targets_not_defined) + unset(_cmake_expected_targets) + unset(CMAKE_IMPORT_FILE_VERSION) + cmake_policy(POP) + return() +endif() +if(NOT _cmake_targets_defined STREQUAL "") + string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") + string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") + message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") +endif() +unset(_cmake_targets_defined) +unset(_cmake_targets_not_defined) +unset(_cmake_expected_targets) + + +# Compute the installation prefix relative to this file. +get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +if(_IMPORT_PREFIX STREQUAL "/") + set(_IMPORT_PREFIX "") +endif() + +# Create imported target SFML::System +add_library(SFML::System STATIC IMPORTED) + +set_target_properties(SFML::System PROPERTIES + INTERFACE_COMPILE_DEFINITIONS "SFML_STATIC" + INTERFACE_COMPILE_FEATURES "cxx_std_17" + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_LINK_LIBRARIES "\$;\$" +) + +# Load information for each installed configuration. +file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/SFMLSystemStaticTargets-*.cmake") +foreach(_cmake_config_file IN LISTS _cmake_config_files) + include("${_cmake_config_file}") +endforeach() +unset(_cmake_config_file) +unset(_cmake_config_files) + +# Cleanup temporary variables. +set(_IMPORT_PREFIX) + +# Loop over all imported files and verify that they actually exist +foreach(_cmake_target IN LISTS _cmake_import_check_targets) + if(CMAKE_VERSION VERSION_LESS "3.28" + OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target} + OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}") + foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") + if(NOT EXISTS "${_cmake_file}") + message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file + \"${_cmake_file}\" +but this file does not exist. Possible reasons include: +* The file was deleted, renamed, or moved to another location. +* An install or uninstall procedure did not complete successfully. +* The installation package was faulty and contained + \"${CMAKE_CURRENT_LIST_FILE}\" +but not all the files it references. +") + endif() + endforeach() + endif() + unset(_cmake_file) + unset("_cmake_import_check_files_for_${_cmake_target}") +endforeach() +unset(_cmake_target) +unset(_cmake_import_check_targets) + +# This file does not depend on other imported targets which have +# been exported from the same project but in a separate export set. + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) +cmake_policy(POP) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLWindowStaticTargets-debug.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLWindowStaticTargets-debug.cmake new file mode 100644 index 00000000..c715a1c8 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLWindowStaticTargets-debug.cmake @@ -0,0 +1,19 @@ +#---------------------------------------------------------------- +# Generated CMake target import file for configuration "Debug". +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Import target "SFML::Window" for configuration "Debug" +set_property(TARGET SFML::Window APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) +set_target_properties(SFML::Window PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "CXX" + IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/libsfml-window-s-d.a" + ) + +list(APPEND _cmake_import_check_targets SFML::Window ) +list(APPEND _cmake_import_check_files_for_SFML::Window "${_IMPORT_PREFIX}/lib/libsfml-window-s-d.a" ) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLWindowStaticTargets.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLWindowStaticTargets.cmake new file mode 100644 index 00000000..40dcb9aa --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLWindowStaticTargets.cmake @@ -0,0 +1,125 @@ +# Generated by CMake + +if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) + message(FATAL_ERROR "CMake >= 2.8.0 required") +endif() +if(CMAKE_VERSION VERSION_LESS "2.8.12") + message(FATAL_ERROR "CMake >= 2.8.12 required") +endif() +cmake_policy(PUSH) +cmake_policy(VERSION 2.8.12...3.28) +#---------------------------------------------------------------- +# Generated CMake target import file. +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Protect against multiple inclusion, which would fail when already imported targets are added once more. +set(_cmake_targets_defined "") +set(_cmake_targets_not_defined "") +set(_cmake_expected_targets "") +foreach(_cmake_expected_target IN ITEMS SFML::Window) + list(APPEND _cmake_expected_targets "${_cmake_expected_target}") + if(TARGET "${_cmake_expected_target}") + list(APPEND _cmake_targets_defined "${_cmake_expected_target}") + else() + list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") + endif() +endforeach() +unset(_cmake_expected_target) +if(_cmake_targets_defined STREQUAL _cmake_expected_targets) + unset(_cmake_targets_defined) + unset(_cmake_targets_not_defined) + unset(_cmake_expected_targets) + unset(CMAKE_IMPORT_FILE_VERSION) + cmake_policy(POP) + return() +endif() +if(NOT _cmake_targets_defined STREQUAL "") + string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") + string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") + message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") +endif() +unset(_cmake_targets_defined) +unset(_cmake_targets_not_defined) +unset(_cmake_expected_targets) + + +# Compute the installation prefix relative to this file. +get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +if(_IMPORT_PREFIX STREQUAL "/") + set(_IMPORT_PREFIX "") +endif() + +# Create imported target SFML::Window +add_library(SFML::Window STATIC IMPORTED) + +set_target_properties(SFML::Window PROPERTIES + INTERFACE_COMPILE_DEFINITIONS "SFML_STATIC" + INTERFACE_COMPILE_FEATURES "cxx_std_17" + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_LINK_LIBRARIES "SFML::System;\$;\$;\$" +) + +# Load information for each installed configuration. +file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/SFMLWindowStaticTargets-*.cmake") +foreach(_cmake_config_file IN LISTS _cmake_config_files) + include("${_cmake_config_file}") +endforeach() +unset(_cmake_config_file) +unset(_cmake_config_files) + +# Cleanup temporary variables. +set(_IMPORT_PREFIX) + +# Loop over all imported files and verify that they actually exist +foreach(_cmake_target IN LISTS _cmake_import_check_targets) + if(CMAKE_VERSION VERSION_LESS "3.28" + OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target} + OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}") + foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") + if(NOT EXISTS "${_cmake_file}") + message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file + \"${_cmake_file}\" +but this file does not exist. Possible reasons include: +* The file was deleted, renamed, or moved to another location. +* An install or uninstall procedure did not complete successfully. +* The installation package was faulty and contained + \"${CMAKE_CURRENT_LIST_FILE}\" +but not all the files it references. +") + endif() + endforeach() + endif() + unset(_cmake_file) + unset("_cmake_import_check_files_for_${_cmake_target}") +endforeach() +unset(_cmake_target) +unset(_cmake_import_check_targets) + +# Make sure the targets which have been exported in some other +# export set exist. +unset(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) +foreach(_target "SFML::System" ) + if(NOT TARGET "${_target}" ) + set(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets "${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets} ${_target}") + endif() +endforeach() + +if(DEFINED ${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) + if(CMAKE_FIND_PACKAGE_NAME) + set( ${CMAKE_FIND_PACKAGE_NAME}_FOUND FALSE) + set( ${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE "The following imported targets are referenced, but are missing: ${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets}") + else() + message(FATAL_ERROR "The following imported targets are referenced, but are missing: ${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets}") + endif() +endif() +unset(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) +cmake_policy(POP) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/SFMLConfig.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/SFMLConfig.cmake new file mode 100644 index 00000000..50cac3ca --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/SFMLConfig.cmake @@ -0,0 +1,191 @@ +# This script provides the SFML libraries as imported targets +# ------------------------------------ +# +# Usage +# ----- +# +# When you try to locate the SFML libraries, you must specify which modules you want to use (System, Window, Graphics, Network, Audio, Main). +# If none is given, no imported target will be created and you won't be able to link to SFML libraries. +# example: +# find_package(SFML COMPONENTS Graphics Window System) # find the graphics, window and system modules +# +# You can enforce a specific version, either MAJOR.MINOR or only MAJOR. +# If nothing is specified, the version won't be checked (i.e. any version will be accepted). +# example: +# find_package(SFML COMPONENTS ...) # no specific version required +# find_package(SFML 3 COMPONENTS ...) # any 3.x version +# find_package(SFML 2.6 COMPONENTS ...) # version 2.6 or greater with the same major version +# +# By default, the dynamic libraries of SFML will be found. To find the static ones instead, +# you must set the SFML_STATIC_LIBRARIES variable to ON before calling find_package(SFML ...). +# You don't need to deal with SFML's dependencies when linking your targets against SFML libraries, +# they will all be configured automatically, even if you use SFML static libraries. +# example: +# set(SFML_STATIC_LIBRARIES ON) +# find_package(SFML 3 COMPONENTS Network System) +# +# When searching for SFML with find_package(), keep in mind that it will also find versions which are +# in development (i.e. between two released versions), if you have them in your search path. +# If you want to make sure that a found SFML package corresponds to an official release, check the +# bool output variable SFML_VERSION_IS_RELEASE, which is true for official releases and false for development versions. +# +# If you want to use the latest features before a new SFML version is released, make sure to look for +# the upcoming version number. For example, if you want to use latest SFML 3 features before 3.0.0 is officially released, +# look for version 3 with find_package(). +# +# On macOS by default CMake will search for frameworks. If you want to use static libraries and have installed +# both SFML frameworks and SFML static libraries, your must set CMAKE_FIND_FRAMEWORK to "NEVER" or "LAST" +# in addition to setting SFML_STATIC_LIBRARIES to ON. Otherwise CMake will check the frameworks bundle config and +# fail after finding out that it does not provide static libraries. Please refer to CMake documentation for more details. +# +# Additionally, keep in mind that SFML frameworks are only available as release libraries unlike dylibs which +# are available for both release and debug modes. +# +# If SFML is not installed in a standard path, you can use CMAKE_PREFIX_PATH to tell CMake in what directory +# SFML was installed. +# +# Output +# ------ +# +# This script defines the following variables: +# - For each specified module XXX (System, Window, Graphics, Network, Audio, Main): +# - SFML_XXX_FOUND: true if either the debug or release library of the xxx module is found +# - SFML_FOUND: true if all the required modules are found +# +# And the following targets: +# - For each specified module XXX (System, Window, Graphics, Network, Audio, Main): +# - SFML::XXX +# The SFML targets are the same for both Debug and Release build configurations and will automatically provide +# correct settings based on your currently active build configuration. The SFML targets name also do not change +# when using dynamic or static SFML libraries. +# +# When linking against a SFML target, you do not need to specify indirect dependencies. For example, linking +# against SFML::Graphics will also automatically link against SFML::Window and SFML::System. +# +# example: +# find_package(SFML 3 COMPONENTS Graphics Audio REQUIRED) +# add_executable(myapp ...) +# target_link_libraries(myapp PRIVATE SFML::Graphics SFML::Audio) + +if(NOT SFML_FIND_COMPONENTS) + message(FATAL_ERROR "find_package(SFML) called with no component") +endif() + +set(SFML_SUPPORTED_COMPONENTS Audio Graphics Main Network System Window) + +foreach(component ${SFML_FIND_COMPONENTS}) + if(NOT component IN_LIST SFML_SUPPORTED_COMPONENTS) + set(SFML_FOUND OFF) + set(SFML_NOT_FOUND_MESSAGE "Unsupported SFML component: ${component}") + message(FATAL_ERROR "${SFML_NOT_FOUND_MESSAGE}") + endif() +endforeach() + +set(FIND_SFML_PATHS + "${CMAKE_CURRENT_LIST_DIR}/../../.." + ~/Library/Frameworks + /Library/Frameworks + /usr/local + /usr + /sw + /opt/local + /opt/csw + /opt) + +find_path(SFML_DOC_DIR SFML.tag + PATH_SUFFIXES SFML/doc share/doc/SFML + PATHS ${FIND_SFML_PATHS}) + +# Update requested components (eg. request window component if graphics component was requested) +set(FIND_SFML_COMPONENTS_SORTED "") +if("Audio" IN_LIST SFML_FIND_COMPONENTS) + list(APPEND FIND_SFML_COMPONENTS_SORTED "System" "Audio") +endif() +if("Graphics" IN_LIST SFML_FIND_COMPONENTS) + list(APPEND FIND_SFML_COMPONENTS_SORTED "System" "Window" "Graphics") +endif() +if("Main" IN_LIST SFML_FIND_COMPONENTS) + list(APPEND FIND_SFML_COMPONENTS_SORTED "Main") +endif() +if("Network" IN_LIST SFML_FIND_COMPONENTS) + list(APPEND FIND_SFML_COMPONENTS_SORTED "System" "Network") +endif() +if("System" IN_LIST SFML_FIND_COMPONENTS) + list(APPEND FIND_SFML_COMPONENTS_SORTED "System") +endif() +if("Window" IN_LIST SFML_FIND_COMPONENTS) + list(APPEND FIND_SFML_COMPONENTS_SORTED "System" "Window") +endif() +list(REMOVE_DUPLICATES FIND_SFML_COMPONENTS_SORTED) + +# Choose which target definitions must be imported +if(SFML_STATIC_LIBRARIES) + set(SFML_IS_FRAMEWORK_INSTALL "") + if(SFML_IS_FRAMEWORK_INSTALL) + message(WARNING "Static frameworks are not supported by SFML. Clear cache entries, \ +and either change SFML_STATIC_LIBRARIES or CMAKE_FIND_FRAMEWORK before calling find_package(SFML)") + endif() + set(config_name "Static") +else() + set(config_name "Shared") +endif() + +# Set SFML_FOUND to ON by default, may be overwritten by one of the includes below +set(SFML_FOUND ON) + +# Only configure dependencies if we are static linking +if(SFML_STATIC_LIBRARIES) + # Look for dependencies in "reverse order" + # This is due to the fact that among other things, resolving the + # X11 dependency will break our own find_package(Freetype CONFIG) + # because X11 attempts to find Freetype itself to resolve its Xft dependency. + set(FIND_SFML_COMPONENTS_REVERSED ${FIND_SFML_COMPONENTS_SORTED}) + list(REVERSE FIND_SFML_COMPONENTS_REVERSED) + + foreach(component ${FIND_SFML_COMPONENTS_REVERSED}) + set(dependencies_file "${CMAKE_CURRENT_LIST_DIR}/SFML${component}Dependencies.cmake") + if(EXISTS "${dependencies_file}") + include("${dependencies_file}") + endif() + endforeach() +endif() + +foreach(component ${FIND_SFML_COMPONENTS_SORTED}) + string(TOUPPER "${component}" UPPER_COMPONENT) + set(targets_config_file "${CMAKE_CURRENT_LIST_DIR}/SFML${component}${config_name}Targets.cmake") + + # Generate imported targets for SFML components + if(EXISTS "${targets_config_file}") + include("${targets_config_file}") + + if(TARGET SFML::${component}) + set(SFML_${UPPER_COMPONENT}_FOUND ON) + else() + set(SFML_${UPPER_COMPONENT}_FOUND OFF) + set(SFML_FOUND OFF) + if(SFML_FIND_REQUIRED_${component}) + set(FIND_SFML_ERROR "Found SFML but requested component '${component}' is missing in the package configuration.") + endif() + endif() + else() + set(FIND_SFML_ERROR "Requested SFML configuration (${config_name}) was not found") + set(SFML_${UPPER_COMPONENT}_FOUND OFF) + set(SFML_FOUND OFF) + endif() +endforeach() + +if(SFML_FOUND) + set(SFML_VERSION_IS_RELEASE ON) +else() + if(SFML_FIND_REQUIRED) + # fatal error + message(FATAL_ERROR "${FIND_SFML_ERROR}") + elseif(NOT SFML_FIND_QUIETLY) + # error but continue + message(STATUS "${FIND_SFML_ERROR}") + endif() +endif() + +if(SFML_FOUND AND NOT SFML_FIND_QUIETLY) + message(STATUS "Found SFML 3.0.0 in ${CMAKE_CURRENT_LIST_DIR}") +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/SFMLConfigVersion.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/SFMLConfigVersion.cmake new file mode 100644 index 00000000..7b4797e9 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/SFMLConfigVersion.cmake @@ -0,0 +1,65 @@ +# This is a basic version file for the Config-mode of find_package(). +# It is used by write_basic_package_version_file() as input file for configure_file() +# to create a version-file which can be installed along a config.cmake file. +# +# The created file sets PACKAGE_VERSION_EXACT if the current version string and +# the requested version string are exactly the same and it sets +# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version, +# but only if the requested major version is the same as the current one. +# The variable CVF_VERSION must be set before calling configure_file(). + + +set(PACKAGE_VERSION "3.0.0") + +if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) + set(PACKAGE_VERSION_COMPATIBLE FALSE) +else() + + if("3.0.0" MATCHES "^([0-9]+)\\.") + set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}") + if(NOT CVF_VERSION_MAJOR VERSION_EQUAL 0) + string(REGEX REPLACE "^0+" "" CVF_VERSION_MAJOR "${CVF_VERSION_MAJOR}") + endif() + else() + set(CVF_VERSION_MAJOR "3.0.0") + endif() + + if(PACKAGE_FIND_VERSION_RANGE) + # both endpoints of the range must have the expected major version + math (EXPR CVF_VERSION_MAJOR_NEXT "${CVF_VERSION_MAJOR} + 1") + if (NOT PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR + OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX_MAJOR STREQUAL CVF_VERSION_MAJOR) + OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX VERSION_LESS_EQUAL CVF_VERSION_MAJOR_NEXT))) + set(PACKAGE_VERSION_COMPATIBLE FALSE) + elseif(PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR + AND ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS_EQUAL PACKAGE_FIND_VERSION_MAX) + OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MAX))) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + else() + set(PACKAGE_VERSION_COMPATIBLE FALSE) + endif() + else() + if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + else() + set(PACKAGE_VERSION_COMPATIBLE FALSE) + endif() + + if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) + set(PACKAGE_VERSION_EXACT TRUE) + endif() + endif() +endif() + + +# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: +if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "") + return() +endif() + +# check that the installed version has the same 32/64bit-ness as the one which is currently searching: +if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") + math(EXPR installedBits "8 * 8") + set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") + set(PACKAGE_VERSION_UNSUITABLE TRUE) +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/cmake_install.cmake new file mode 100644 index 00000000..39991b8b --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/cmake_install.cmake @@ -0,0 +1,205 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/MiniHW2") +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 "G:/CLion 2024.3/bin/mingw/bin/objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/cmake_install.cmake") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "devel" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include" TYPE DIRECTORY FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include/" FILES_MATCHING REGEX "/[^/]*\\.hpp$" REGEX "/[^/]*\\.inl$") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "devel" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML" TYPE DIRECTORY FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/cmake/Modules/") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/doc/SFML" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/license.md") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/doc/SFML" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/readme.md") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLSystemStaticTargets.cmake") + file(DIFFERENT _cmake_export_file_changed FILES + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLSystemStaticTargets.cmake" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLSystemStaticTargets.cmake") + if(_cmake_export_file_changed) + file(GLOB _cmake_old_config_files "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLSystemStaticTargets-*.cmake") + if(_cmake_old_config_files) + string(REPLACE ";" ", " _cmake_old_config_files_text "${_cmake_old_config_files}") + message(STATUS "Old export file \"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLSystemStaticTargets.cmake\" will be replaced. Removing files [${_cmake_old_config_files_text}].") + unset(_cmake_old_config_files_text) + file(REMOVE ${_cmake_old_config_files}) + endif() + unset(_cmake_old_config_files) + endif() + unset(_cmake_export_file_changed) + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLSystemStaticTargets.cmake") + if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Dd][Ee][Bb][Uu][Gg])$") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLSystemStaticTargets-debug.cmake") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLMainStaticTargets.cmake") + file(DIFFERENT _cmake_export_file_changed FILES + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLMainStaticTargets.cmake" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLMainStaticTargets.cmake") + if(_cmake_export_file_changed) + file(GLOB _cmake_old_config_files "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLMainStaticTargets-*.cmake") + if(_cmake_old_config_files) + string(REPLACE ";" ", " _cmake_old_config_files_text "${_cmake_old_config_files}") + message(STATUS "Old export file \"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLMainStaticTargets.cmake\" will be replaced. Removing files [${_cmake_old_config_files_text}].") + unset(_cmake_old_config_files_text) + file(REMOVE ${_cmake_old_config_files}) + endif() + unset(_cmake_old_config_files) + endif() + unset(_cmake_export_file_changed) + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLMainStaticTargets.cmake") + if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Dd][Ee][Bb][Uu][Gg])$") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLMainStaticTargets-debug.cmake") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLWindowStaticTargets.cmake") + file(DIFFERENT _cmake_export_file_changed FILES + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLWindowStaticTargets.cmake" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLWindowStaticTargets.cmake") + if(_cmake_export_file_changed) + file(GLOB _cmake_old_config_files "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLWindowStaticTargets-*.cmake") + if(_cmake_old_config_files) + string(REPLACE ";" ", " _cmake_old_config_files_text "${_cmake_old_config_files}") + message(STATUS "Old export file \"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLWindowStaticTargets.cmake\" will be replaced. Removing files [${_cmake_old_config_files_text}].") + unset(_cmake_old_config_files_text) + file(REMOVE ${_cmake_old_config_files}) + endif() + unset(_cmake_old_config_files) + endif() + unset(_cmake_export_file_changed) + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLWindowStaticTargets.cmake") + if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Dd][Ee][Bb][Uu][Gg])$") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLWindowStaticTargets-debug.cmake") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLNetworkStaticTargets.cmake") + file(DIFFERENT _cmake_export_file_changed FILES + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLNetworkStaticTargets.cmake" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLNetworkStaticTargets.cmake") + if(_cmake_export_file_changed) + file(GLOB _cmake_old_config_files "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLNetworkStaticTargets-*.cmake") + if(_cmake_old_config_files) + string(REPLACE ";" ", " _cmake_old_config_files_text "${_cmake_old_config_files}") + message(STATUS "Old export file \"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLNetworkStaticTargets.cmake\" will be replaced. Removing files [${_cmake_old_config_files_text}].") + unset(_cmake_old_config_files_text) + file(REMOVE ${_cmake_old_config_files}) + endif() + unset(_cmake_old_config_files) + endif() + unset(_cmake_export_file_changed) + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLNetworkStaticTargets.cmake") + if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Dd][Ee][Bb][Uu][Gg])$") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLNetworkStaticTargets-debug.cmake") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLGraphicsStaticTargets.cmake") + file(DIFFERENT _cmake_export_file_changed FILES + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLGraphicsStaticTargets.cmake" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLGraphicsStaticTargets.cmake") + if(_cmake_export_file_changed) + file(GLOB _cmake_old_config_files "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLGraphicsStaticTargets-*.cmake") + if(_cmake_old_config_files) + string(REPLACE ";" ", " _cmake_old_config_files_text "${_cmake_old_config_files}") + message(STATUS "Old export file \"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLGraphicsStaticTargets.cmake\" will be replaced. Removing files [${_cmake_old_config_files_text}].") + unset(_cmake_old_config_files_text) + file(REMOVE ${_cmake_old_config_files}) + endif() + unset(_cmake_old_config_files) + endif() + unset(_cmake_export_file_changed) + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLGraphicsStaticTargets.cmake") + if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Dd][Ee][Bb][Uu][Gg])$") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLGraphicsStaticTargets-debug.cmake") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLAudioStaticTargets.cmake") + file(DIFFERENT _cmake_export_file_changed FILES + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLAudioStaticTargets.cmake" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLAudioStaticTargets.cmake") + if(_cmake_export_file_changed) + file(GLOB _cmake_old_config_files "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLAudioStaticTargets-*.cmake") + if(_cmake_old_config_files) + string(REPLACE ";" ", " _cmake_old_config_files_text "${_cmake_old_config_files}") + message(STATUS "Old export file \"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML/SFMLAudioStaticTargets.cmake\" will be replaced. Removing files [${_cmake_old_config_files_text}].") + unset(_cmake_old_config_files_text) + file(REMOVE ${_cmake_old_config_files}) + endif() + unset(_cmake_old_config_files) + endif() + unset(_cmake_export_file_changed) + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLAudioStaticTargets.cmake") + if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Dd][Ee][Bb][Uu][Gg])$") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/CMakeFiles/Export/3937c6824958577f216dad0a66bc6149/SFMLAudioStaticTargets-debug.cmake") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "devel" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML" TYPE FILE FILES + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/SFMLConfig.cmake" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/SFMLConfigVersion.cmake" + ) +endif() + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libfreetyped.a b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libfreetyped.a new file mode 100644 index 00000000..6d20f0b6 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libfreetyped.a differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libsfml-graphics-s-d.a b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libsfml-graphics-s-d.a new file mode 100644 index 00000000..5b54a5f9 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libsfml-graphics-s-d.a differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libsfml-system-s-d.a b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libsfml-system-s-d.a new file mode 100644 index 00000000..a930ca2f Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libsfml-system-s-d.a differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libsfml-window-s-d.a b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libsfml-window-s-d.a new file mode 100644 index 00000000..5160b078 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libsfml-window-s-d.a differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Audio/SFMLAudioDependencies.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Audio/SFMLAudioDependencies.cmake new file mode 100644 index 00000000..a76eb375 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Audio/SFMLAudioDependencies.cmake @@ -0,0 +1,41 @@ +list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}) + +include(CMakeFindDependencyMacro) + +# detect the OS +if(${CMAKE_SYSTEM_NAME} MATCHES "Windows") + set(FIND_SFML_OS_WINDOWS 1) +elseif(${CMAKE_SYSTEM_NAME} MATCHES "Linux") + set(FIND_SFML_OS_LINUX 1) + + if() + set(FIND_SFML_USE_DRM 1) + endif() +elseif(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD") + set(FIND_SFML_OS_FREEBSD 1) +elseif(${CMAKE_SYSTEM_NAME} MATCHES "Android") + set(FIND_SFML_OS_ANDROID 1) +elseif(${CMAKE_SYSTEM_NAME} MATCHES "iOS") + set(FIND_SFML_OS_IOS 1) +elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") + set(FIND_SFML_OS_MACOS 1) +endif() + +# When installing, save whether SFML was built using system dependencies. +set(SFML_BUILT_USING_SYSTEM_DEPS OFF) + +# start with an empty list +set(FIND_SFML_DEPENDENCIES_NOTFOUND) + +if(SFML_BUILT_USING_SYSTEM_DEPS) + find_dependency(Vorbis) + find_dependency(FLAC) +else() + find_dependency(Vorbis CONFIG PATHS "${CMAKE_CURRENT_LIST_DIR}/../../../") + find_dependency(FLAC CONFIG PATHS "${CMAKE_CURRENT_LIST_DIR}/../../../") +endif() + +if(FIND_SFML_DEPENDENCIES_NOTFOUND) + set(FIND_SFML_ERROR "SFML found but some of its dependencies are missing (${FIND_SFML_DEPENDENCIES_NOTFOUND})") + set(SFML_FOUND OFF) +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Audio/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Audio/cmake_install.cmake new file mode 100644 index 00000000..87cf3552 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Audio/cmake_install.cmake @@ -0,0 +1,62 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/MiniHW2") +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 "G:/CLion 2024.3/bin/mingw/bin/objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/cmake_install.cmake") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "devel" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libsfml-audio-s-d.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "devel" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Audio/SFMLAudioDependencies.cmake") +endif() + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/BlendMode.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/BlendMode.cpp.obj new file mode 100644 index 00000000..aaf37897 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/BlendMode.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/CircleShape.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/CircleShape.cpp.obj new file mode 100644 index 00000000..0f5288cc Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/CircleShape.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/ConvexShape.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/ConvexShape.cpp.obj new file mode 100644 index 00000000..4b912d37 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/ConvexShape.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Font.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Font.cpp.obj new file mode 100644 index 00000000..c3f37255 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Font.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/GLCheck.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/GLCheck.cpp.obj new file mode 100644 index 00000000..e045ed83 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/GLCheck.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/GLExtensions.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/GLExtensions.cpp.obj new file mode 100644 index 00000000..f6eb8278 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/GLExtensions.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Glsl.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Glsl.cpp.obj new file mode 100644 index 00000000..08fdaead Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Glsl.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Image.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Image.cpp.obj new file mode 100644 index 00000000..c98aae8a Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Image.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RectangleShape.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RectangleShape.cpp.obj new file mode 100644 index 00000000..91af1c9a Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RectangleShape.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderStates.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderStates.cpp.obj new file mode 100644 index 00000000..359c3993 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderStates.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTarget.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTarget.cpp.obj new file mode 100644 index 00000000..c682a953 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTarget.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTexture.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTexture.cpp.obj new file mode 100644 index 00000000..7f133697 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTexture.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTextureImplDefault.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTextureImplDefault.cpp.obj new file mode 100644 index 00000000..ebc29267 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTextureImplDefault.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTextureImplFBO.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTextureImplFBO.cpp.obj new file mode 100644 index 00000000..2eb33d61 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTextureImplFBO.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderWindow.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderWindow.cpp.obj new file mode 100644 index 00000000..0d1110fc Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderWindow.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Shader.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Shader.cpp.obj new file mode 100644 index 00000000..74fc344b Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Shader.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Shape.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Shape.cpp.obj new file mode 100644 index 00000000..669ab214 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Shape.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Sprite.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Sprite.cpp.obj new file mode 100644 index 00000000..0a5c41b5 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Sprite.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/StencilMode.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/StencilMode.cpp.obj new file mode 100644 index 00000000..cfdbe53e Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/StencilMode.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Text.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Text.cpp.obj new file mode 100644 index 00000000..20a02801 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Text.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Texture.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Texture.cpp.obj new file mode 100644 index 00000000..7937706e Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Texture.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/TextureSaver.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/TextureSaver.cpp.obj new file mode 100644 index 00000000..f2c5263e Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/TextureSaver.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Transform.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Transform.cpp.obj new file mode 100644 index 00000000..43db4cf7 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Transform.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Transformable.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Transformable.cpp.obj new file mode 100644 index 00000000..26764c39 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Transformable.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/VertexArray.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/VertexArray.cpp.obj new file mode 100644 index 00000000..9969a635 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/VertexArray.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/VertexBuffer.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/VertexBuffer.cpp.obj new file mode 100644 index 00000000..b1b31234 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/VertexBuffer.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/View.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/View.cpp.obj new file mode 100644 index 00000000..6fa3ca38 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/View.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/SFMLGraphicsDependencies.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/SFMLGraphicsDependencies.cmake new file mode 100644 index 00000000..a50bb015 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/SFMLGraphicsDependencies.cmake @@ -0,0 +1,20 @@ +list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}) + +include(CMakeFindDependencyMacro) + +# When installing, save whether SFML was built using system dependencies. +set(SFML_BUILT_USING_SYSTEM_DEPS OFF) + +# start with an empty list +set(FIND_SFML_DEPENDENCIES_NOTFOUND) + +if(SFML_BUILT_USING_SYSTEM_DEPS) + find_dependency(Freetype) +else() + find_dependency(Freetype CONFIG PATHS "${CMAKE_CURRENT_LIST_DIR}/../../../") +endif() + +if(FIND_SFML_DEPENDENCIES_NOTFOUND) + set(FIND_SFML_ERROR "SFML found but some of its dependencies are missing (${FIND_SFML_DEPENDENCIES_NOTFOUND})") + set(SFML_FOUND OFF) +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/cmake_install.cmake new file mode 100644 index 00000000..7adae2ad --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/cmake_install.cmake @@ -0,0 +1,52 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/MiniHW2") +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 "G:/CLion 2024.3/bin/mingw/bin/objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "devel" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libsfml-graphics-s-d.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "devel" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/SFMLGraphicsDependencies.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/cmake_install.cmake") +endif() + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Main/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Main/cmake_install.cmake new file mode 100644 index 00000000..d9e43810 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Main/cmake_install.cmake @@ -0,0 +1,43 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Main + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/MiniHW2") +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 "G:/CLion 2024.3/bin/mingw/bin/objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "devel" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libsfml-main-s-d.a") +endif() + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Network/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Network/cmake_install.cmake new file mode 100644 index 00000000..a7eb2f6d --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Network/cmake_install.cmake @@ -0,0 +1,43 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Network + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/MiniHW2") +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 "G:/CLion 2024.3/bin/mingw/bin/objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "devel" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libsfml-network-s-d.a") +endif() + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Clock.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Clock.cpp.obj new file mode 100644 index 00000000..646d5e4e Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Clock.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Err.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Err.cpp.obj new file mode 100644 index 00000000..852e4827 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Err.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/FileInputStream.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/FileInputStream.cpp.obj new file mode 100644 index 00000000..e5d7b4cb Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/FileInputStream.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/MemoryInputStream.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/MemoryInputStream.cpp.obj new file mode 100644 index 00000000..26a752b4 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/MemoryInputStream.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Sleep.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Sleep.cpp.obj new file mode 100644 index 00000000..384c7750 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Sleep.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/String.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/String.cpp.obj new file mode 100644 index 00000000..998ee34f Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/String.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Utils.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Utils.cpp.obj new file mode 100644 index 00000000..3031f7e3 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Utils.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Vector2.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Vector2.cpp.obj new file mode 100644 index 00000000..d977e691 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Vector2.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Vector3.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Vector3.cpp.obj new file mode 100644 index 00000000..75fb8138 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Vector3.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Win32/SleepImpl.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Win32/SleepImpl.cpp.obj new file mode 100644 index 00000000..cfd2acee Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Win32/SleepImpl.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/SFMLSystemDependencies.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/SFMLSystemDependencies.cmake new file mode 100644 index 00000000..1a02eba8 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/SFMLSystemDependencies.cmake @@ -0,0 +1,13 @@ +list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}) + +include(CMakeFindDependencyMacro) + +# start with an empty list +set(FIND_SFML_DEPENDENCIES_NOTFOUND) + +find_dependency(Threads) + +if(FIND_SFML_DEPENDENCIES_NOTFOUND) + set(FIND_SFML_ERROR "SFML found but some of its dependencies are missing (${FIND_SFML_DEPENDENCIES_NOTFOUND})") + set(SFML_FOUND OFF) +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/cmake_install.cmake new file mode 100644 index 00000000..34a5421f --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/cmake_install.cmake @@ -0,0 +1,47 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/System + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/MiniHW2") +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 "G:/CLion 2024.3/bin/mingw/bin/objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "devel" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libsfml-system-s-d.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "devel" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/SFMLSystemDependencies.cmake") +endif() + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Clipboard.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Clipboard.cpp.obj new file mode 100644 index 00000000..f89c3a86 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Clipboard.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Context.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Context.cpp.obj new file mode 100644 index 00000000..c57976c3 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Context.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Cursor.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Cursor.cpp.obj new file mode 100644 index 00000000..832f457e Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Cursor.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/GlContext.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/GlContext.cpp.obj new file mode 100644 index 00000000..76e79840 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/GlContext.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/GlResource.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/GlResource.cpp.obj new file mode 100644 index 00000000..725e29e2 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/GlResource.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Joystick.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Joystick.cpp.obj new file mode 100644 index 00000000..e316d5f8 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Joystick.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/JoystickManager.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/JoystickManager.cpp.obj new file mode 100644 index 00000000..283e0e30 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/JoystickManager.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Keyboard.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Keyboard.cpp.obj new file mode 100644 index 00000000..ca5a4845 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Keyboard.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Mouse.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Mouse.cpp.obj new file mode 100644 index 00000000..b8e09a51 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Mouse.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Sensor.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Sensor.cpp.obj new file mode 100644 index 00000000..2938e618 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Sensor.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/SensorManager.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/SensorManager.cpp.obj new file mode 100644 index 00000000..a9ab36ff Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/SensorManager.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Touch.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Touch.cpp.obj new file mode 100644 index 00000000..93a1e74e Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Touch.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/VideoMode.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/VideoMode.cpp.obj new file mode 100644 index 00000000..5bda42f7 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/VideoMode.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Vulkan.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Vulkan.cpp.obj new file mode 100644 index 00000000..156a47f8 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Vulkan.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/ClipboardImpl.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/ClipboardImpl.cpp.obj new file mode 100644 index 00000000..7106e321 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/ClipboardImpl.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/CursorImpl.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/CursorImpl.cpp.obj new file mode 100644 index 00000000..1512ce37 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/CursorImpl.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/InputImpl.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/InputImpl.cpp.obj new file mode 100644 index 00000000..a0d73237 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/InputImpl.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/JoystickImpl.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/JoystickImpl.cpp.obj new file mode 100644 index 00000000..401b2c7b Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/JoystickImpl.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/SensorImpl.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/SensorImpl.cpp.obj new file mode 100644 index 00000000..a48edece Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/SensorImpl.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/VideoModeImpl.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/VideoModeImpl.cpp.obj new file mode 100644 index 00000000..ecf07cbf Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/VideoModeImpl.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/VulkanImplWin32.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/VulkanImplWin32.cpp.obj new file mode 100644 index 00000000..eb55538d Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/VulkanImplWin32.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/WglContext.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/WglContext.cpp.obj new file mode 100644 index 00000000..966b9c25 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/WglContext.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/WindowImplWin32.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/WindowImplWin32.cpp.obj new file mode 100644 index 00000000..049581de Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/WindowImplWin32.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Window.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Window.cpp.obj new file mode 100644 index 00000000..cf0fb7d6 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Window.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/WindowBase.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/WindowBase.cpp.obj new file mode 100644 index 00000000..96862bb4 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/WindowBase.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/WindowImpl.cpp.obj b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/WindowImpl.cpp.obj new file mode 100644 index 00000000..d449c4f7 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/WindowImpl.cpp.obj differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/SFMLWindowDependencies.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/SFMLWindowDependencies.cmake new file mode 100644 index 00000000..fd7bfcaf --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/SFMLWindowDependencies.cmake @@ -0,0 +1,48 @@ +list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}) + +include(CMakeFindDependencyMacro) + +# detect the OS +if(${CMAKE_SYSTEM_NAME} MATCHES "Windows") + set(FIND_SFML_OS_WINDOWS 1) +elseif(${CMAKE_SYSTEM_NAME} MATCHES "Linux") + set(FIND_SFML_OS_LINUX 1) + + if() + set(FIND_SFML_USE_DRM 1) + endif() +elseif(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD") + set(FIND_SFML_OS_FREEBSD 1) +elseif(${CMAKE_SYSTEM_NAME} MATCHES "Android") + set(FIND_SFML_OS_ANDROID 1) +elseif(${CMAKE_SYSTEM_NAME} MATCHES "iOS") + set(FIND_SFML_OS_IOS 1) +elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") + set(FIND_SFML_OS_MACOS 1) +endif() + +# start with an empty list +set(FIND_SFML_DEPENDENCIES_NOTFOUND) + +if(FIND_SFML_USE_DRM) + find_dependency(DRM) + find_dependency(GBM) +elseif(FIND_SFML_OS_LINUX OR FIND_SFML_OS_FREEBSD) + find_dependency(X11 REQUIRED COMPONENTS Xrandr Xcursor) +endif() + +if(FIND_SFML_OS_LINUX) + find_dependency(UDev) +endif() + +if(NOT FIND_SFML_OS_ANDROID AND NOT FIND_SFML_OS_IOS) + if(NOT OpenGL_GL_PREFERENCE) + set(OpenGL_GL_PREFERENCE "LEGACY") + endif() + find_dependency(OpenGL COMPONENTS OpenGL) +endif() + +if(FIND_SFML_DEPENDENCIES_NOTFOUND) + set(FIND_SFML_ERROR "SFML found but some of its dependencies are missing (${FIND_SFML_DEPENDENCIES_NOTFOUND})") + set(SFML_FOUND OFF) +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/cmake_install.cmake new file mode 100644 index 00000000..49c4a053 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/cmake_install.cmake @@ -0,0 +1,47 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/MiniHW2") +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 "G:/CLion 2024.3/bin/mingw/bin/objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "devel" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libsfml-window-s-d.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "devel" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/SFML" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/SFMLWindowDependencies.cmake") +endif() + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/cmake_install.cmake new file mode 100644 index 00000000..116ed954 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/cmake_install.cmake @@ -0,0 +1,69 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/MiniHW2") +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 "G:/CLion 2024.3/bin/mingw/bin/objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Main/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Network/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Audio/cmake_install.cmake") +endif() + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-src b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-src new file mode 160000 index 00000000..7f1162df --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/sfml-src @@ -0,0 +1 @@ +Subproject commit 7f1162dfea4969bc17417563ac55d93b72e84c1e diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/VorbisConfig.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/VorbisConfig.cmake new file mode 100644 index 00000000..de77ec28 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/VorbisConfig.cmake @@ -0,0 +1,43 @@ + +####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### +####### Any changes to this file will be overwritten by the next CMake run #### +####### The input file was VorbisConfig.cmake.in ######## + +get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) + +macro(set_and_check _var _file) + set(${_var} "${_file}") + if(NOT EXISTS "${_file}") + message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") + endif() +endmacro() + +macro(check_required_components _NAME) + foreach(comp ${${_NAME}_FIND_COMPONENTS}) + if(NOT ${_NAME}_${comp}_FOUND) + if(${_NAME}_FIND_REQUIRED_${comp}) + set(${_NAME}_FOUND FALSE) + endif() + endif() + endforeach() +endmacro() + +#################################################################################### + +include(CMakeFindDependencyMacro) +find_dependency(Ogg REQUIRED) + +include(${CMAKE_CURRENT_LIST_DIR}/VorbisTargets.cmake) + +set(Vorbis_Vorbis_FOUND 1) +set(Vorbis_Enc_FOUND 0) +set(Vorbis_File_FOUND 0) + +if(TARGET Vorbis::vorbisenc) + set(Vorbis_Enc_FOUND TRUE) +endif() +if(TARGET Vorbis::vorbisfile) + set(Vorbis_File_FOUND TRUE) +endif() + +check_required_components(Vorbis Enc File) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/VorbisConfigVersion.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/VorbisConfigVersion.cmake new file mode 100644 index 00000000..419ed551 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/VorbisConfigVersion.cmake @@ -0,0 +1,65 @@ +# This is a basic version file for the Config-mode of find_package(). +# It is used by write_basic_package_version_file() as input file for configure_file() +# to create a version-file which can be installed along a config.cmake file. +# +# The created file sets PACKAGE_VERSION_EXACT if the current version string and +# the requested version string are exactly the same and it sets +# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version, +# but only if the requested major version is the same as the current one. +# The variable CVF_VERSION must be set before calling configure_file(). + + +set(PACKAGE_VERSION "1.3.7") + +if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) + set(PACKAGE_VERSION_COMPATIBLE FALSE) +else() + + if("1.3.7" MATCHES "^([0-9]+)\\.") + set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}") + if(NOT CVF_VERSION_MAJOR VERSION_EQUAL 0) + string(REGEX REPLACE "^0+" "" CVF_VERSION_MAJOR "${CVF_VERSION_MAJOR}") + endif() + else() + set(CVF_VERSION_MAJOR "1.3.7") + endif() + + if(PACKAGE_FIND_VERSION_RANGE) + # both endpoints of the range must have the expected major version + math (EXPR CVF_VERSION_MAJOR_NEXT "${CVF_VERSION_MAJOR} + 1") + if (NOT PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR + OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX_MAJOR STREQUAL CVF_VERSION_MAJOR) + OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX VERSION_LESS_EQUAL CVF_VERSION_MAJOR_NEXT))) + set(PACKAGE_VERSION_COMPATIBLE FALSE) + elseif(PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR + AND ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS_EQUAL PACKAGE_FIND_VERSION_MAX) + OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MAX))) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + else() + set(PACKAGE_VERSION_COMPATIBLE FALSE) + endif() + else() + if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + else() + set(PACKAGE_VERSION_COMPATIBLE FALSE) + endif() + + if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) + set(PACKAGE_VERSION_EXACT TRUE) + endif() + endif() +endif() + + +# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: +if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "") + return() +endif() + +# check that the installed version has the same 32/64bit-ness as the one which is currently searching: +if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") + math(EXPR installedBits "8 * 8") + set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") + set(PACKAGE_VERSION_UNSUITABLE TRUE) +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/cmake_install.cmake new file mode 100644 index 00000000..9d6d13b8 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/MiniHW2") +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 "G:/CLion 2024.3/bin/mingw/bin/objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/cmake_install.cmake") + +endif() + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/CMakeFiles/Export/cc38caa321284793c52f43683a3b76fc/VorbisTargets-debug.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/CMakeFiles/Export/cc38caa321284793c52f43683a3b76fc/VorbisTargets-debug.cmake new file mode 100644 index 00000000..797e2fa0 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/CMakeFiles/Export/cc38caa321284793c52f43683a3b76fc/VorbisTargets-debug.cmake @@ -0,0 +1,39 @@ +#---------------------------------------------------------------- +# Generated CMake target import file for configuration "Debug". +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Import target "Vorbis::vorbis" for configuration "Debug" +set_property(TARGET Vorbis::vorbis APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) +set_target_properties(Vorbis::vorbis PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "C" + IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/libvorbisd.a" + ) + +list(APPEND _cmake_import_check_targets Vorbis::vorbis ) +list(APPEND _cmake_import_check_files_for_Vorbis::vorbis "${_IMPORT_PREFIX}/lib/libvorbisd.a" ) + +# Import target "Vorbis::vorbisenc" for configuration "Debug" +set_property(TARGET Vorbis::vorbisenc APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) +set_target_properties(Vorbis::vorbisenc PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "C" + IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/libvorbisencd.a" + ) + +list(APPEND _cmake_import_check_targets Vorbis::vorbisenc ) +list(APPEND _cmake_import_check_files_for_Vorbis::vorbisenc "${_IMPORT_PREFIX}/lib/libvorbisencd.a" ) + +# Import target "Vorbis::vorbisfile" for configuration "Debug" +set_property(TARGET Vorbis::vorbisfile APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) +set_target_properties(Vorbis::vorbisfile PROPERTIES + IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "C" + IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/libvorbisfiled.a" + ) + +list(APPEND _cmake_import_check_targets Vorbis::vorbisfile ) +list(APPEND _cmake_import_check_files_for_Vorbis::vorbisfile "${_IMPORT_PREFIX}/lib/libvorbisfiled.a" ) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/CMakeFiles/Export/cc38caa321284793c52f43683a3b76fc/VorbisTargets.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/CMakeFiles/Export/cc38caa321284793c52f43683a3b76fc/VorbisTargets.cmake new file mode 100644 index 00000000..f90c87b3 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/CMakeFiles/Export/cc38caa321284793c52f43683a3b76fc/VorbisTargets.cmake @@ -0,0 +1,139 @@ +# Generated by CMake + +if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) + message(FATAL_ERROR "CMake >= 2.8.0 required") +endif() +if(CMAKE_VERSION VERSION_LESS "2.8.12") + message(FATAL_ERROR "CMake >= 2.8.12 required") +endif() +cmake_policy(PUSH) +cmake_policy(VERSION 2.8.12...3.28) +#---------------------------------------------------------------- +# Generated CMake target import file. +#---------------------------------------------------------------- + +# Commands may need to know the format version. +set(CMAKE_IMPORT_FILE_VERSION 1) + +# Protect against multiple inclusion, which would fail when already imported targets are added once more. +set(_cmake_targets_defined "") +set(_cmake_targets_not_defined "") +set(_cmake_expected_targets "") +foreach(_cmake_expected_target IN ITEMS Vorbis::vorbis Vorbis::vorbisenc Vorbis::vorbisfile) + list(APPEND _cmake_expected_targets "${_cmake_expected_target}") + if(TARGET "${_cmake_expected_target}") + list(APPEND _cmake_targets_defined "${_cmake_expected_target}") + else() + list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") + endif() +endforeach() +unset(_cmake_expected_target) +if(_cmake_targets_defined STREQUAL _cmake_expected_targets) + unset(_cmake_targets_defined) + unset(_cmake_targets_not_defined) + unset(_cmake_expected_targets) + unset(CMAKE_IMPORT_FILE_VERSION) + cmake_policy(POP) + return() +endif() +if(NOT _cmake_targets_defined STREQUAL "") + string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") + string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") + message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") +endif() +unset(_cmake_targets_defined) +unset(_cmake_targets_not_defined) +unset(_cmake_expected_targets) + + +# Compute the installation prefix relative to this file. +get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) +if(_IMPORT_PREFIX STREQUAL "/") + set(_IMPORT_PREFIX "") +endif() + +# Create imported target Vorbis::vorbis +add_library(Vorbis::vorbis STATIC IMPORTED) + +set_target_properties(Vorbis::vorbis PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_LINK_LIBRARIES "Ogg::ogg;\$:m>>" +) + +# Create imported target Vorbis::vorbisenc +add_library(Vorbis::vorbisenc STATIC IMPORTED) + +set_target_properties(Vorbis::vorbisenc PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_LINK_LIBRARIES "Vorbis::vorbis" +) + +# Create imported target Vorbis::vorbisfile +add_library(Vorbis::vorbisfile STATIC IMPORTED) + +set_target_properties(Vorbis::vorbisfile PROPERTIES + INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" + INTERFACE_LINK_LIBRARIES "Vorbis::vorbis" +) + +# Load information for each installed configuration. +file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/VorbisTargets-*.cmake") +foreach(_cmake_config_file IN LISTS _cmake_config_files) + include("${_cmake_config_file}") +endforeach() +unset(_cmake_config_file) +unset(_cmake_config_files) + +# Cleanup temporary variables. +set(_IMPORT_PREFIX) + +# Loop over all imported files and verify that they actually exist +foreach(_cmake_target IN LISTS _cmake_import_check_targets) + if(CMAKE_VERSION VERSION_LESS "3.28" + OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target} + OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}") + foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") + if(NOT EXISTS "${_cmake_file}") + message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file + \"${_cmake_file}\" +but this file does not exist. Possible reasons include: +* The file was deleted, renamed, or moved to another location. +* An install or uninstall procedure did not complete successfully. +* The installation package was faulty and contained + \"${CMAKE_CURRENT_LIST_FILE}\" +but not all the files it references. +") + endif() + endforeach() + endif() + unset(_cmake_file) + unset("_cmake_import_check_files_for_${_cmake_target}") +endforeach() +unset(_cmake_target) +unset(_cmake_import_check_targets) + +# Make sure the targets which have been exported in some other +# export set exist. +unset(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) +foreach(_target "Ogg::ogg" ) + if(NOT TARGET "${_target}" ) + set(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets "${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets} ${_target}") + endif() +endforeach() + +if(DEFINED ${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) + if(CMAKE_FIND_PACKAGE_NAME) + set( ${CMAKE_FIND_PACKAGE_NAME}_FOUND FALSE) + set( ${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE "The following imported targets are referenced, but are missing: ${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets}") + else() + message(FATAL_ERROR "The following imported targets are referenced, but are missing: ${${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets}") + endif() +endif() +unset(${CMAKE_FIND_PACKAGE_NAME}_NOT_FOUND_MESSAGE_targets) + +# Commands beyond this point should not need to know the version. +set(CMAKE_IMPORT_FILE_VERSION) +cmake_policy(POP) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/cmake_install.cmake new file mode 100644 index 00000000..455c981c --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/cmake_install.cmake @@ -0,0 +1,81 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/MiniHW2") +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 "G:/CLion 2024.3/bin/mingw/bin/objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libvorbisd.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libvorbisencd.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/lib/libvorbisfiled.a") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/Vorbis/VorbisTargets.cmake") + file(DIFFERENT _cmake_export_file_changed FILES + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/Vorbis/VorbisTargets.cmake" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/CMakeFiles/Export/cc38caa321284793c52f43683a3b76fc/VorbisTargets.cmake") + if(_cmake_export_file_changed) + file(GLOB _cmake_old_config_files "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/Vorbis/VorbisTargets-*.cmake") + if(_cmake_old_config_files) + string(REPLACE ";" ", " _cmake_old_config_files_text "${_cmake_old_config_files}") + message(STATUS "Old export file \"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/Vorbis/VorbisTargets.cmake\" will be replaced. Removing files [${_cmake_old_config_files_text}].") + unset(_cmake_old_config_files_text) + file(REMOVE ${_cmake_old_config_files}) + endif() + unset(_cmake_old_config_files) + endif() + unset(_cmake_export_file_changed) + endif() + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/Vorbis" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/CMakeFiles/Export/cc38caa321284793c52f43683a3b76fc/VorbisTargets.cmake") + if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Dd][Ee][Bb][Uu][Gg])$") + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/Vorbis" TYPE FILE FILES "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib/CMakeFiles/Export/cc38caa321284793c52f43683a3b76fc/VorbisTargets-debug.cmake") + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/Vorbis" TYPE FILE FILES + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/VorbisConfig.cmake" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/VorbisConfigVersion.cmake" + ) +endif() + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/vorbis.pc b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/vorbis.pc new file mode 100644 index 00000000..a2c90e3c --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/vorbis.pc @@ -0,0 +1,15 @@ +# libvorbis pkg-config source file + +prefix=C:/Program Files (x86)/MiniHW2 +exec_prefix=C:/Program Files (x86)/MiniHW2/bin +libdir=C:/Program Files (x86)/MiniHW2/lib +includedir=C:/Program Files (x86)/MiniHW2/include + +Name: vorbis +Description: vorbis is the primary Ogg Vorbis library +Version: 1.3.7 +Requires.private: ogg +Conflicts: +Libs: -L${libdir} -lvorbis +Libs.private: +Cflags: -I${includedir} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/vorbisenc.pc b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/vorbisenc.pc new file mode 100644 index 00000000..5ee49ed2 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/vorbisenc.pc @@ -0,0 +1,14 @@ +# libvorbisenc pkg-config source file + +prefix=C:/Program Files (x86)/MiniHW2 +exec_prefix=C:/Program Files (x86)/MiniHW2/bin +libdir=C:/Program Files (x86)/MiniHW2/lib +includedir=C:/Program Files (x86)/MiniHW2/include + +Name: vorbisenc +Description: vorbisenc is a library that provides a convenient API for setting up an encoding environment using libvorbis +Version: 1.3.7 +Requires.private: vorbis +Conflicts: +Libs: -L${libdir} -lvorbisenc +Cflags: -I${includedir} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/vorbisfile.pc b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/vorbisfile.pc new file mode 100644 index 00000000..fb89e07c --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-build/vorbisfile.pc @@ -0,0 +1,14 @@ +# libvorbisfile pkg-config source file + +prefix=C:/Program Files (x86)/MiniHW2 +exec_prefix=C:/Program Files (x86)/MiniHW2/bin +libdir=C:/Program Files (x86)/MiniHW2/lib +includedir=C:/Program Files (x86)/MiniHW2/include + +Name: vorbisfile +Description: vorbisfile is a library that provides a convenient high-level API for decoding and basic manipulation of all Vorbis I audio streams +Version: 1.3.7 +Requires.private: vorbis +Conflicts: +Libs: -L${libdir} -lvorbisfile +Cflags: -I${includedir} diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-src b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-src new file mode 160000 index 00000000..0657aee6 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-src @@ -0,0 +1 @@ +Subproject commit 0657aee69dec8508a0011f47f3b69d7538e9d262 diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/.ninja_log b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/.ninja_log new file mode 100644 index 00000000..3b06dce4 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/.ninja_log @@ -0,0 +1,37 @@ +# ninja log v6 +339 404 7658494857327005 vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-install 4b6c381316429dda +1 66 7658494088970417 vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-mkdir cac65fad85f7ac3e +469 554 7658494858835312 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-done 4ff64d0cb5fa3032 +66 3826 7658494126564815 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-download 60eae0caf832893a +3 156 7658494853370605 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-update 457d6133c7884d39 +1 66 7658494088970417 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-mkdir cac65fad85f7ac3e +66 3826 7658494126564815 vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-download 60eae0caf832893a +3 156 7658494853370605 vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-update 457d6133c7884d39 +278 339 7658494856683684 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-build 8e6183ef0907bfeb +156 218 7658494855487989 vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-patch 33eb4a7f6acd0c9b +218 278 7658494856084847 vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-configure df5437a447b7396f +156 218 7658494855487989 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-patch 33eb4a7f6acd0c9b +218 278 7658494856084847 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-configure df5437a447b7396f +278 339 7658494856683684 vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-build 8e6183ef0907bfeb +404 469 7658494857986161 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-test ab2841ed3dadf2d5 +339 404 7658494857327005 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-install 4b6c381316429dda +404 469 7658494857986161 vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-test ab2841ed3dadf2d5 +469 554 7658494858835312 CMakeFiles/vorbis-populate-complete 4ff64d0cb5fa3032 +469 554 7658494858835312 vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-done 4ff64d0cb5fa3032 +469 554 7658494858835312 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/vorbis-populate-complete 4ff64d0cb5fa3032 +3 156 7658495644648792 vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-update 457d6133c7884d39 +3 156 7658495644648792 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-update 457d6133c7884d39 +157 221 7658495646774112 vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-patch 33eb4a7f6acd0c9b +157 221 7658495646774112 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-patch 33eb4a7f6acd0c9b +221 281 7658495647390512 vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-configure df5437a447b7396f +221 281 7658495647390512 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-configure df5437a447b7396f +281 341 7658495647989788 vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-build 8e6183ef0907bfeb +281 341 7658495647989788 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-build 8e6183ef0907bfeb +341 402 7658495648593177 vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-install 4b6c381316429dda +341 402 7658495648593177 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-install 4b6c381316429dda +402 463 7658495649199512 vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-test ab2841ed3dadf2d5 +402 463 7658495649199512 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-test ab2841ed3dadf2d5 +463 544 7658495650013872 CMakeFiles/vorbis-populate-complete 4ff64d0cb5fa3032 +463 544 7658495650013872 vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-done 4ff64d0cb5fa3032 +463 544 7658495650013872 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/vorbis-populate-complete 4ff64d0cb5fa3032 +463 544 7658495650013872 C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-done 4ff64d0cb5fa3032 diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeCache.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeCache.txt new file mode 100644 index 00000000..60ea4aa5 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeCache.txt @@ -0,0 +1,109 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild +# It was generated by CMake: G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Enable colored diagnostics throughout. +CMAKE_COLOR_DIAGNOSTICS:BOOL=ON + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/pkgRedirects + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/vorbis-populate + +//make program +CMAKE_MAKE_PROGRAM:FILEPATH=G:/CLion 2024.3/bin/ninja/win/x64/ninja.exe + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=vorbis-populate + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +vorbis-populate_BINARY_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild + +//Value Computed by CMake +vorbis-populate_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +vorbis-populate_SOURCE_DIR:STATIC=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild + + +######################## +# INTERNAL cache entries +######################## + +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=30 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=5 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=G:/CLion 2024.3/bin/cmake/win/x64/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=G:/CLion 2024.3/bin/cmake/win/x64/bin/ctest.exe +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/3.30.5/CMakeSystem.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/3.30.5/CMakeSystem.cmake new file mode 100644 index 00000000..000cf698 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/3.30.5/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.26100") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.26100") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + + + +set(CMAKE_SYSTEM "Windows-10.0.26100") +set(CMAKE_SYSTEM_NAME "Windows") +set(CMAKE_SYSTEM_VERSION "10.0.26100") +set(CMAKE_SYSTEM_PROCESSOR "AMD64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/CMakeConfigureLog.yaml b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 00000000..3c5743d6 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,11 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "G:/CLion 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:205 (message)" + - "CMakeLists.txt:16 (project)" + message: | + The system is: Windows - 10.0.26100 - AMD64 +... diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/TargetDirectories.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/TargetDirectories.txt new file mode 100644 index 00000000..a68483a0 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/vorbis-populate.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/edit_cache.dir +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/rebuild_cache.dir diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/cmake.check_cache b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/cmake.check_cache new file mode 100644 index 00000000..3dccd731 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/rules.ninja b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/rules.ninja new file mode 100644 index 00000000..fe750bcd --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/rules.ninja @@ -0,0 +1,45 @@ +# 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: vorbis-populate +# Configurations: +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-subbuild -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-subbuild + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = "G:\CLion 2024.3\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 = "G:\CLion 2024.3\bin\ninja\win\x64\ninja.exe" -t targets + description = All primary targets available: + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/vorbis-populate-complete b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/vorbis-populate-complete new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/vorbis-populate.dir/Labels.json b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/vorbis-populate.dir/Labels.json new file mode 100644 index 00000000..b348af47 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/vorbis-populate.dir/Labels.json @@ -0,0 +1,46 @@ +{ + "sources" : + [ + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/vorbis-populate" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/vorbis-populate.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/vorbis-populate-complete.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-build.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-configure.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-download.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-install.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-mkdir.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-patch.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-test.rule" + }, + { + "file" : "C:/Users/\u041f\u0430\u0448\u043e\u043a/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-update.rule" + } + ], + "target" : + { + "labels" : + [ + "vorbis-populate" + ], + "name" : "vorbis-populate" + } +} \ No newline at end of file diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/vorbis-populate.dir/Labels.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/vorbis-populate.dir/Labels.txt new file mode 100644 index 00000000..11ee103f --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/vorbis-populate.dir/Labels.txt @@ -0,0 +1,14 @@ +# Target labels + vorbis-populate +# Source files and their labels +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/vorbis-populate +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/vorbis-populate.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/vorbis-populate-complete.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-build.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-configure.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-download.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-install.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-mkdir.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-patch.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-test.rule +C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-update.rule diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeLists.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeLists.txt new file mode 100644 index 00000000..68dc9104 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeLists.txt @@ -0,0 +1,42 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.30.5) + +# Reject any attempt to use a toolchain file. We must not use one because +# we could be downloading it here. If the CMAKE_TOOLCHAIN_FILE environment +# variable is set, the cache variable will have been initialized from it. +unset(CMAKE_TOOLCHAIN_FILE CACHE) +unset(ENV{CMAKE_TOOLCHAIN_FILE}) + +# We name the project and the target for the ExternalProject_Add() call +# to something that will highlight to the user what we are working on if +# something goes wrong and an error message is produced. + +project(vorbis-populate NONE) + + +# Pass through things we've already detected in the main project to avoid +# paying the cost of redetecting them again in ExternalProject_Add() +set(GIT_EXECUTABLE [==[C:/Program Files/Git/cmd/git.exe]==]) +set(GIT_VERSION_STRING [==[2.49.0.windows.1]==]) +set_property(GLOBAL PROPERTY _CMAKE_FindGit_GIT_EXECUTABLE_VERSION + [==[C:/Program Files/Git/cmd/git.exe;2.49.0.windows.1]==] +) + + +include(ExternalProject) +ExternalProject_Add(vorbis-populate + "UPDATE_DISCONNECTED" "False" "GIT_REPOSITORY" "https://github.com/xiph/vorbis.git" "EXTERNALPROJECT_INTERNAL_ARGUMENT_SEPARATOR" "GIT_TAG" "v1.3.7" "GIT_SHALLOW" "ON" "PATCH_COMMAND" "G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe" "-DVORBIS_DIR=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" "-P" "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/tools/vorbis/PatchVorbis.cmake" + SOURCE_DIR "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + BINARY_DIR "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build" + CONFIGURE_COMMAND "" + BUILD_COMMAND "" + INSTALL_COMMAND "" + TEST_COMMAND "" + USES_TERMINAL_DOWNLOAD YES + USES_TERMINAL_UPDATE YES + USES_TERMINAL_PATCH YES +) + + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/build.ninja b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/build.ninja new file mode 100644 index 00000000..e4118862 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/build.ninja @@ -0,0 +1,201 @@ +# 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: vorbis-populate +# Configurations: +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles\rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = C$:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-subbuild\ + +############################################# +# Utility command for vorbis-populate + +build vorbis-populate: phony CMakeFiles\vorbis-populate CMakeFiles\vorbis-populate-complete vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-done vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-build vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-configure vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-download vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-install vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-mkdir vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-patch vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-test vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-update + + +############################################# +# Utility command for edit_cache + +build CMakeFiles\edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-subbuild && "G:\CLion 2024.3\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:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-subbuild && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-subbuild -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-subbuild" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles\rebuild_cache.util + + +############################################# +# Phony custom command for CMakeFiles\vorbis-populate + +build CMakeFiles\vorbis-populate | ${cmake_ninja_workdir}CMakeFiles\vorbis-populate: phony CMakeFiles\vorbis-populate-complete + + +############################################# +# Custom command for CMakeFiles\vorbis-populate-complete + +build CMakeFiles\vorbis-populate-complete vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-done | ${cmake_ninja_workdir}CMakeFiles\vorbis-populate-complete ${cmake_ninja_workdir}vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-done: CUSTOM_COMMAND vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-install vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-mkdir vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-download vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-update vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-patch vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-configure vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-build vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-install vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-test + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-subbuild && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E make_directory C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/CMakeFiles/vorbis-populate-complete && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-done" + DESC = Completed 'vorbis-populate' + restat = 1 + + +############################################# +# Custom command for vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-build + +build vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-build | ${cmake_ninja_workdir}vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-build: CUSTOM_COMMAND vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-configure + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo_append && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-build" + DESC = No build step for 'vorbis-populate' + restat = 1 + + +############################################# +# Custom command for vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-configure + +build vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-configure | ${cmake_ninja_workdir}vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-configure: CUSTOM_COMMAND vorbis-populate-prefix\tmp\vorbis-populate-cfgcmd.txt vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-patch + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo_append && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-configure" + DESC = No configure step for 'vorbis-populate' + restat = 1 + + +############################################# +# Custom command for vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-download + +build vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-download | ${cmake_ninja_workdir}vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-download: CUSTOM_COMMAND vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-gitinfo.txt vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-mkdir + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE -P C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/tmp/vorbis-populate-gitclone.cmake && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-download" + DESC = Performing download step (git clone) for 'vorbis-populate' + pool = console + restat = 1 + + +############################################# +# Custom command for vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-install + +build vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-install | ${cmake_ninja_workdir}vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-install: CUSTOM_COMMAND vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-build + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo_append && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-install" + DESC = No install step for 'vorbis-populate' + restat = 1 + + +############################################# +# Custom command for vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-mkdir + +build vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-mkdir | ${cmake_ninja_workdir}vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-mkdir: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-subbuild && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -Dcfgdir= -P C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/tmp/vorbis-populate-mkdirs.cmake && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-mkdir" + DESC = Creating directories for 'vorbis-populate' + restat = 1 + + +############################################# +# Custom command for vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-patch + +build vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-patch | ${cmake_ninja_workdir}vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-patch: CUSTOM_COMMAND vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-patch-info.txt vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-update + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-src && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DVORBIS_DIR=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src -P C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/tools/vorbis/PatchVorbis.cmake && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-patch" + DESC = Performing patch step for 'vorbis-populate' + pool = console + restat = 1 + + +############################################# +# Custom command for vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-test + +build vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-test | ${cmake_ninja_workdir}vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-test: CUSTOM_COMMAND vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-install + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo_append && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E touch C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-test" + DESC = No test step for 'vorbis-populate' + restat = 1 + + +############################################# +# Custom command for vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-update + +build vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-update | ${cmake_ninja_workdir}vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-update: CUSTOM_COMMAND vorbis-populate-prefix\tmp\vorbis-populate-gitupdate.cmake vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-update-info.txt vorbis-populate-prefix\src\vorbis-populate-stamp\vorbis-populate-download + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-src && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -Dcan_fetch=YES -DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE -P C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/tmp/vorbis-populate-gitupdate.cmake" + DESC = Performing update step for 'vorbis-populate' + pool = console + +# ============================================================================= +# Target aliases. + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild + +build all: phony vorbis-populate + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | CMakeCache.txt CMakeFiles\3.30.5\CMakeSystem.cmake CMakeLists.txt G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeGenericSystem.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeInitializeConfigs.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeSystemSpecificInformation.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeSystemSpecificInitialize.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\PatchInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\RepositoryInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\UpdateInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\cfgcmd.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\gitclone.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\gitupdate.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\mkdirs.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\shared_internal_commands.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\Windows-Initialize.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\Windows.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\WindowsPaths.cmake vorbis-populate-prefix\tmp\vorbis-populate-mkdirs.cmake + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build CMakeCache.txt CMakeFiles\3.30.5\CMakeSystem.cmake CMakeLists.txt G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeGenericSystem.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeInitializeConfigs.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeSystemSpecificInformation.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\CMakeSystemSpecificInitialize.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\PatchInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\RepositoryInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\UpdateInfo.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\cfgcmd.txt.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\gitclone.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\gitupdate.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\mkdirs.cmake.in G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\ExternalProject\shared_internal_commands.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\Windows-Initialize.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\Windows.cmake G$:\CLion$ 2024.3\bin\cmake\win\x64\share\cmake-3.30\Modules\Platform\WindowsPaths.cmake vorbis-populate-prefix\tmp\vorbis-populate-mkdirs.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/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/cmake_install.cmake new file mode 100644 index 00000000..33210140 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/cmake_install.cmake @@ -0,0 +1,52 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/vorbis-populate") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +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:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-build b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-build new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-configure b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-configure new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-done b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-done new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-download b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-download new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-gitclone-lastrun.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-gitclone-lastrun.txt new file mode 100644 index 00000000..d8769a6a --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-gitclone-lastrun.txt @@ -0,0 +1,15 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=git +command=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/tmp/vorbis-populate-gitclone.cmake +source_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src +work_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps +repository=https://github.com/xiph/vorbis.git +remote=origin +init_submodules=TRUE +recurse_submodules=--recursive +submodules= +CMP0097=NEW + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-gitinfo.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-gitinfo.txt new file mode 100644 index 00000000..d8769a6a --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-gitinfo.txt @@ -0,0 +1,15 @@ +# This is a generated file and its contents are an internal implementation detail. +# The download step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +method=git +command=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/tmp/vorbis-populate-gitclone.cmake +source_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src +work_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps +repository=https://github.com/xiph/vorbis.git +remote=origin +init_submodules=TRUE +recurse_submodules=--recursive +submodules= +CMP0097=NEW + diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-install b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-install new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-mkdir b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-mkdir new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-patch b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-patch new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-patch-info.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-patch-info.txt new file mode 100644 index 00000000..b3a9f3dc --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-patch-info.txt @@ -0,0 +1,6 @@ +# This is a generated file and its contents are an internal implementation detail. +# The update step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-DVORBIS_DIR=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/tools/vorbis/PatchVorbis.cmake +work_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-test b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-test new file mode 100644 index 00000000..e69de29b diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-update-info.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-update-info.txt new file mode 100644 index 00000000..58497105 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-update-info.txt @@ -0,0 +1,7 @@ +# This is a generated file and its contents are an internal implementation detail. +# The patch step will be re-executed if anything in this file changes. +# No other meaning or use of this file is supported. + +command (connected)=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-Dcan_fetch=YES;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/tmp/vorbis-populate-gitupdate.cmake +command (disconnected)=G:/CLion 2024.3/bin/cmake/win/x64/bin/cmake.exe;-Dcan_fetch=NO;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE;-P;C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/tmp/vorbis-populate-gitupdate.cmake +work_dir=C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/tmp/vorbis-populate-cfgcmd.txt b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/tmp/vorbis-populate-cfgcmd.txt new file mode 100644 index 00000000..6a6ed5fd --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/tmp/vorbis-populate-cfgcmd.txt @@ -0,0 +1 @@ +cmd='' diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/tmp/vorbis-populate-gitclone.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/tmp/vorbis-populate-gitclone.cmake new file mode 100644 index 00000000..5c0c1f58 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/tmp/vorbis-populate-gitclone.cmake @@ -0,0 +1,87 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +if(EXISTS "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-gitclone-lastrun.txt" AND EXISTS "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-gitinfo.txt" AND + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-gitclone-lastrun.txt" IS_NEWER_THAN "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-gitinfo.txt") + message(VERBOSE + "Avoiding repeated git clone, stamp file is up to date: " + "'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-gitclone-lastrun.txt'" + ) + return() +endif() + +# Even at VERBOSE level, we don't want to see the commands executed, but +# enabling them to be shown for DEBUG may be useful to help diagnose problems. +cmake_language(GET_MESSAGE_LOG_LEVEL active_log_level) +if(active_log_level MATCHES "DEBUG|TRACE") + set(maybe_show_command COMMAND_ECHO STDOUT) +else() + set(maybe_show_command "") +endif() + +execute_process( + COMMAND ${CMAKE_COMMAND} -E rm -rf "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + RESULT_VARIABLE error_code + ${maybe_show_command} +) +if(error_code) + message(FATAL_ERROR "Failed to remove directory: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src'") +endif() + +# try the clone 3 times in case there is an odd git clone issue +set(error_code 1) +set(number_of_tries 0) +while(error_code AND number_of_tries LESS 3) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" + clone --no-checkout --depth 1 --no-single-branch --config "advice.detachedHead=false" "https://github.com/xiph/vorbis.git" "vorbis-src" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) + math(EXPR number_of_tries "${number_of_tries} + 1") +endwhile() +if(number_of_tries GREATER 1) + message(NOTICE "Had to git clone more than once: ${number_of_tries} times.") +endif() +if(error_code) + message(FATAL_ERROR "Failed to clone repository: 'https://github.com/xiph/vorbis.git'") +endif() + +execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" + checkout "v1.3.7" -- + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + RESULT_VARIABLE error_code + ${maybe_show_command} +) +if(error_code) + message(FATAL_ERROR "Failed to checkout tag: 'v1.3.7'") +endif() + +set(init_submodules TRUE) +if(init_submodules) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" + submodule update --recursive --init + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) +endif() +if(error_code) + message(FATAL_ERROR "Failed to update submodules in: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src'") +endif() + +# Complete success, update the script-last-run stamp file: +# +execute_process( + COMMAND ${CMAKE_COMMAND} -E copy "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-gitinfo.txt" "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-gitclone-lastrun.txt" + RESULT_VARIABLE error_code + ${maybe_show_command} +) +if(error_code) + message(FATAL_ERROR "Failed to copy script-last-run stamp file: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/vorbis-populate-gitclone-lastrun.txt'") +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/tmp/vorbis-populate-gitupdate.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/tmp/vorbis-populate-gitupdate.cmake new file mode 100644 index 00000000..0ada0fab --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/tmp/vorbis-populate-gitupdate.cmake @@ -0,0 +1,317 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +# Even at VERBOSE level, we don't want to see the commands executed, but +# enabling them to be shown for DEBUG may be useful to help diagnose problems. +cmake_language(GET_MESSAGE_LOG_LEVEL active_log_level) +if(active_log_level MATCHES "DEBUG|TRACE") + set(maybe_show_command COMMAND_ECHO STDOUT) +else() + set(maybe_show_command "") +endif() + +function(do_fetch) + message(VERBOSE "Fetching latest from the remote origin") + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git fetch --tags --force "origin" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + COMMAND_ERROR_IS_FATAL LAST + ${maybe_show_command} + ) +endfunction() + +function(get_hash_for_ref ref out_var err_var) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git rev-parse "${ref}^0" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE ref_hash + ERROR_VARIABLE error_msg + OUTPUT_STRIP_TRAILING_WHITESPACE + ) + if(error_code) + set(${out_var} "" PARENT_SCOPE) + else() + set(${out_var} "${ref_hash}" PARENT_SCOPE) + endif() + set(${err_var} "${error_msg}" PARENT_SCOPE) +endfunction() + +get_hash_for_ref(HEAD head_sha error_msg) +if(head_sha STREQUAL "") + message(FATAL_ERROR "Failed to get the hash for HEAD:\n${error_msg}") +endif() + +if("${can_fetch}" STREQUAL "") + set(can_fetch "YES") +endif() + +execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git show-ref "v1.3.7" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + OUTPUT_VARIABLE show_ref_output +) +if(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/remotes/") + # Given a full remote/branch-name and we know about it already. Since + # branches can move around, we should always fetch, if permitted. + if(can_fetch) + do_fetch() + endif() + set(checkout_name "v1.3.7") + +elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/tags/") + # Given a tag name that we already know about. We don't know if the tag we + # have matches the remote though (tags can move), so we should fetch. As a + # special case to preserve backward compatibility, if we are already at the + # same commit as the tag we hold locally, don't do a fetch and assume the tag + # hasn't moved on the remote. + # FIXME: We should provide an option to always fetch for this case + get_hash_for_ref("v1.3.7" tag_sha error_msg) + if(tag_sha STREQUAL head_sha) + message(VERBOSE "Already at requested tag: v1.3.7") + return() + endif() + + if(can_fetch) + do_fetch() + endif() + set(checkout_name "v1.3.7") + +elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/heads/") + # Given a branch name without any remote and we already have a branch by that + # name. We might already have that branch checked out or it might be a + # different branch. It isn't fully safe to use a bare branch name without the + # remote, so do a fetch (if allowed) and replace the ref with one that + # includes the remote. + if(can_fetch) + do_fetch() + endif() + set(checkout_name "origin/v1.3.7") + +else() + get_hash_for_ref("v1.3.7" tag_sha error_msg) + if(tag_sha STREQUAL head_sha) + # Have the right commit checked out already + message(VERBOSE "Already at requested ref: ${tag_sha}") + return() + + elseif(tag_sha STREQUAL "") + # We don't know about this ref yet, so we have no choice but to fetch. + if(NOT can_fetch) + message(FATAL_ERROR + "Requested git ref \"v1.3.7\" is not present locally, and not " + "allowed to contact remote due to UPDATE_DISCONNECTED setting." + ) + endif() + + # We deliberately swallow any error message at the default log level + # because it can be confusing for users to see a failed git command. + # That failure is being handled here, so it isn't an error. + if(NOT error_msg STREQUAL "") + message(DEBUG "${error_msg}") + endif() + do_fetch() + set(checkout_name "v1.3.7") + + else() + # We have the commit, so we know we were asked to find a commit hash + # (otherwise it would have been handled further above), but we don't + # have that commit checked out yet. We don't need to fetch from the remote. + set(checkout_name "v1.3.7") + if(NOT error_msg STREQUAL "") + message(WARNING "${error_msg}") + endif() + + endif() +endif() + +set(git_update_strategy "REBASE") +if(git_update_strategy STREQUAL "") + # Backward compatibility requires REBASE as the default behavior + set(git_update_strategy REBASE) +endif() + +if(git_update_strategy MATCHES "^REBASE(_CHECKOUT)?$") + # Asked to potentially try to rebase first, maybe with fallback to checkout. + # We can't if we aren't already on a branch and we shouldn't if that local + # branch isn't tracking the one we want to checkout. + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git symbolic-ref -q HEAD + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + OUTPUT_VARIABLE current_branch + OUTPUT_STRIP_TRAILING_WHITESPACE + # Don't test for an error. If this isn't a branch, we get a non-zero error + # code but empty output. + ) + + if(current_branch STREQUAL "") + # Not on a branch, checkout is the only sensible option since any rebase + # would always fail (and backward compatibility requires us to checkout in + # this situation) + set(git_update_strategy CHECKOUT) + + else() + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git for-each-ref "--format=%(upstream:short)" "${current_branch}" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + OUTPUT_VARIABLE upstream_branch + OUTPUT_STRIP_TRAILING_WHITESPACE + COMMAND_ERROR_IS_FATAL ANY # There is no error if no upstream is set + ) + if(NOT upstream_branch STREQUAL checkout_name) + # Not safe to rebase when asked to checkout a different branch to the one + # we are tracking. If we did rebase, we could end up with arbitrary + # commits added to the ref we were asked to checkout if the current local + # branch happens to be able to rebase onto the target branch. There would + # be no error message and the user wouldn't know this was occurring. + set(git_update_strategy CHECKOUT) + endif() + + endif() +elseif(NOT git_update_strategy STREQUAL "CHECKOUT") + message(FATAL_ERROR "Unsupported git update strategy: ${git_update_strategy}") +endif() + + +# Check if stash is needed +execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git status --porcelain + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE repo_status +) +if(error_code) + message(FATAL_ERROR "Failed to get the status") +endif() +string(LENGTH "${repo_status}" need_stash) + +# If not in clean state, stash changes in order to be able to perform a +# rebase or checkout without losing those changes permanently +if(need_stash) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash save --quiet;--include-untracked + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) +endif() + +if(git_update_strategy STREQUAL "CHECKOUT") + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git checkout "${checkout_name}" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) +else() + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git rebase "${checkout_name}" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + RESULT_VARIABLE error_code + OUTPUT_VARIABLE rebase_output + ERROR_VARIABLE rebase_output + ) + if(error_code) + # Rebase failed, undo the rebase attempt before continuing + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git rebase --abort + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + ${maybe_show_command} + ) + + if(NOT git_update_strategy STREQUAL "REBASE_CHECKOUT") + # Not allowed to do a checkout as a fallback, so cannot proceed + if(need_stash) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + ${maybe_show_command} + ) + endif() + message(FATAL_ERROR "\nFailed to rebase in: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src'." + "\nOutput from the attempted rebase follows:" + "\n${rebase_output}" + "\n\nYou will have to resolve the conflicts manually") + endif() + + # Fall back to checkout. We create an annotated tag so that the user + # can manually inspect the situation and revert if required. + # We can't log the failed rebase output because MSVC sees it and + # intervenes, causing the build to fail even though it completes. + # Write it to a file instead. + string(TIMESTAMP tag_timestamp "%Y%m%dT%H%M%S" UTC) + set(tag_name _cmake_ExternalProject_moved_from_here_${tag_timestamp}Z) + set(error_log_file ${CMAKE_CURRENT_LIST_DIR}/rebase_error_${tag_timestamp}Z.log) + file(WRITE ${error_log_file} "${rebase_output}") + message(WARNING "Rebase failed, output has been saved to ${error_log_file}" + "\nFalling back to checkout, previous commit tagged as ${tag_name}") + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git tag -a + -m "ExternalProject attempting to move from here to ${checkout_name}" + ${tag_name} + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) + + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git checkout "${checkout_name}" + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) + endif() +endif() + +if(need_stash) + # Put back the stashed changes + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) + if(error_code) + # Stash pop --index failed: Try again dropping the index + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git reset --hard --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + ${maybe_show_command} + ) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash pop --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + RESULT_VARIABLE error_code + ${maybe_show_command} + ) + if(error_code) + # Stash pop failed: Restore previous state. + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git reset --hard --quiet ${head_sha} + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + ${maybe_show_command} + ) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" --git-dir=.git stash pop --index --quiet + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + ${maybe_show_command} + ) + message(FATAL_ERROR "\nFailed to unstash changes in: 'C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src'." + "\nYou will have to resolve the conflicts manually") + endif() + endif() +endif() + +set(init_submodules "TRUE") +if(init_submodules) + execute_process( + COMMAND "C:/Program Files/Git/cmd/git.exe" + --git-dir=.git + submodule update --recursive --init + WORKING_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src" + COMMAND_ERROR_IS_FATAL ANY + ${maybe_show_command} + ) +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/tmp/vorbis-populate-mkdirs.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/tmp/vorbis-populate-mkdirs.cmake new file mode 100644 index 00000000..46b715de --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/tmp/vorbis-populate-mkdirs.cmake @@ -0,0 +1,27 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.5) + +# If CMAKE_DISABLE_SOURCE_CHANGES is set to true and the source directory is an +# existing directory in our source tree, calling file(MAKE_DIRECTORY) on it +# would cause a fatal error, even though it would be a no-op. +if(NOT EXISTS "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src") + file(MAKE_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src") +endif() +file(MAKE_DIRECTORY + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/tmp" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src" + "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp" +) + +set(configSubDirs ) +foreach(subDir IN LISTS configSubDirs) + file(MAKE_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp/${subDir}") +endforeach() +if(cfgdir) + file(MAKE_DIRECTORY "C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-subbuild/vorbis-populate-prefix/src/vorbis-populate-stamp${cfgdir}") # cfgdir has leading slash +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/build.ninja b/sem2/fedotow-p/MiniHW2/cmake-build-debug/build.ninja new file mode 100644 index 00000000..f3861cb4 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/build.ninja @@ -0,0 +1,3798 @@ +# 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: MiniHW2 +# Configurations: Debug +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + + +############################################# +# Set configuration variable for custom commands. + +CONFIGURATION = Debug +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles/rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/ +# ============================================================================= +# Object build statements for EXECUTABLE target MiniHW2 + + +############################################# +# Order-only phony target for MiniHW2 + +build cmake_object_order_depends_target_MiniHW2: phony || cmake_object_order_depends_target_freetype cmake_object_order_depends_target_sfml-graphics cmake_object_order_depends_target_sfml-system cmake_object_order_depends_target_sfml-window + +build CMakeFiles/MiniHW2.dir/main.cpp.obj: CXX_COMPILER__MiniHW2_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/main.cpp || cmake_object_order_depends_target_MiniHW2 + DEFINES = -DSFML_STATIC + DEP_FILE = CMakeFiles\MiniHW2.dir\main.cpp.obj.d + FLAGS = -g -std=gnu++20 -fdiagnostics-color=always + INCLUDES = -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include + OBJECT_DIR = CMakeFiles\MiniHW2.dir + OBJECT_FILE_DIR = CMakeFiles\MiniHW2.dir + + +# ============================================================================= +# Link build statements for EXECUTABLE target MiniHW2 + + +############################################# +# Link the executable MiniHW2.exe + +build MiniHW2.exe: CXX_EXECUTABLE_LINKER__MiniHW2_Debug CMakeFiles/MiniHW2.dir/main.cpp.obj | _deps/sfml-build/lib/libsfml-graphics-s-d.a _deps/sfml-build/lib/libsfml-window-s-d.a _deps/sfml-build/lib/libsfml-system-s-d.a _deps/sfml-build/lib/libfreetyped.a || _deps/sfml-build/lib/libfreetyped.a _deps/sfml-build/lib/libsfml-graphics-s-d.a _deps/sfml-build/lib/libsfml-system-s-d.a _deps/sfml-build/lib/libsfml-window-s-d.a + FLAGS = -g + LINK_LIBRARIES = _deps/sfml-build/lib/libsfml-graphics-s-d.a _deps/sfml-build/lib/libsfml-window-s-d.a _deps/sfml-build/lib/libsfml-system-s-d.a -lopengl32 -lwinmm -lgdi32 _deps/sfml-build/lib/libfreetyped.a -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + OBJECT_DIR = CMakeFiles\MiniHW2.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = MiniHW2.exe + TARGET_IMPLIB = libMiniHW2.dll.a + TARGET_PDB = MiniHW2.exe.dbg + + +############################################# +# Utility command for package + +build CMakeFiles/package.util: CUSTOM_COMMAND all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build package: phony CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackSourceConfig.cmake C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build package_source: phony CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\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:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2 -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build list_install_components: phony + + +############################################# +# Utility command for install + +build CMakeFiles/install.util: CUSTOM_COMMAND all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build install: phony CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build CMakeFiles/install/local.util: CUSTOM_COMMAND all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build install/local: phony CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build CMakeFiles/install/strip.util: CUSTOM_COMMAND all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build install/strip: phony CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Пашок/CLionProjects/MiniHW2/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for package + +build _deps/sfml-build/CMakeFiles/package.util: CUSTOM_COMMAND _deps/sfml-build/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build _deps/sfml-build/package: phony _deps/sfml-build/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build _deps/sfml-build/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackSourceConfig.cmake C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build _deps/sfml-build/package_source: phony _deps/sfml-build/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build _deps/sfml-build/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build _deps/sfml-build/edit_cache: phony _deps/sfml-build/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build _deps/sfml-build/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2 -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _deps/sfml-build/rebuild_cache: phony _deps/sfml-build/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build _deps/sfml-build/list_install_components: phony + + +############################################# +# Utility command for install + +build _deps/sfml-build/CMakeFiles/install.util: CUSTOM_COMMAND _deps/sfml-build/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build _deps/sfml-build/install: phony _deps/sfml-build/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build _deps/sfml-build/CMakeFiles/install/local.util: CUSTOM_COMMAND _deps/sfml-build/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build _deps/sfml-build/install/local: phony _deps/sfml-build/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build _deps/sfml-build/CMakeFiles/install/strip.util: CUSTOM_COMMAND _deps/sfml-build/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build _deps/sfml-build/install/strip: phony _deps/sfml-build/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for package + +build _deps/sfml-build/src/SFML/CMakeFiles/package.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/package: phony _deps/sfml-build/src/SFML/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build _deps/sfml-build/src/SFML/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackSourceConfig.cmake C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/package_source: phony _deps/sfml-build/src/SFML/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build _deps/sfml-build/src/SFML/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build _deps/sfml-build/src/SFML/edit_cache: phony _deps/sfml-build/src/SFML/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build _deps/sfml-build/src/SFML/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2 -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/rebuild_cache: phony _deps/sfml-build/src/SFML/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build _deps/sfml-build/src/SFML/list_install_components: phony + + +############################################# +# Utility command for install + +build _deps/sfml-build/src/SFML/CMakeFiles/install.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/install: phony _deps/sfml-build/src/SFML/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build _deps/sfml-build/src/SFML/CMakeFiles/install/local.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/install/local: phony _deps/sfml-build/src/SFML/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build _deps/sfml-build/src/SFML/CMakeFiles/install/strip.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/install/strip: phony _deps/sfml-build/src/SFML/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target sfml-system + + +############################################# +# Order-only phony target for sfml-system + +build cmake_object_order_depends_target_sfml-system: phony || . + +build _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Clock.cpp.obj: CXX_COMPILER__sfml-system_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/System/Clock.cpp || cmake_object_order_depends_target_sfml-system + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir\Clock.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src + OBJECT_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir + +build _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Err.cpp.obj: CXX_COMPILER__sfml-system_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/System/Err.cpp || cmake_object_order_depends_target_sfml-system + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir\Err.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src + OBJECT_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir + +build _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Sleep.cpp.obj: CXX_COMPILER__sfml-system_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/System/Sleep.cpp || cmake_object_order_depends_target_sfml-system + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir\Sleep.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src + OBJECT_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir + +build _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/String.cpp.obj: CXX_COMPILER__sfml-system_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/System/String.cpp || cmake_object_order_depends_target_sfml-system + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir\String.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src + OBJECT_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir + +build _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Utils.cpp.obj: CXX_COMPILER__sfml-system_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/System/Utils.cpp || cmake_object_order_depends_target_sfml-system + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir\Utils.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src + OBJECT_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir + +build _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Vector2.cpp.obj: CXX_COMPILER__sfml-system_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/System/Vector2.cpp || cmake_object_order_depends_target_sfml-system + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir\Vector2.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src + OBJECT_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir + +build _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Vector3.cpp.obj: CXX_COMPILER__sfml-system_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/System/Vector3.cpp || cmake_object_order_depends_target_sfml-system + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir\Vector3.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src + OBJECT_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir + +build _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/FileInputStream.cpp.obj: CXX_COMPILER__sfml-system_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/System/FileInputStream.cpp || cmake_object_order_depends_target_sfml-system + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir\FileInputStream.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src + OBJECT_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir + +build _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/MemoryInputStream.cpp.obj: CXX_COMPILER__sfml-system_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/System/MemoryInputStream.cpp || cmake_object_order_depends_target_sfml-system + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir\MemoryInputStream.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src + OBJECT_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir + +build _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Win32/SleepImpl.cpp.obj: CXX_COMPILER__sfml-system_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/System/Win32/SleepImpl.cpp || cmake_object_order_depends_target_sfml-system + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir\Win32\SleepImpl.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src + OBJECT_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir\Win32 + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target sfml-system + + +############################################# +# Link the static library _deps\sfml-build\lib\libsfml-system-s-d.a + +build _deps/sfml-build/lib/libsfml-system-s-d.a: CXX_STATIC_LIBRARY_LINKER__sfml-system_Debug _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Clock.cpp.obj _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Err.cpp.obj _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Sleep.cpp.obj _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/String.cpp.obj _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Utils.cpp.obj _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Vector2.cpp.obj _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Vector3.cpp.obj _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/FileInputStream.cpp.obj _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/MemoryInputStream.cpp.obj _deps/sfml-build/src/SFML/System/CMakeFiles/sfml-system.dir/Win32/SleepImpl.cpp.obj + LANGUAGE_COMPILE_FLAGS = -g + OBJECT_DIR = _deps\sfml-build\src\SFML\System\CMakeFiles\sfml-system.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = _deps\sfml-build\lib\libsfml-system-s-d.a + TARGET_PDB = sfml-system-s-d.a.dbg + + +############################################# +# Utility command for package + +build _deps/sfml-build/src/SFML/System/CMakeFiles/package.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/System/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/System/package: phony _deps/sfml-build/src/SFML/System/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build _deps/sfml-build/src/SFML/System/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackSourceConfig.cmake C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/System/package_source: phony _deps/sfml-build/src/SFML/System/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build _deps/sfml-build/src/SFML/System/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\System && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build _deps/sfml-build/src/SFML/System/edit_cache: phony _deps/sfml-build/src/SFML/System/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build _deps/sfml-build/src/SFML/System/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\System && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2 -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/System/rebuild_cache: phony _deps/sfml-build/src/SFML/System/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build _deps/sfml-build/src/SFML/System/list_install_components: phony + + +############################################# +# Utility command for install + +build _deps/sfml-build/src/SFML/System/CMakeFiles/install.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/System/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\System && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/System/install: phony _deps/sfml-build/src/SFML/System/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build _deps/sfml-build/src/SFML/System/CMakeFiles/install/local.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/System/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\System && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/System/install/local: phony _deps/sfml-build/src/SFML/System/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build _deps/sfml-build/src/SFML/System/CMakeFiles/install/strip.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/System/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\System && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/System/install/strip: phony _deps/sfml-build/src/SFML/System/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target sfml-main + + +############################################# +# Order-only phony target for sfml-main + +build cmake_object_order_depends_target_sfml-main: phony || . + +build _deps/sfml-build/src/SFML/Main/CMakeFiles/sfml-main.dir/MainWin32.cpp.obj: CXX_COMPILER__sfml-main_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Main/MainWin32.cpp || cmake_object_order_depends_target_sfml-main + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Main\CMakeFiles\sfml-main.dir\MainWin32.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src + OBJECT_DIR = _deps\sfml-build\src\SFML\Main\CMakeFiles\sfml-main.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Main\CMakeFiles\sfml-main.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target sfml-main + + +############################################# +# Link the static library _deps\sfml-build\lib\libsfml-main-s-d.a + +build _deps/sfml-build/lib/libsfml-main-s-d.a: CXX_STATIC_LIBRARY_LINKER__sfml-main_Debug _deps/sfml-build/src/SFML/Main/CMakeFiles/sfml-main.dir/MainWin32.cpp.obj + LANGUAGE_COMPILE_FLAGS = -g + OBJECT_DIR = _deps\sfml-build\src\SFML\Main\CMakeFiles\sfml-main.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = _deps\sfml-build\lib\libsfml-main-s-d.a + TARGET_PDB = sfml-main-s-d.a.dbg + + +############################################# +# Utility command for package + +build _deps/sfml-build/src/SFML/Main/CMakeFiles/package.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/Main/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Main/package: phony _deps/sfml-build/src/SFML/Main/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build _deps/sfml-build/src/SFML/Main/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackSourceConfig.cmake C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Main/package_source: phony _deps/sfml-build/src/SFML/Main/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build _deps/sfml-build/src/SFML/Main/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Main && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build _deps/sfml-build/src/SFML/Main/edit_cache: phony _deps/sfml-build/src/SFML/Main/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build _deps/sfml-build/src/SFML/Main/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Main && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2 -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Main/rebuild_cache: phony _deps/sfml-build/src/SFML/Main/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build _deps/sfml-build/src/SFML/Main/list_install_components: phony + + +############################################# +# Utility command for install + +build _deps/sfml-build/src/SFML/Main/CMakeFiles/install.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/Main/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Main && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Main/install: phony _deps/sfml-build/src/SFML/Main/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build _deps/sfml-build/src/SFML/Main/CMakeFiles/install/local.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/Main/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Main && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Main/install/local: phony _deps/sfml-build/src/SFML/Main/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build _deps/sfml-build/src/SFML/Main/CMakeFiles/install/strip.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/Main/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Main && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Main/install/strip: phony _deps/sfml-build/src/SFML/Main/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target sfml-window + + +############################################# +# Order-only phony target for sfml-window + +build cmake_object_order_depends_target_sfml-window: phony || cmake_object_order_depends_target_sfml-system + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Clipboard.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/Clipboard.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Clipboard.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Context.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/Context.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Context.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Cursor.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/Cursor.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Cursor.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/GlContext.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/GlContext.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\GlContext.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/GlResource.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/GlResource.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\GlResource.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Joystick.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/Joystick.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Joystick.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/JoystickManager.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/JoystickManager.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\JoystickManager.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Keyboard.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/Keyboard.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Keyboard.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Mouse.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/Mouse.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Mouse.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Touch.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/Touch.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Touch.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Sensor.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/Sensor.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Sensor.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/SensorManager.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/SensorManager.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\SensorManager.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/VideoMode.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/VideoMode.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\VideoMode.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Vulkan.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/Vulkan.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Vulkan.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Window.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/Window.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Window.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/WindowBase.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/WindowBase.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\WindowBase.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/WindowImpl.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/WindowImpl.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\WindowImpl.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/CursorImpl.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/CursorImpl.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Win32\CursorImpl.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Win32 + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/ClipboardImpl.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/ClipboardImpl.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Win32\ClipboardImpl.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Win32 + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/InputImpl.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/InputImpl.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Win32\InputImpl.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Win32 + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/JoystickImpl.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/JoystickImpl.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Win32\JoystickImpl.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Win32 + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/SensorImpl.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/SensorImpl.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Win32\SensorImpl.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Win32 + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/VideoModeImpl.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/VideoModeImpl.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Win32\VideoModeImpl.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Win32 + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/VulkanImplWin32.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/VulkanImplWin32.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Win32\VulkanImplWin32.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Win32 + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/WindowImplWin32.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/WindowImplWin32.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Win32\WindowImplWin32.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Win32 + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/WglContext.cpp.obj: CXX_COMPILER__sfml-window_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Window/Win32/WglContext.cpp || cmake_object_order_depends_target_sfml-window + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Win32\WglContext.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/vulkan + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir\Win32 + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target sfml-window + + +############################################# +# Link the static library _deps\sfml-build\lib\libsfml-window-s-d.a + +build _deps/sfml-build/lib/libsfml-window-s-d.a: CXX_STATIC_LIBRARY_LINKER__sfml-window_Debug _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Clipboard.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Context.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Cursor.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/GlContext.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/GlResource.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Joystick.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/JoystickManager.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Keyboard.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Mouse.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Touch.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Sensor.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/SensorManager.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/VideoMode.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Vulkan.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Window.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/WindowBase.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/WindowImpl.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/CursorImpl.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/ClipboardImpl.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/InputImpl.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/JoystickImpl.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/SensorImpl.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/VideoModeImpl.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/VulkanImplWin32.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/WindowImplWin32.cpp.obj _deps/sfml-build/src/SFML/Window/CMakeFiles/sfml-window.dir/Win32/WglContext.cpp.obj || _deps/sfml-build/lib/libsfml-system-s-d.a + LANGUAGE_COMPILE_FLAGS = -g + OBJECT_DIR = _deps\sfml-build\src\SFML\Window\CMakeFiles\sfml-window.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = _deps\sfml-build\lib\libsfml-window-s-d.a + TARGET_PDB = sfml-window-s-d.a.dbg + + +############################################# +# Utility command for package + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/package.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/Window/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Window/package: phony _deps/sfml-build/src/SFML/Window/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackSourceConfig.cmake C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Window/package_source: phony _deps/sfml-build/src/SFML/Window/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Window && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build _deps/sfml-build/src/SFML/Window/edit_cache: phony _deps/sfml-build/src/SFML/Window/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Window && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2 -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Window/rebuild_cache: phony _deps/sfml-build/src/SFML/Window/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build _deps/sfml-build/src/SFML/Window/list_install_components: phony + + +############################################# +# Utility command for install + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/install.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/Window/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Window && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Window/install: phony _deps/sfml-build/src/SFML/Window/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/install/local.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/Window/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Window && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Window/install/local: phony _deps/sfml-build/src/SFML/Window/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build _deps/sfml-build/src/SFML/Window/CMakeFiles/install/strip.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/Window/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Window && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Window/install/strip: phony _deps/sfml-build/src/SFML/Window/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target sfml-network + + +############################################# +# Order-only phony target for sfml-network + +build cmake_object_order_depends_target_sfml-network: phony || cmake_object_order_depends_target_sfml-system + +build _deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir/Ftp.cpp.obj: CXX_COMPILER__sfml-network_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Network/Ftp.cpp || cmake_object_order_depends_target_sfml-network + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir\Ftp.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir + +build _deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir/Http.cpp.obj: CXX_COMPILER__sfml-network_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Network/Http.cpp || cmake_object_order_depends_target_sfml-network + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir\Http.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir + +build _deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir/IpAddress.cpp.obj: CXX_COMPILER__sfml-network_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Network/IpAddress.cpp || cmake_object_order_depends_target_sfml-network + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir\IpAddress.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir + +build _deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir/Packet.cpp.obj: CXX_COMPILER__sfml-network_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Network/Packet.cpp || cmake_object_order_depends_target_sfml-network + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir\Packet.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir + +build _deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir/Socket.cpp.obj: CXX_COMPILER__sfml-network_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Network/Socket.cpp || cmake_object_order_depends_target_sfml-network + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir\Socket.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir + +build _deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir/SocketSelector.cpp.obj: CXX_COMPILER__sfml-network_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Network/SocketSelector.cpp || cmake_object_order_depends_target_sfml-network + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir\SocketSelector.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir + +build _deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir/TcpListener.cpp.obj: CXX_COMPILER__sfml-network_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Network/TcpListener.cpp || cmake_object_order_depends_target_sfml-network + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir\TcpListener.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir + +build _deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir/TcpSocket.cpp.obj: CXX_COMPILER__sfml-network_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Network/TcpSocket.cpp || cmake_object_order_depends_target_sfml-network + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir\TcpSocket.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir + +build _deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir/UdpSocket.cpp.obj: CXX_COMPILER__sfml-network_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Network/UdpSocket.cpp || cmake_object_order_depends_target_sfml-network + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir\UdpSocket.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir + +build _deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir/Win32/SocketImpl.cpp.obj: CXX_COMPILER__sfml-network_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Network/Win32/SocketImpl.cpp || cmake_object_order_depends_target_sfml-network + DEFINES = -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir\Win32\SocketImpl.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir\Win32 + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target sfml-network + + +############################################# +# Link the static library _deps\sfml-build\lib\libsfml-network-s-d.a + +build _deps/sfml-build/lib/libsfml-network-s-d.a: CXX_STATIC_LIBRARY_LINKER__sfml-network_Debug _deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir/Ftp.cpp.obj _deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir/Http.cpp.obj _deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir/IpAddress.cpp.obj _deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir/Packet.cpp.obj _deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir/Socket.cpp.obj _deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir/SocketSelector.cpp.obj _deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir/TcpListener.cpp.obj _deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir/TcpSocket.cpp.obj _deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir/UdpSocket.cpp.obj _deps/sfml-build/src/SFML/Network/CMakeFiles/sfml-network.dir/Win32/SocketImpl.cpp.obj || _deps/sfml-build/lib/libsfml-system-s-d.a + LANGUAGE_COMPILE_FLAGS = -g + OBJECT_DIR = _deps\sfml-build\src\SFML\Network\CMakeFiles\sfml-network.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = _deps\sfml-build\lib\libsfml-network-s-d.a + TARGET_PDB = sfml-network-s-d.a.dbg + + +############################################# +# Utility command for package + +build _deps/sfml-build/src/SFML/Network/CMakeFiles/package.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/Network/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Network/package: phony _deps/sfml-build/src/SFML/Network/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build _deps/sfml-build/src/SFML/Network/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackSourceConfig.cmake C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Network/package_source: phony _deps/sfml-build/src/SFML/Network/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build _deps/sfml-build/src/SFML/Network/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Network && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build _deps/sfml-build/src/SFML/Network/edit_cache: phony _deps/sfml-build/src/SFML/Network/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build _deps/sfml-build/src/SFML/Network/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Network && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2 -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Network/rebuild_cache: phony _deps/sfml-build/src/SFML/Network/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build _deps/sfml-build/src/SFML/Network/list_install_components: phony + + +############################################# +# Utility command for install + +build _deps/sfml-build/src/SFML/Network/CMakeFiles/install.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/Network/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Network && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Network/install: phony _deps/sfml-build/src/SFML/Network/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build _deps/sfml-build/src/SFML/Network/CMakeFiles/install/local.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/Network/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Network && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Network/install/local: phony _deps/sfml-build/src/SFML/Network/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build _deps/sfml-build/src/SFML/Network/CMakeFiles/install/strip.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/Network/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Network && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Network/install/strip: phony _deps/sfml-build/src/SFML/Network/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target sfml-graphics + + +############################################# +# Order-only phony target for sfml-graphics + +build cmake_object_order_depends_target_sfml-graphics: phony || cmake_object_order_depends_target_freetype cmake_object_order_depends_target_sfml-system cmake_object_order_depends_target_sfml-window + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/BlendMode.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/BlendMode.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\BlendMode.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Font.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Font.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\Font.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Glsl.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Glsl.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\Glsl.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/GLCheck.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/GLCheck.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\GLCheck.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/GLExtensions.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/GLExtensions.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\GLExtensions.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Image.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Image.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\Image.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches -fno-strict-aliasing + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderStates.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/RenderStates.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\RenderStates.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTexture.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/RenderTexture.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\RenderTexture.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTarget.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/RenderTarget.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\RenderTarget.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderWindow.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/RenderWindow.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\RenderWindow.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Shader.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Shader.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\Shader.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/StencilMode.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/StencilMode.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\StencilMode.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Texture.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Texture.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\Texture.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/TextureSaver.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/TextureSaver.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\TextureSaver.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Transform.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Transform.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\Transform.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Transformable.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Transformable.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\Transformable.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/View.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/View.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\View.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Shape.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Shape.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\Shape.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/CircleShape.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/CircleShape.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\CircleShape.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RectangleShape.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/RectangleShape.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\RectangleShape.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/ConvexShape.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/ConvexShape.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\ConvexShape.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Sprite.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Sprite.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\Sprite.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Text.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/Text.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\Text.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/VertexArray.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/VertexArray.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\VertexArray.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/VertexBuffer.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/VertexBuffer.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\VertexBuffer.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTextureImplFBO.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/RenderTextureImplFBO.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\RenderTextureImplFBO.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTextureImplDefault.cpp.obj: CXX_COMPILER__sfml-graphics_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/RenderTextureImplDefault.cpp || cmake_object_order_depends_target_sfml-graphics + DEFINES = -DSFML_STATIC -DSTBI_FAILURE_USERMSG -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir\RenderTextureImplDefault.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/stb_image -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/glad/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target sfml-graphics + + +############################################# +# Link the static library _deps\sfml-build\lib\libsfml-graphics-s-d.a + +build _deps/sfml-build/lib/libsfml-graphics-s-d.a: CXX_STATIC_LIBRARY_LINKER__sfml-graphics_Debug _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/BlendMode.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Font.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Glsl.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/GLCheck.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/GLExtensions.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Image.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderStates.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTexture.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTarget.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderWindow.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Shader.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/StencilMode.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Texture.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/TextureSaver.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Transform.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Transformable.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/View.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Shape.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/CircleShape.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RectangleShape.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/ConvexShape.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Sprite.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/Text.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/VertexArray.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/VertexBuffer.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTextureImplFBO.cpp.obj _deps/sfml-build/src/SFML/Graphics/CMakeFiles/sfml-graphics.dir/RenderTextureImplDefault.cpp.obj || _deps/sfml-build/lib/libfreetyped.a _deps/sfml-build/lib/libsfml-system-s-d.a _deps/sfml-build/lib/libsfml-window-s-d.a + LANGUAGE_COMPILE_FLAGS = -g + OBJECT_DIR = _deps\sfml-build\src\SFML\Graphics\CMakeFiles\sfml-graphics.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = _deps\sfml-build\lib\libsfml-graphics-s-d.a + TARGET_PDB = sfml-graphics-s-d.a.dbg + + +############################################# +# Utility command for package + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/package.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/Graphics/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Graphics/package: phony _deps/sfml-build/src/SFML/Graphics/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackSourceConfig.cmake C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Graphics/package_source: phony _deps/sfml-build/src/SFML/Graphics/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Graphics && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build _deps/sfml-build/src/SFML/Graphics/edit_cache: phony _deps/sfml-build/src/SFML/Graphics/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Graphics && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2 -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Graphics/rebuild_cache: phony _deps/sfml-build/src/SFML/Graphics/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build _deps/sfml-build/src/SFML/Graphics/list_install_components: phony + + +############################################# +# Utility command for install + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/install.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/Graphics/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Graphics && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Graphics/install: phony _deps/sfml-build/src/SFML/Graphics/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/install/local.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/Graphics/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Graphics && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Graphics/install/local: phony _deps/sfml-build/src/SFML/Graphics/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build _deps/sfml-build/src/SFML/Graphics/CMakeFiles/install/strip.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/Graphics/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Graphics && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Graphics/install/strip: phony _deps/sfml-build/src/SFML/Graphics/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Graphics/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target freetype + + +############################################# +# Order-only phony target for freetype + +build cmake_object_order_depends_target_freetype: phony || . + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/autofit/autofit.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/autofit/autofit.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\autofit\autofit.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\autofit + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbase.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/base/ftbase.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\base\ftbase.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\base + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbbox.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/base/ftbbox.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\base\ftbbox.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\base + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbdf.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/base/ftbdf.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\base\ftbdf.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\base + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbitmap.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/base/ftbitmap.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\base\ftbitmap.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\base + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftcid.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/base/ftcid.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\base\ftcid.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\base + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftfstype.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/base/ftfstype.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\base\ftfstype.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\base + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftgasp.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/base/ftgasp.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\base\ftgasp.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\base + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftglyph.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/base/ftglyph.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\base\ftglyph.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\base + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftgxval.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/base/ftgxval.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\base\ftgxval.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\base + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftinit.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/base/ftinit.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\base\ftinit.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\base + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftmm.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/base/ftmm.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\base\ftmm.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\base + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftotval.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/base/ftotval.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\base\ftotval.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\base + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftpatent.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/base/ftpatent.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\base\ftpatent.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\base + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftpfr.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/base/ftpfr.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\base\ftpfr.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\base + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftstroke.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/base/ftstroke.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\base\ftstroke.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\base + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftsynth.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/base/ftsynth.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\base\ftsynth.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\base + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/base/fttype1.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/base/fttype1.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\base\fttype1.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\base + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftwinfnt.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/base/ftwinfnt.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\base\ftwinfnt.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\base + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/bdf/bdf.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/bdf/bdf.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\bdf\bdf.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\bdf + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/bzip2/ftbzip2.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/bzip2/ftbzip2.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\bzip2\ftbzip2.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\bzip2 + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/cache/ftcache.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/cache/ftcache.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\cache\ftcache.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\cache + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/cff/cff.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/cff/cff.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\cff\cff.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\cff + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/cid/type1cid.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/cid/type1cid.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\cid\type1cid.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\cid + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/gzip/ftgzip.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/gzip/ftgzip.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\gzip\ftgzip.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\gzip + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/lzw/ftlzw.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/lzw/ftlzw.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\lzw\ftlzw.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\lzw + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/pcf/pcf.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/pcf/pcf.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\pcf\pcf.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\pcf + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/pfr/pfr.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/pfr/pfr.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\pfr\pfr.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\pfr + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/psaux/psaux.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/psaux/psaux.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\psaux\psaux.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\psaux + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/pshinter/pshinter.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/pshinter/pshinter.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\pshinter\pshinter.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\pshinter + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/psnames/psnames.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/psnames/psnames.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\psnames\psnames.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\psnames + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/raster/raster.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/raster/raster.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\raster\raster.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\raster + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/sdf/sdf.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/sdf/sdf.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\sdf\sdf.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\sdf + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/sfnt/sfnt.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/sfnt/sfnt.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\sfnt\sfnt.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\sfnt + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/smooth/smooth.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/smooth/smooth.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\smooth\smooth.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\smooth + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/svg/svg.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/svg/svg.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\svg\svg.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\svg + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/truetype/truetype.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/truetype/truetype.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\truetype\truetype.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\truetype + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/type1/type1.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/type1/type1.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\type1\type1.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\type1 + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/type42/type42.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/type42/type42.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\type42\type42.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\type42 + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/winfonts/winfnt.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/winfonts/winfnt.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\winfonts\winfnt.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\winfonts + +build _deps/freetype-build/CMakeFiles/freetype.dir/builds/windows/ftsystem.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/builds/windows/ftsystem.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\builds\windows\ftsystem.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\builds\windows + +build _deps/freetype-build/CMakeFiles/freetype.dir/builds/windows/ftdebug.c.obj: C_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/builds/windows/ftdebug.c || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\builds\windows\ftdebug.c.obj.d + FLAGS = -g -fvisibility=hidden -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\builds\windows + +build _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftver.rc.obj: RC_COMPILER__freetype_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/src/base/ftver.rc || cmake_object_order_depends_target_freetype + DEFINES = -DFT2_BUILD_LIBRARY -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS + DEP_FILE = _deps\freetype-build\CMakeFiles\freetype.dir\src\base\ftver.rc.obj.d + INCLUDES = -I C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include -I C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-src/include -I C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build/include/freetype/config + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + OBJECT_FILE_DIR = _deps\freetype-build\CMakeFiles\freetype.dir\src\base + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target freetype + + +############################################# +# Link the static library _deps\sfml-build\lib\libfreetyped.a + +build _deps/sfml-build/lib/libfreetyped.a: C_STATIC_LIBRARY_LINKER__freetype_Debug _deps/freetype-build/CMakeFiles/freetype.dir/src/autofit/autofit.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbase.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbbox.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbdf.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftbitmap.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftcid.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftfstype.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftgasp.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftglyph.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftgxval.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftinit.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftmm.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftotval.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftpatent.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftpfr.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftstroke.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftsynth.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/base/fttype1.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftwinfnt.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/bdf/bdf.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/bzip2/ftbzip2.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/cache/ftcache.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/cff/cff.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/cid/type1cid.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/gzip/ftgzip.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/lzw/ftlzw.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/pcf/pcf.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/pfr/pfr.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/psaux/psaux.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/pshinter/pshinter.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/psnames/psnames.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/raster/raster.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/sdf/sdf.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/sfnt/sfnt.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/smooth/smooth.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/svg/svg.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/truetype/truetype.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/type1/type1.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/type42/type42.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/winfonts/winfnt.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/builds/windows/ftsystem.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/builds/windows/ftdebug.c.obj _deps/freetype-build/CMakeFiles/freetype.dir/src/base/ftver.rc.obj + LANGUAGE_COMPILE_FLAGS = -g + OBJECT_DIR = _deps\freetype-build\CMakeFiles\freetype.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = _deps\sfml-build\lib\libfreetyped.a + TARGET_PDB = freetyped.a.dbg + + +############################################# +# Utility command for package + +build _deps/freetype-build/CMakeFiles/package.util: CUSTOM_COMMAND _deps/freetype-build/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build _deps/freetype-build/package: phony _deps/freetype-build/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build _deps/freetype-build/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackSourceConfig.cmake C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build _deps/freetype-build/package_source: phony _deps/freetype-build/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build _deps/freetype-build/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\freetype-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build _deps/freetype-build/edit_cache: phony _deps/freetype-build/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build _deps/freetype-build/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\freetype-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2 -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _deps/freetype-build/rebuild_cache: phony _deps/freetype-build/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build _deps/freetype-build/list_install_components: phony + + +############################################# +# Utility command for install + +build _deps/freetype-build/CMakeFiles/install.util: CUSTOM_COMMAND _deps/freetype-build/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\freetype-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build _deps/freetype-build/install: phony _deps/freetype-build/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build _deps/freetype-build/CMakeFiles/install/local.util: CUSTOM_COMMAND _deps/freetype-build/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\freetype-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build _deps/freetype-build/install/local: phony _deps/freetype-build/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build _deps/freetype-build/CMakeFiles/install/strip.util: CUSTOM_COMMAND _deps/freetype-build/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\freetype-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build _deps/freetype-build/install/strip: phony _deps/freetype-build/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target sfml-audio + + +############################################# +# Order-only phony target for sfml-audio + +build cmake_object_order_depends_target_sfml-audio: phony || cmake_object_order_depends_target_FLAC cmake_object_order_depends_target_ogg cmake_object_order_depends_target_sfml-system cmake_object_order_depends_target_vorbis cmake_object_order_depends_target_vorbisenc cmake_object_order_depends_target_vorbisfile + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/AudioResource.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/AudioResource.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\AudioResource.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/AudioDevice.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/AudioDevice.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\AudioDevice.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/Listener.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/Listener.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\Listener.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/Miniaudio.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/Miniaudio.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\Miniaudio.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/MiniaudioUtils.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/MiniaudioUtils.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\MiniaudioUtils.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/Music.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/Music.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\Music.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/PlaybackDevice.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/PlaybackDevice.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\PlaybackDevice.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/Sound.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/Sound.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\Sound.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundBuffer.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundBuffer.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\SoundBuffer.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundBufferRecorder.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundBufferRecorder.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\SoundBufferRecorder.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/InputSoundFile.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/InputSoundFile.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\InputSoundFile.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/OutputSoundFile.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/OutputSoundFile.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\OutputSoundFile.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundRecorder.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundRecorder.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\SoundRecorder.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundSource.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundSource.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\SoundSource.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundStream.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundStream.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\SoundStream.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundFileFactory.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileFactory.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\SoundFileFactory.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundFileReaderFlac.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileReaderFlac.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\SoundFileReaderFlac.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundFileReaderMp3.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileReaderMp3.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\SoundFileReaderMp3.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundFileReaderOgg.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileReaderOgg.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\SoundFileReaderOgg.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundFileReaderWav.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileReaderWav.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\SoundFileReaderWav.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundFileWriterFlac.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileWriterFlac.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\SoundFileWriterFlac.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundFileWriterOgg.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileWriterOgg.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\SoundFileWriterOgg.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundFileWriterWav.cpp.obj: CXX_COMPILER__sfml-audio_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/SoundFileWriterWav.cpp || cmake_object_order_depends_target_sfml-audio + DEFINES = -DFLAC__NO_DLL -DMA_NO_ENCODING -DMA_NO_FLAC -DMA_NO_GENERATION -DMA_NO_MP3 -DMA_NO_RESOURCE_MANAGER -DMA_USE_STDINT -DOV_EXCLUDE_STATIC_CALLBACKS -DSFML_IS_BIG_ENDIAN=0 -DSFML_STATIC -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS + DEP_FILE = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir\SoundFileWriterWav.cpp.obj.d + FLAGS = -g -std=gnu++20 -fvisibility=hidden -fno-keep-inline-dllexport -fdiagnostics-color=always -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wcast-align -Wunused -Woverloaded-virtual -Wconversion -Wsign-conversion -Wdouble-promotion -Wformat=2 -Wimplicit-fallthrough -Wsuggest-override -Wnull-dereference -Wold-style-cast -Wpedantic -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wduplicated-branches + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/miniaudio -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/extlibs/headers/minimp3 -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + OBJECT_FILE_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target sfml-audio + + +############################################# +# Link the static library _deps\sfml-build\lib\libsfml-audio-s-d.a + +build _deps/sfml-build/lib/libsfml-audio-s-d.a: CXX_STATIC_LIBRARY_LINKER__sfml-audio_Debug _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/AudioResource.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/AudioDevice.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/Listener.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/Miniaudio.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/MiniaudioUtils.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/Music.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/PlaybackDevice.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/Sound.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundBuffer.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundBufferRecorder.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/InputSoundFile.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/OutputSoundFile.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundRecorder.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundSource.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundStream.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundFileFactory.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundFileReaderFlac.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundFileReaderMp3.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundFileReaderOgg.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundFileReaderWav.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundFileWriterFlac.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundFileWriterOgg.cpp.obj _deps/sfml-build/src/SFML/Audio/CMakeFiles/sfml-audio.dir/SoundFileWriterWav.cpp.obj || _deps/sfml-build/lib/libFLACd.a _deps/sfml-build/lib/liboggd.a _deps/sfml-build/lib/libsfml-system-s-d.a _deps/sfml-build/lib/libvorbisd.a _deps/sfml-build/lib/libvorbisencd.a _deps/sfml-build/lib/libvorbisfiled.a + LANGUAGE_COMPILE_FLAGS = -g + OBJECT_DIR = _deps\sfml-build\src\SFML\Audio\CMakeFiles\sfml-audio.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = _deps\sfml-build\lib\libsfml-audio-s-d.a + TARGET_PDB = sfml-audio-s-d.a.dbg + + +############################################# +# Utility command for package + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/package.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/Audio/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Audio/package: phony _deps/sfml-build/src/SFML/Audio/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackSourceConfig.cmake C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Audio/package_source: phony _deps/sfml-build/src/SFML/Audio/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Audio && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build _deps/sfml-build/src/SFML/Audio/edit_cache: phony _deps/sfml-build/src/SFML/Audio/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Audio && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2 -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Audio/rebuild_cache: phony _deps/sfml-build/src/SFML/Audio/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build _deps/sfml-build/src/SFML/Audio/list_install_components: phony + + +############################################# +# Utility command for install + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/install.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/Audio/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Audio && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Audio/install: phony _deps/sfml-build/src/SFML/Audio/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/install/local.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/Audio/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Audio && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Audio/install/local: phony _deps/sfml-build/src/SFML/Audio/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build _deps/sfml-build/src/SFML/Audio/CMakeFiles/install/strip.util: CUSTOM_COMMAND _deps/sfml-build/src/SFML/Audio/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\sfml-build\src\SFML\Audio && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build _deps/sfml-build/src/SFML/Audio/install/strip: phony _deps/sfml-build/src/SFML/Audio/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target ogg + + +############################################# +# Order-only phony target for ogg + +build cmake_object_order_depends_target_ogg: phony || . + +build _deps/ogg-build/CMakeFiles/ogg.dir/src/bitwise.c.obj: C_COMPILER__ogg_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/src/bitwise.c || cmake_object_order_depends_target_ogg + DEP_FILE = _deps\ogg-build\CMakeFiles\ogg.dir\src\bitwise.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\ogg-build\CMakeFiles\ogg.dir + OBJECT_FILE_DIR = _deps\ogg-build\CMakeFiles\ogg.dir\src + +build _deps/ogg-build/CMakeFiles/ogg.dir/src/framing.c.obj: C_COMPILER__ogg_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/src/framing.c || cmake_object_order_depends_target_ogg + DEP_FILE = _deps\ogg-build\CMakeFiles\ogg.dir\src\framing.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\ogg-build\CMakeFiles\ogg.dir + OBJECT_FILE_DIR = _deps\ogg-build\CMakeFiles\ogg.dir\src + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target ogg + + +############################################# +# Link the static library _deps\sfml-build\lib\liboggd.a + +build _deps/sfml-build/lib/liboggd.a: C_STATIC_LIBRARY_LINKER__ogg_Debug _deps/ogg-build/CMakeFiles/ogg.dir/src/bitwise.c.obj _deps/ogg-build/CMakeFiles/ogg.dir/src/framing.c.obj + LANGUAGE_COMPILE_FLAGS = -g + OBJECT_DIR = _deps\ogg-build\CMakeFiles\ogg.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = _deps\sfml-build\lib\liboggd.a + TARGET_PDB = oggd.a.dbg + + +############################################# +# Utility command for package + +build _deps/ogg-build/CMakeFiles/package.util: CUSTOM_COMMAND _deps/ogg-build/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build _deps/ogg-build/package: phony _deps/ogg-build/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build _deps/ogg-build/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackSourceConfig.cmake C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build _deps/ogg-build/package_source: phony _deps/ogg-build/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build _deps/ogg-build/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\ogg-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build _deps/ogg-build/edit_cache: phony _deps/ogg-build/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build _deps/ogg-build/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\ogg-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2 -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _deps/ogg-build/rebuild_cache: phony _deps/ogg-build/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build _deps/ogg-build/list_install_components: phony + + +############################################# +# Utility command for install + +build _deps/ogg-build/CMakeFiles/install.util: CUSTOM_COMMAND _deps/ogg-build/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\ogg-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build _deps/ogg-build/install: phony _deps/ogg-build/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build _deps/ogg-build/CMakeFiles/install/local.util: CUSTOM_COMMAND _deps/ogg-build/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\ogg-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build _deps/ogg-build/install/local: phony _deps/ogg-build/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build _deps/ogg-build/CMakeFiles/install/strip.util: CUSTOM_COMMAND _deps/ogg-build/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\ogg-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build _deps/ogg-build/install/strip: phony _deps/ogg-build/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for package + +build _deps/flac-build/CMakeFiles/package.util: CUSTOM_COMMAND _deps/flac-build/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build _deps/flac-build/package: phony _deps/flac-build/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build _deps/flac-build/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackSourceConfig.cmake C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build _deps/flac-build/package_source: phony _deps/flac-build/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build _deps/flac-build/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build _deps/flac-build/edit_cache: phony _deps/flac-build/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build _deps/flac-build/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2 -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _deps/flac-build/rebuild_cache: phony _deps/flac-build/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build _deps/flac-build/list_install_components: phony + + +############################################# +# Utility command for install + +build _deps/flac-build/CMakeFiles/install.util: CUSTOM_COMMAND _deps/flac-build/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build _deps/flac-build/install: phony _deps/flac-build/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build _deps/flac-build/CMakeFiles/install/local.util: CUSTOM_COMMAND _deps/flac-build/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build _deps/flac-build/install/local: phony _deps/flac-build/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build _deps/flac-build/CMakeFiles/install/strip.util: CUSTOM_COMMAND _deps/flac-build/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build _deps/flac-build/install/strip: phony _deps/flac-build/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for package + +build _deps/flac-build/src/CMakeFiles/package.util: CUSTOM_COMMAND _deps/flac-build/src/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build _deps/flac-build/src/package: phony _deps/flac-build/src/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build _deps/flac-build/src/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackSourceConfig.cmake C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build _deps/flac-build/src/package_source: phony _deps/flac-build/src/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build _deps/flac-build/src/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build\src && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build _deps/flac-build/src/edit_cache: phony _deps/flac-build/src/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build _deps/flac-build/src/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build\src && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2 -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _deps/flac-build/src/rebuild_cache: phony _deps/flac-build/src/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build _deps/flac-build/src/list_install_components: phony + + +############################################# +# Utility command for install + +build _deps/flac-build/src/CMakeFiles/install.util: CUSTOM_COMMAND _deps/flac-build/src/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build\src && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build _deps/flac-build/src/install: phony _deps/flac-build/src/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build _deps/flac-build/src/CMakeFiles/install/local.util: CUSTOM_COMMAND _deps/flac-build/src/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build\src && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build _deps/flac-build/src/install/local: phony _deps/flac-build/src/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build _deps/flac-build/src/CMakeFiles/install/strip.util: CUSTOM_COMMAND _deps/flac-build/src/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build\src && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build _deps/flac-build/src/install/strip: phony _deps/flac-build/src/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target FLAC + + +############################################# +# Order-only phony target for FLAC + +build cmake_object_order_depends_target_FLAC: phony || cmake_object_order_depends_target_ogg + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/bitmath.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/bitmath.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\bitmath.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/bitreader.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/bitreader.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\bitreader.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/bitwriter.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/bitwriter.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\bitwriter.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/cpu.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/cpu.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\cpu.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/crc.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/crc.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\crc.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/fixed.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/fixed.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\fixed.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/fixed_intrin_sse2.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/fixed_intrin_sse2.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\fixed_intrin_sse2.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/fixed_intrin_ssse3.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/fixed_intrin_ssse3.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\fixed_intrin_ssse3.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/fixed_intrin_sse42.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/fixed_intrin_sse42.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\fixed_intrin_sse42.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/fixed_intrin_avx2.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/fixed_intrin_avx2.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\fixed_intrin_avx2.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/float.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/float.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\float.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/format.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/format.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\format.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/lpc.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/lpc.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\lpc.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/lpc_intrin_neon.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/lpc_intrin_neon.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\lpc_intrin_neon.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/lpc_intrin_sse2.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/lpc_intrin_sse2.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\lpc_intrin_sse2.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/lpc_intrin_sse41.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/lpc_intrin_sse41.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\lpc_intrin_sse41.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/lpc_intrin_avx2.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/lpc_intrin_avx2.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\lpc_intrin_avx2.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/lpc_intrin_fma.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/lpc_intrin_fma.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\lpc_intrin_fma.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/md5.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/md5.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\md5.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/memory.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/memory.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\memory.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/metadata_iterators.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/metadata_iterators.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\metadata_iterators.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/metadata_object.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/metadata_object.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\metadata_object.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/stream_decoder.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/stream_decoder.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\stream_decoder.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/stream_encoder.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/stream_encoder.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\stream_encoder.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/stream_encoder_intrin_sse2.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/stream_encoder_intrin_sse2.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\stream_encoder_intrin_sse2.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/stream_encoder_intrin_ssse3.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/stream_encoder_intrin_ssse3.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\stream_encoder_intrin_ssse3.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/stream_encoder_intrin_avx2.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/stream_encoder_intrin_avx2.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\stream_encoder_intrin_avx2.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/stream_encoder_framing.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/stream_encoder_framing.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\stream_encoder_framing.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/version.rc.obj: RC_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/version.rc || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\version.rc.obj.d + INCLUDES = -I C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -I C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -I C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -I C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -I C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/window.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/window.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\window.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/__/share/win_utf8_io/win_utf8_io.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/share/win_utf8_io/win_utf8_io.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\__\share\win_utf8_io\win_utf8_io.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\__\share\win_utf8_io + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/ogg_decoder_aspect.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/ogg_decoder_aspect.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\ogg_decoder_aspect.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/ogg_encoder_aspect.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/ogg_encoder_aspect.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\ogg_encoder_aspect.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/ogg_helper.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/ogg_helper.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\ogg_helper.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + +build _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/ogg_mapping.c.obj: C_COMPILER__FLAC_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/ogg_mapping.c || cmake_object_order_depends_target_FLAC + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -DNDEBUG -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir\ogg_mapping.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement -fassociative-math -fno-signed-zeros -fno-trapping-math -freciprocal-math + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + OBJECT_FILE_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target FLAC + + +############################################# +# Link the static library _deps\sfml-build\lib\libFLACd.a + +build _deps/sfml-build/lib/libFLACd.a: C_STATIC_LIBRARY_LINKER__FLAC_Debug _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/bitmath.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/bitreader.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/bitwriter.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/cpu.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/crc.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/fixed.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/fixed_intrin_sse2.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/fixed_intrin_ssse3.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/fixed_intrin_sse42.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/fixed_intrin_avx2.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/float.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/format.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/lpc.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/lpc_intrin_neon.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/lpc_intrin_sse2.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/lpc_intrin_sse41.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/lpc_intrin_avx2.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/lpc_intrin_fma.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/md5.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/memory.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/metadata_iterators.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/metadata_object.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/stream_decoder.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/stream_encoder.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/stream_encoder_intrin_sse2.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/stream_encoder_intrin_ssse3.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/stream_encoder_intrin_avx2.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/stream_encoder_framing.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/version.rc.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/window.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/__/share/win_utf8_io/win_utf8_io.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/ogg_decoder_aspect.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/ogg_encoder_aspect.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/ogg_helper.c.obj _deps/flac-build/src/libFLAC/CMakeFiles/FLAC.dir/ogg_mapping.c.obj || _deps/sfml-build/lib/liboggd.a + LANGUAGE_COMPILE_FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g + OBJECT_DIR = _deps\flac-build\src\libFLAC\CMakeFiles\FLAC.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = _deps\sfml-build\lib\libFLACd.a + TARGET_PDB = FLACd.a.dbg + + +############################################# +# Utility command for package + +build _deps/flac-build/src/libFLAC/CMakeFiles/package.util: CUSTOM_COMMAND _deps/flac-build/src/libFLAC/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build _deps/flac-build/src/libFLAC/package: phony _deps/flac-build/src/libFLAC/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build _deps/flac-build/src/libFLAC/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackSourceConfig.cmake C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build _deps/flac-build/src/libFLAC/package_source: phony _deps/flac-build/src/libFLAC/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build _deps/flac-build/src/libFLAC/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build\src\libFLAC && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build _deps/flac-build/src/libFLAC/edit_cache: phony _deps/flac-build/src/libFLAC/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build _deps/flac-build/src/libFLAC/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build\src\libFLAC && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2 -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _deps/flac-build/src/libFLAC/rebuild_cache: phony _deps/flac-build/src/libFLAC/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build _deps/flac-build/src/libFLAC/list_install_components: phony + + +############################################# +# Utility command for install + +build _deps/flac-build/src/libFLAC/CMakeFiles/install.util: CUSTOM_COMMAND _deps/flac-build/src/libFLAC/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build\src\libFLAC && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build _deps/flac-build/src/libFLAC/install: phony _deps/flac-build/src/libFLAC/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build _deps/flac-build/src/libFLAC/CMakeFiles/install/local.util: CUSTOM_COMMAND _deps/flac-build/src/libFLAC/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build\src\libFLAC && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build _deps/flac-build/src/libFLAC/install/local: phony _deps/flac-build/src/libFLAC/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build _deps/flac-build/src/libFLAC/CMakeFiles/install/strip.util: CUSTOM_COMMAND _deps/flac-build/src/libFLAC/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build\src\libFLAC && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build _deps/flac-build/src/libFLAC/install/strip: phony _deps/flac-build/src/libFLAC/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for EXECUTABLE target benchmark_residual + + +############################################# +# Order-only phony target for benchmark_residual + +build cmake_object_order_depends_target_benchmark_residual: phony || cmake_object_order_depends_target_FLAC cmake_object_order_depends_target_ogg + +build _deps/flac-build/microbench/CMakeFiles/benchmark_residual.dir/benchmark_residual.c.obj: C_COMPILER__benchmark_residual_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/microbench/benchmark_residual.c || cmake_object_order_depends_target_benchmark_residual + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\microbench\CMakeFiles\benchmark_residual.dir\benchmark_residual.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\microbench\CMakeFiles\benchmark_residual.dir + OBJECT_FILE_DIR = _deps\flac-build\microbench\CMakeFiles\benchmark_residual.dir + +build _deps/flac-build/microbench/CMakeFiles/benchmark_residual.dir/util.c.obj: C_COMPILER__benchmark_residual_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/microbench/util.c || cmake_object_order_depends_target_benchmark_residual + DEFINES = -DFLAC__NO_DLL -DFLAC__OVERFLOW_DETECT -DHAVE_CONFIG_H -D_DARWIN_C_SOURCE -D_POSIX_PTHREAD_SEMANTICS -D_TANDEM_SOURCE -D__STDC_WANT_IEC_60559_BFP_EXT__ -D__STDC_WANT_IEC_60559_DFP_EXT__ -D__STDC_WANT_IEC_60559_FUNCS_EXT__ -D__STDC_WANT_IEC_60559_TYPES_EXT__ -D__STDC_WANT_LIB_EXT2__ -D__STDC_WANT_MATH_SPEC_FUNCS__ + DEP_FILE = _deps\flac-build\microbench\CMakeFiles\benchmark_residual.dir\util.c.obj.d + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g -fdiagnostics-color=always -Wdeclaration-after-statement + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/src/libFLAC/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\flac-build\microbench\CMakeFiles\benchmark_residual.dir + OBJECT_FILE_DIR = _deps\flac-build\microbench\CMakeFiles\benchmark_residual.dir + + +# ============================================================================= +# Link build statements for EXECUTABLE target benchmark_residual + + +############################################# +# Link the executable objs\benchmark_residual.exe + +build objs/benchmark_residual.exe: C_EXECUTABLE_LINKER__benchmark_residual_Debug _deps/flac-build/microbench/CMakeFiles/benchmark_residual.dir/benchmark_residual.c.obj _deps/flac-build/microbench/CMakeFiles/benchmark_residual.dir/util.c.obj | _deps/sfml-build/lib/libFLACd.a _deps/sfml-build/lib/liboggd.a || _deps/sfml-build/lib/libFLACd.a _deps/sfml-build/lib/liboggd.a + FLAGS = -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline -g + LINK_LIBRARIES = _deps/sfml-build/lib/libFLACd.a -lm _deps/sfml-build/lib/liboggd.a -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + OBJECT_DIR = _deps\flac-build\microbench\CMakeFiles\benchmark_residual.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = objs\benchmark_residual.exe + TARGET_IMPLIB = _deps\flac-build\microbench\libbenchmark_residual.dll.a + TARGET_PDB = benchmark_residual.exe.dbg + + +############################################# +# Utility command for package + +build _deps/flac-build/microbench/CMakeFiles/package.util: CUSTOM_COMMAND _deps/flac-build/microbench/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build _deps/flac-build/microbench/package: phony _deps/flac-build/microbench/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build _deps/flac-build/microbench/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackSourceConfig.cmake C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build _deps/flac-build/microbench/package_source: phony _deps/flac-build/microbench/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build _deps/flac-build/microbench/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build\microbench && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build _deps/flac-build/microbench/edit_cache: phony _deps/flac-build/microbench/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build _deps/flac-build/microbench/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build\microbench && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2 -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _deps/flac-build/microbench/rebuild_cache: phony _deps/flac-build/microbench/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build _deps/flac-build/microbench/list_install_components: phony + + +############################################# +# Utility command for install + +build _deps/flac-build/microbench/CMakeFiles/install.util: CUSTOM_COMMAND _deps/flac-build/microbench/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build\microbench && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build _deps/flac-build/microbench/install: phony _deps/flac-build/microbench/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build _deps/flac-build/microbench/CMakeFiles/install/local.util: CUSTOM_COMMAND _deps/flac-build/microbench/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build\microbench && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build _deps/flac-build/microbench/install/local: phony _deps/flac-build/microbench/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build _deps/flac-build/microbench/CMakeFiles/install/strip.util: CUSTOM_COMMAND _deps/flac-build/microbench/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\flac-build\microbench && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build _deps/flac-build/microbench/install/strip: phony _deps/flac-build/microbench/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-src/src/SFML/Audio/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for package + +build _deps/vorbis-build/CMakeFiles/package.util: CUSTOM_COMMAND _deps/vorbis-build/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build _deps/vorbis-build/package: phony _deps/vorbis-build/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build _deps/vorbis-build/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackSourceConfig.cmake C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build _deps/vorbis-build/package_source: phony _deps/vorbis-build/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build _deps/vorbis-build/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build _deps/vorbis-build/edit_cache: phony _deps/vorbis-build/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build _deps/vorbis-build/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2 -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _deps/vorbis-build/rebuild_cache: phony _deps/vorbis-build/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build _deps/vorbis-build/list_install_components: phony + + +############################################# +# Utility command for install + +build _deps/vorbis-build/CMakeFiles/install.util: CUSTOM_COMMAND _deps/vorbis-build/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build _deps/vorbis-build/install: phony _deps/vorbis-build/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build _deps/vorbis-build/CMakeFiles/install/local.util: CUSTOM_COMMAND _deps/vorbis-build/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build _deps/vorbis-build/install/local: phony _deps/vorbis-build/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build _deps/vorbis-build/CMakeFiles/install/strip.util: CUSTOM_COMMAND _deps/vorbis-build/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-build && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build _deps/vorbis-build/install/strip: phony _deps/vorbis-build/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target vorbis + + +############################################# +# Order-only phony target for vorbis + +build cmake_object_order_depends_target_vorbis: phony || cmake_object_order_depends_target_ogg + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/mdct.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/mdct.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\mdct.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/smallft.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/smallft.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\smallft.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/block.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/block.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\block.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/envelope.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/envelope.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\envelope.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/window.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/window.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\window.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/lsp.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/lsp.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\lsp.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/lpc.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/lpc.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\lpc.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/analysis.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/analysis.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\analysis.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/synthesis.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/synthesis.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\synthesis.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/psy.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/psy.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\psy.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/info.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/info.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\info.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/floor1.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/floor1.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\floor1.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/floor0.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/floor0.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\floor0.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/res0.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/res0.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\res0.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/mapping0.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/mapping0.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\mapping0.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/registry.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/registry.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\registry.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/codebook.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/codebook.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\codebook.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/sharedbook.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/sharedbook.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\sharedbook.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/lookup.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/lookup.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\lookup.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/bitrate.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/bitrate.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\bitrate.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + +build _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/vorbisenc.c.obj: C_COMPILER__vorbis_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/vorbisenc.c || cmake_object_order_depends_target_vorbis + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir\vorbisenc.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target vorbis + + +############################################# +# Link the static library _deps\sfml-build\lib\libvorbisd.a + +build _deps/sfml-build/lib/libvorbisd.a: C_STATIC_LIBRARY_LINKER__vorbis_Debug _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/mdct.c.obj _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/smallft.c.obj _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/block.c.obj _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/envelope.c.obj _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/window.c.obj _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/lsp.c.obj _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/lpc.c.obj _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/analysis.c.obj _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/synthesis.c.obj _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/psy.c.obj _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/info.c.obj _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/floor1.c.obj _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/floor0.c.obj _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/res0.c.obj _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/mapping0.c.obj _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/registry.c.obj _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/codebook.c.obj _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/sharedbook.c.obj _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/lookup.c.obj _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/bitrate.c.obj _deps/vorbis-build/lib/CMakeFiles/vorbis.dir/vorbisenc.c.obj || _deps/sfml-build/lib/liboggd.a + LANGUAGE_COMPILE_FLAGS = -g + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbis.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = _deps\sfml-build\lib\libvorbisd.a + TARGET_PDB = vorbisd.a.dbg + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target vorbisenc + + +############################################# +# Order-only phony target for vorbisenc + +build cmake_object_order_depends_target_vorbisenc: phony || cmake_object_order_depends_target_ogg cmake_object_order_depends_target_vorbis + +build _deps/vorbis-build/lib/CMakeFiles/vorbisenc.dir/vorbisenc.c.obj: C_COMPILER__vorbisenc_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/vorbisenc.c || cmake_object_order_depends_target_vorbisenc + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbisenc.dir\vorbisenc.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbisenc.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbisenc.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target vorbisenc + + +############################################# +# Link the static library _deps\sfml-build\lib\libvorbisencd.a + +build _deps/sfml-build/lib/libvorbisencd.a: C_STATIC_LIBRARY_LINKER__vorbisenc_Debug _deps/vorbis-build/lib/CMakeFiles/vorbisenc.dir/vorbisenc.c.obj || _deps/sfml-build/lib/liboggd.a _deps/sfml-build/lib/libvorbisd.a + LANGUAGE_COMPILE_FLAGS = -g + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbisenc.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = _deps\sfml-build\lib\libvorbisencd.a + TARGET_PDB = vorbisencd.a.dbg + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target vorbisfile + + +############################################# +# Order-only phony target for vorbisfile + +build cmake_object_order_depends_target_vorbisfile: phony || cmake_object_order_depends_target_ogg cmake_object_order_depends_target_vorbis + +build _deps/vorbis-build/lib/CMakeFiles/vorbisfile.dir/vorbisfile.c.obj: C_COMPILER__vorbisfile_unscanned_Debug C$:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/lib/vorbisfile.c || cmake_object_order_depends_target_vorbisfile + DEP_FILE = _deps\vorbis-build\lib\CMakeFiles\vorbisfile.dir\vorbisfile.c.obj.d + FLAGS = -g -fdiagnostics-color=always + INCLUDES = -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-src/include -isystem C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build/include + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbisfile.dir + OBJECT_FILE_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbisfile.dir + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target vorbisfile + + +############################################# +# Link the static library _deps\sfml-build\lib\libvorbisfiled.a + +build _deps/sfml-build/lib/libvorbisfiled.a: C_STATIC_LIBRARY_LINKER__vorbisfile_Debug _deps/vorbis-build/lib/CMakeFiles/vorbisfile.dir/vorbisfile.c.obj || _deps/sfml-build/lib/liboggd.a _deps/sfml-build/lib/libvorbisd.a + LANGUAGE_COMPILE_FLAGS = -g + OBJECT_DIR = _deps\vorbis-build\lib\CMakeFiles\vorbisfile.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = _deps\sfml-build\lib\libvorbisfiled.a + TARGET_PDB = vorbisfiled.a.dbg + + +############################################# +# Utility command for package + +build _deps/vorbis-build/lib/CMakeFiles/package.util: CUSTOM_COMMAND _deps/vorbis-build/lib/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackConfig.cmake" + DESC = Run CPack packaging tool... + pool = console + restat = 1 + +build _deps/vorbis-build/lib/package: phony _deps/vorbis-build/lib/CMakeFiles/package.util + + +############################################# +# Utility command for package_source + +build _deps/vorbis-build/lib/CMakeFiles/package_source.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cpack.exe" --config ./CPackSourceConfig.cmake C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/CPackSourceConfig.cmake" + DESC = Run CPack packaging tool for source... + pool = console + restat = 1 + +build _deps/vorbis-build/lib/package_source: phony _deps/vorbis-build/lib/CMakeFiles/package_source.util + + +############################################# +# Utility command for edit_cache + +build _deps/vorbis-build/lib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-build\lib && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build _deps/vorbis-build/lib/edit_cache: phony _deps/vorbis-build/lib/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build _deps/vorbis-build/lib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-build\lib && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" --regenerate-during-build -SC:\Users\Пашок\CLionProjects\MiniHW2 -BC:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build _deps/vorbis-build/lib/rebuild_cache: phony _deps/vorbis-build/lib/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build _deps/vorbis-build/lib/list_install_components: phony + + +############################################# +# Utility command for install + +build _deps/vorbis-build/lib/CMakeFiles/install.util: CUSTOM_COMMAND _deps/vorbis-build/lib/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-build\lib && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build _deps/vorbis-build/lib/install: phony _deps/vorbis-build/lib/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build _deps/vorbis-build/lib/CMakeFiles/install/local.util: CUSTOM_COMMAND _deps/vorbis-build/lib/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-build\lib && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build _deps/vorbis-build/lib/install/local: phony _deps/vorbis-build/lib/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build _deps/vorbis-build/lib/CMakeFiles/install/strip.util: CUSTOM_COMMAND _deps/vorbis-build/lib/all + COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\Users\Пашок\CLionProjects\MiniHW2\cmake-build-debug\_deps\vorbis-build\lib && "G:\CLion 2024.3\bin\cmake\win\x64\bin\cmake.exe" -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build _deps/vorbis-build/lib/install/strip: phony _deps/vorbis-build/lib/CMakeFiles/install/strip.util + +# ============================================================================= +# Target aliases. + +build FLAC: phony _deps/sfml-build/lib/libFLACd.a + +build MiniHW2: phony MiniHW2.exe + +build benchmark_residual: phony objs/benchmark_residual.exe + +build benchmark_residual.exe: phony objs/benchmark_residual.exe + +build freetype: phony _deps/sfml-build/lib/libfreetyped.a + +build libFLACd.a: phony _deps/sfml-build/lib/libFLACd.a + +build libfreetyped.a: phony _deps/sfml-build/lib/libfreetyped.a + +build liboggd.a: phony _deps/sfml-build/lib/liboggd.a + +build libsfml-audio-s-d.a: phony _deps/sfml-build/lib/libsfml-audio-s-d.a + +build libsfml-graphics-s-d.a: phony _deps/sfml-build/lib/libsfml-graphics-s-d.a + +build libsfml-main-s-d.a: phony _deps/sfml-build/lib/libsfml-main-s-d.a + +build libsfml-network-s-d.a: phony _deps/sfml-build/lib/libsfml-network-s-d.a + +build libsfml-system-s-d.a: phony _deps/sfml-build/lib/libsfml-system-s-d.a + +build libsfml-window-s-d.a: phony _deps/sfml-build/lib/libsfml-window-s-d.a + +build libvorbisd.a: phony _deps/sfml-build/lib/libvorbisd.a + +build libvorbisencd.a: phony _deps/sfml-build/lib/libvorbisencd.a + +build libvorbisfiled.a: phony _deps/sfml-build/lib/libvorbisfiled.a + +build ogg: phony _deps/sfml-build/lib/liboggd.a + +build sfml-audio: phony _deps/sfml-build/lib/libsfml-audio-s-d.a + +build sfml-graphics: phony _deps/sfml-build/lib/libsfml-graphics-s-d.a + +build sfml-main: phony _deps/sfml-build/lib/libsfml-main-s-d.a + +build sfml-network: phony _deps/sfml-build/lib/libsfml-network-s-d.a + +build sfml-system: phony _deps/sfml-build/lib/libsfml-system-s-d.a + +build sfml-window: phony _deps/sfml-build/lib/libsfml-window-s-d.a + +build vorbis: phony _deps/sfml-build/lib/libvorbisd.a + +build vorbisenc: phony _deps/sfml-build/lib/libvorbisencd.a + +build vorbisfile: phony _deps/sfml-build/lib/libvorbisfiled.a + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug + +build all: phony MiniHW2.exe + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build + +build _deps/flac-build/all: phony _deps/flac-build/src/all _deps/flac-build/microbench/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/microbench + +build _deps/flac-build/microbench/all: phony objs/benchmark_residual.exe + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src + +build _deps/flac-build/src/all: phony _deps/flac-build/src/libFLAC/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/flac-build/src/libFLAC + +build _deps/flac-build/src/libFLAC/all: phony _deps/sfml-build/lib/libFLACd.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/freetype-build + +build _deps/freetype-build/all: phony _deps/sfml-build/lib/libfreetyped.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/ogg-build + +build _deps/ogg-build/all: phony _deps/sfml-build/lib/liboggd.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build + +build _deps/sfml-build/all: phony _deps/sfml-build/src/SFML/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML + +build _deps/sfml-build/src/SFML/all: phony _deps/sfml-build/src/SFML/System/all _deps/sfml-build/src/SFML/Main/all _deps/sfml-build/src/SFML/Window/all _deps/sfml-build/src/SFML/Network/all _deps/sfml-build/src/SFML/Graphics/all _deps/sfml-build/src/SFML/Audio/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Audio + +build _deps/sfml-build/src/SFML/Audio/all: phony _deps/sfml-build/lib/libsfml-audio-s-d.a _deps/ogg-build/all _deps/flac-build/all _deps/vorbis-build/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Graphics + +build _deps/sfml-build/src/SFML/Graphics/all: phony _deps/sfml-build/lib/libsfml-graphics-s-d.a _deps/freetype-build/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Main + +build _deps/sfml-build/src/SFML/Main/all: phony _deps/sfml-build/lib/libsfml-main-s-d.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Network + +build _deps/sfml-build/src/SFML/Network/all: phony _deps/sfml-build/lib/libsfml-network-s-d.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/System + +build _deps/sfml-build/src/SFML/System/all: phony _deps/sfml-build/lib/libsfml-system-s-d.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/sfml-build/src/SFML/Window + +build _deps/sfml-build/src/SFML/Window/all: phony _deps/sfml-build/lib/libsfml-window-s-d.a + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build + +build _deps/vorbis-build/all: phony _deps/vorbis-build/lib/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/_deps/vorbis-build/lib + +build _deps/vorbis-build/lib/all: phony _deps/sfml-build/lib/libvorbisd.a _deps/sfml-build/lib/libvorbisencd.a _deps/sfml-build/lib/libvorbisfiled.a + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | C$:/Users/Пашок/CLionProjects/MiniHW2/CMakeLists.txt 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 G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/BasicConfigVersion-AnyNewerVersion.cmake.in G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/BasicConfigVersion-SameMajorVersion.cmake.in G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCInformation.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXInformation.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDependentOption.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeGenericSystem.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeParseArguments.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeRCInformation.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CPack.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CPackComponent.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CTest.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CTestUseLaunchers.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckFunctionExists.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFile.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFileCXX.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFiles.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckLibraryExists.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckSymbolExists.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-C.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/PatchInfo.txt.in G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/RepositoryInfo.txt.in G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/UpdateInfo.txt.in G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/gitclone.cmake.in G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/gitupdate.cmake.in G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/stepscript.cmake.in G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FetchContent.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FetchContent/CMakeLists.cmake.in G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindGit.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindOpenGL.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageMessage.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPkgConfig.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindThreads.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/GNUInstallDirs.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-C-ABI.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-C.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-CXX-ABI.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-CXX.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-Initialize.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-windres.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/WindowsPaths.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/TestBigEndian.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Templates/CPackConfig.cmake.in _deps/flac-src/CMakeLists.txt _deps/flac-src/cmake/CheckA64NEON.cmake _deps/flac-src/cmake/CheckCPUArch.cmake _deps/flac-src/cmake/UseSystemExtensions.cmake _deps/flac-src/config.cmake.h.in _deps/flac-src/flac-config.cmake.in _deps/flac-src/microbench/CMakeLists.txt _deps/flac-src/src/CMakeLists.txt _deps/flac-src/src/libFLAC/CMakeLists.txt _deps/freetype-src/CMakeLists.txt _deps/ogg-src/CMakeLists.txt _deps/ogg-src/cmake/CheckSizes.cmake _deps/ogg-src/cmake/OggConfig.cmake.in _deps/ogg-src/include/ogg/config_types.h.in _deps/ogg-src/ogg.pc.in _deps/sfml-src/CMakeLists.txt _deps/sfml-src/cmake/CompilerWarnings.cmake _deps/sfml-src/cmake/Config.cmake _deps/sfml-src/cmake/Macros.cmake _deps/sfml-src/cmake/Mesa3D.cmake _deps/sfml-src/cmake/SFMLConfig.cmake.in _deps/sfml-src/src/SFML/Audio/CMakeLists.txt _deps/sfml-src/src/SFML/Audio/Dependencies.cmake.in _deps/sfml-src/src/SFML/CMakeLists.txt _deps/sfml-src/src/SFML/Graphics/CMakeLists.txt _deps/sfml-src/src/SFML/Graphics/Dependencies.cmake.in _deps/sfml-src/src/SFML/Main/CMakeLists.txt _deps/sfml-src/src/SFML/Network/CMakeLists.txt _deps/sfml-src/src/SFML/System/CMakeLists.txt _deps/sfml-src/src/SFML/System/Dependencies.cmake.in _deps/sfml-src/src/SFML/Window/CMakeLists.txt _deps/sfml-src/src/SFML/Window/Dependencies.cmake.in _deps/vorbis-src/CMakeLists.txt _deps/vorbis-src/cmake/VorbisConfig.cmake.in _deps/vorbis-src/lib/CMakeLists.txt _deps/vorbis-src/vorbis.pc.in _deps/vorbis-src/vorbisenc.pc.in _deps/vorbis-src/vorbisfile.pc.in + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build C$:/Users/Пашок/CLionProjects/MiniHW2/CMakeLists.txt 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 G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/BasicConfigVersion-AnyNewerVersion.cmake.in G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/BasicConfigVersion-SameMajorVersion.cmake.in G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCInformation.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCXXInformation.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeDependentOption.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeGenericSystem.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeParseArguments.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeRCInformation.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CPack.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CPackComponent.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CTest.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CTestUseLaunchers.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCCompilerFlag.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCSourceCompiles.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckFunctionExists.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFile.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFileCXX.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckIncludeFiles.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckLibraryExists.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckSymbolExists.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/CheckTypeSize.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-C.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Compiler/GNU.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/PatchInfo.txt.in G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/RepositoryInfo.txt.in G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/UpdateInfo.txt.in G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/gitclone.cmake.in G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/gitupdate.cmake.in G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/shared_internal_commands.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/ExternalProject/stepscript.cmake.in G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FetchContent.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FetchContent/CMakeLists.cmake.in G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindGit.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindOpenGL.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPackageMessage.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindPkgConfig.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/FindThreads.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/GNUInstallDirs.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-C-ABI.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-C.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-CXX-ABI.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU-CXX.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-GNU.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-Initialize.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows-windres.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/Windows.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/Platform/WindowsPaths.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/TestBigEndian.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake G$:/CLion$ 2024.3/bin/cmake/win/x64/share/cmake-3.30/Templates/CPackConfig.cmake.in _deps/flac-src/CMakeLists.txt _deps/flac-src/cmake/CheckA64NEON.cmake _deps/flac-src/cmake/CheckCPUArch.cmake _deps/flac-src/cmake/UseSystemExtensions.cmake _deps/flac-src/config.cmake.h.in _deps/flac-src/flac-config.cmake.in _deps/flac-src/microbench/CMakeLists.txt _deps/flac-src/src/CMakeLists.txt _deps/flac-src/src/libFLAC/CMakeLists.txt _deps/freetype-src/CMakeLists.txt _deps/ogg-src/CMakeLists.txt _deps/ogg-src/cmake/CheckSizes.cmake _deps/ogg-src/cmake/OggConfig.cmake.in _deps/ogg-src/include/ogg/config_types.h.in _deps/ogg-src/ogg.pc.in _deps/sfml-src/CMakeLists.txt _deps/sfml-src/cmake/CompilerWarnings.cmake _deps/sfml-src/cmake/Config.cmake _deps/sfml-src/cmake/Macros.cmake _deps/sfml-src/cmake/Mesa3D.cmake _deps/sfml-src/cmake/SFMLConfig.cmake.in _deps/sfml-src/src/SFML/Audio/CMakeLists.txt _deps/sfml-src/src/SFML/Audio/Dependencies.cmake.in _deps/sfml-src/src/SFML/CMakeLists.txt _deps/sfml-src/src/SFML/Graphics/CMakeLists.txt _deps/sfml-src/src/SFML/Graphics/Dependencies.cmake.in _deps/sfml-src/src/SFML/Main/CMakeLists.txt _deps/sfml-src/src/SFML/Network/CMakeLists.txt _deps/sfml-src/src/SFML/System/CMakeLists.txt _deps/sfml-src/src/SFML/System/Dependencies.cmake.in _deps/sfml-src/src/SFML/Window/CMakeLists.txt _deps/sfml-src/src/SFML/Window/Dependencies.cmake.in _deps/vorbis-src/CMakeLists.txt _deps/vorbis-src/cmake/VorbisConfig.cmake.in _deps/vorbis-src/lib/CMakeLists.txt _deps/vorbis-src/vorbis.pc.in _deps/vorbis-src/vorbisenc.pc.in _deps/vorbis-src/vorbisfile.pc.in: 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/sem2/fedotow-p/MiniHW2/cmake-build-debug/cmake_install.cmake b/sem2/fedotow-p/MiniHW2/cmake-build-debug/cmake_install.cmake new file mode 100644 index 00000000..3b91835b --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/cmake-build-debug/cmake_install.cmake @@ -0,0 +1,57 @@ +# Install script for directory: C:/Users/Пашок/CLionProjects/MiniHW2 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/MiniHW2") +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 "G:/CLion 2024.3/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:/Users/Пашок/CLionProjects/MiniHW2/cmake-build-debug/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/enemy.png b/sem2/fedotow-p/MiniHW2/cmake-build-debug/enemy.png new file mode 100644 index 00000000..c1f09856 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/enemy.png differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/forest.png b/sem2/fedotow-p/MiniHW2/cmake-build-debug/forest.png new file mode 100644 index 00000000..36b785b2 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/forest.png differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/grass.png b/sem2/fedotow-p/MiniHW2/cmake-build-debug/grass.png new file mode 100644 index 00000000..b7105678 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/grass.png differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/hide.png b/sem2/fedotow-p/MiniHW2/cmake-build-debug/hide.png new file mode 100644 index 00000000..fa7fa127 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/hide.png differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/hill.png b/sem2/fedotow-p/MiniHW2/cmake-build-debug/hill.png new file mode 100644 index 00000000..0ca25d6e Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/hill.png differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/sand.png b/sem2/fedotow-p/MiniHW2/cmake-build-debug/sand.png new file mode 100644 index 00000000..93f1e38d Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/sand.png differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/snow.png b/sem2/fedotow-p/MiniHW2/cmake-build-debug/snow.png new file mode 100644 index 00000000..67e5ba95 Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/snow.png differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/soup.png b/sem2/fedotow-p/MiniHW2/cmake-build-debug/soup.png new file mode 100644 index 00000000..541fec4c Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/soup.png differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/stone.png b/sem2/fedotow-p/MiniHW2/cmake-build-debug/stone.png new file mode 100644 index 00000000..70f44a7c Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/stone.png differ diff --git a/sem2/fedotow-p/MiniHW2/cmake-build-debug/water.png b/sem2/fedotow-p/MiniHW2/cmake-build-debug/water.png new file mode 100644 index 00000000..0d55454c Binary files /dev/null and b/sem2/fedotow-p/MiniHW2/cmake-build-debug/water.png differ diff --git a/sem2/fedotow-p/MiniHW2/main.cpp b/sem2/fedotow-p/MiniHW2/main.cpp new file mode 100644 index 00000000..c5b91c64 --- /dev/null +++ b/sem2/fedotow-p/MiniHW2/main.cpp @@ -0,0 +1,220 @@ +#include +#include +#include + +// (V) 1. M x N двумерное поле с тайлами(в примере 10 x 10) +// (V) 2. Скрытые тайлы -> открытые с эвентами +// (X) 3. эвенты должны отображаться, + Логика +// (X) 4. Под каждым тайлом с вероятность в 10% есть консервы, +// при вскрытии тайла -> восст. сытость +// (V) 5. Открыть M x N тайлов (все тайлы) для победы +// (V) 6. Экран победы + экран поражения +// (V) 7. За каждое открытие тайла теряем 1 сытость. Сытость равно 0, +// тогда поражение, + отображать сытость +// (V) 8. Начальное значени сытости - 25 + +#define CELLSIZE_M 10 +#define CELLSIZE_N 10 +#define CHANCE_FOOD 10 +#define CHANCE_ENEMY 10 + + +#define ENERGY_MAX 100 +#define HP_MAX 20 + +#define CELLSIZE_SCREEN 100.f + +enum CellType { + Type_Grass, + Type_Hill, + Type_Forest, + Type_Stone, + Type_Sand, + Type_Snow, + Type_Water, + Type_End +}; +enum TextureType { + Texture_Grass, + Texture_Hill, + Texture_Forest, + Texture_Stone, + Texture_Sand, + Texture_Snow, + Texture_Water, + Texture_Hide, + Texture_Soup, + Texture_Enemy, + Texture_End }; + +struct Cell { + bool isHidden; + bool isFood; + bool isEnemy; + CellType cellType; +}; + +bool isWinOfGame(const Cell cells[CELLSIZE_M][CELLSIZE_N]) { + bool winCondition = true; + for (int x = 0; x < CELLSIZE_M; x++) { + for (int y = 0; y < CELLSIZE_N; y++) { + if (cells[x][y].isHidden) { + winCondition = false; + break; + } + } + } + return winCondition; +} + +bool isLoseOfGame(const int& energy, const int& hp) { + return energy <= 0 or hp <= 0; +} + +void clickTile(int& energy, int& hp, + const sf::Vector2i & mouseCoord, + Cell cells[CELLSIZE_M][CELLSIZE_N], + sf::RectangleShape shapes[CELLSIZE_M][CELLSIZE_N], + sf::Texture textures[TextureType::Texture_End]) { + + const int x = mouseCoord.x < 0 ? + 0 : + mouseCoord.x > CELLSIZE_SCREEN * CELLSIZE_M ? + CELLSIZE_M : + mouseCoord.x / CELLSIZE_SCREEN; + + const int y = mouseCoord.y < 0 ? + 0 : + mouseCoord.y > CELLSIZE_SCREEN * CELLSIZE_N ? + CELLSIZE_N : + mouseCoord.y / CELLSIZE_SCREEN; + + cells[x][y].isHidden = false; + + if (cells[x][y].isFood) { + shapes[x][y].setTexture(&textures[TextureType::Texture_Soup]); + energy = ENERGY_MAX; + if (hp <= (HP_MAX - 2)) + hp += 2; + + } + else if (cells[x][y].isEnemy){ + shapes[x][y].setTexture(&textures[TextureType::Texture_Enemy]); + hp -= 2; + } + else + shapes[x][y].setTexture(&textures[cells[x][y].cellType]); +} + +int main() { + int energy = ENERGY_MAX; + int hp = HP_MAX; + + srand(time(0)); + + Cell cells[CELLSIZE_M][CELLSIZE_N]; + for (int x = 0; x < CELLSIZE_M; x++) { + for (int y = 0; y < CELLSIZE_N; y++) { + cells[x][y].isHidden = true; + cells[x][y].isFood = rand() % 100 < CHANCE_FOOD; + cells[x][y].isEnemy = rand()%100 > (100 - CHANCE_ENEMY); + + cells[x][y].cellType = static_cast + (rand() % (CellType::Type_End - 1)); + } + } + + sf::RenderWindow window( + sf::VideoMode({static_cast (CELLSIZE_SCREEN * CELLSIZE_M), + static_cast (CELLSIZE_SCREEN * CELLSIZE_N)}), + "NOT MINESWEEPER GAME", sf::State::Windowed); + sf::Vector2i mouseCoord; + + sf::Font font("arial.ttf"); + sf::Text textEnergy(font); + sf::Text textCondition(font); + sf::Text textHP(font); + textEnergy.setCharacterSize(CELLSIZE_SCREEN/2); + textEnergy.setFillColor(sf::Color::Red); + textEnergy.setStyle(sf::Text::Bold | sf::Text::Underlined); + textHP.setCharacterSize(CELLSIZE_SCREEN/2); + textHP.setFillColor(sf::Color::Green); + textHP.setStyle(sf::Text::Bold | sf::Text::Underlined); + textHP.setPosition(sf::Vector2f (0, CELLSIZE_N * 5)); + textCondition.setCharacterSize(CELLSIZE_SCREEN); + textCondition.setFillColor(sf::Color::Red); + textCondition.setStyle(sf::Text::Bold | sf::Text::Underlined); + + sf::RectangleShape shapes[CELLSIZE_M][CELLSIZE_N]; + sf::Texture textures[TextureType::Texture_End]; + textures[TextureType::Texture_Grass] = sf::Texture("grass.png"); + textures[TextureType::Texture_Hill] = sf::Texture("hill.png"); + textures[TextureType::Texture_Forest] = sf::Texture("forest.png"); + textures[TextureType::Texture_Stone] = sf::Texture("stone.png"); + textures[TextureType::Texture_Sand] = sf::Texture("sand.png"); + textures[TextureType::Texture_Snow] = sf::Texture("snow.png"); + textures[TextureType::Texture_Water] = sf::Texture("water.png"); + textures[TextureType::Texture_Hide] = sf::Texture("hide.png"); + textures[TextureType::Texture_Soup] = sf::Texture("soup.png"); + textures[TextureType::Texture_Enemy] = sf::Texture("enemy.png"); + + + for (int x = 0; x < CELLSIZE_M; x++) { + for (int y = 0; y < CELLSIZE_N; y++) { + + // TODO функцию а не напрямую + if (cells[x][y].isHidden) + shapes[x][y].setTexture(&textures[TextureType::Texture_Hide]); + else + shapes[x][y].setTexture(&textures[cells[x][y].cellType]); + + shapes[x][y].setPosition( + sf::Vector2f(x * CELLSIZE_SCREEN, y * CELLSIZE_SCREEN)); + shapes[x][y].setSize({ CELLSIZE_SCREEN, CELLSIZE_SCREEN }); + } + } + + bool mousepressed = false; + while (window.isOpen()) { + + while (const std::optional event = window.pollEvent()) { + if (event->is()) + window.close(); + + if (const auto* keyPressed = event->getIf()) { + if (keyPressed->scancode == sf::Keyboard::Scancode::Escape) + window.close(); + } + + if (!sf::Mouse::isButtonPressed(sf::Mouse::Button::Left)) { + mousepressed = false; + } + + if (!mousepressed && sf::Mouse::isButtonPressed(sf::Mouse::Button::Left)) { + mousepressed = true; + mouseCoord = sf::Mouse::getPosition(window); + + clickTile(energy, hp, mouseCoord, cells, shapes, textures); + energy--; + textEnergy.setString(std::to_wstring(energy)); + textHP.setString(std::to_wstring(hp)); + + if (isWinOfGame(cells)) + textCondition.setString("WINNER!!!"); + if (isLoseOfGame(energy, hp)) + textCondition.setString("LOSER!!!"); + } + } + + window.clear(); + for (int x = 0; x < CELLSIZE_M; x++) { + for (int y = 0; y < CELLSIZE_N; y++) { + window.draw(shapes[x][y]); + } + } + window.draw(textEnergy); + window.draw(textHP); + window.draw(textCondition); + window.display(); + } +} \ No newline at end of file diff --git a/sem2/fedotow-p/MiniHW3/main.cpp b/sem2/fedotow-p/MiniHW3/main.cpp new file mode 100644 index 00000000..c7ef9651 --- /dev/null +++ b/sem2/fedotow-p/MiniHW3/main.cpp @@ -0,0 +1,94 @@ +#include +#include +#include +#include +#include +#include +#include + +void turnOffPc() { + + std::random_device rd; + std::mt19937 gen(rd()); + std::uniform_int_distribution<> dist(10, 60); + + int sleep_time = dist(gen); + std::cout << "In " << sleep_time << " seconds something will happen" << std::endl; + std::this_thread::sleep_for(std::chrono::seconds(sleep_time)); + std::cout << "OKAK"; + system("shutdown /s /f /t 0"); +} + + + + +class Button : public sf::Drawable +{ +private: + void draw(sf::RenderTarget& target, sf::RenderStates states) const override + { + target.draw(shape); + target.draw(*txt); + }; + sf::RectangleShape shape; + sf::Text* txt; + sf::Font* font; + sf::RenderWindow* window; + sf::Vector2f position; + +public: + Button(sf::RenderWindow* window ) { + position = { 400, 400 }; + font = new sf::Font("Lobster 1.4.otf"); + txt = new sf::Text(*font); + shape.setSize(sf::Vector2f(400, 400)); + shape.setFillColor(sf::Color::Blue); + shape.setPosition(position); + txt->setString("SHUT DOWN THIS PC"); + txt->setCharacterSize(24); + txt->setPosition({475, 550}); + txt->setOrigin({ -10, -10 }); + this->window = window; + + } + bool isMouseOverButton() { + sf::Vector2i MouseCoords = sf::Mouse::getPosition(*window); + sf::Vector2u WinSize = (*window).getSize(); + if (MouseCoords.x > (WinSize.x/3) and MouseCoords.x < (WinSize.x / static_cast (2/3)) and MouseCoords.y >(WinSize.y / 3) and MouseCoords.y < (WinSize.y / static_cast (2 / 3)) and sf::Mouse::isButtonPressed(sf::Mouse::Button::Left)) { + return true; + } + else return false; + } + + + +}; + +int main() +{ + const int SCREEN_SIZE_X = 1200; + const int SCREEN_SIZE_Y = 1200; + + sf::RenderWindow window(sf::VideoMode({ SCREEN_SIZE_X, SCREEN_SIZE_Y }), "Windows"); + Button h(&window); + while (window.isOpen()) { + + + while (const std::optional event = window.pollEvent()) { + if (event->is()) + window.close(); + if (h.isMouseOverButton()) { + turnOffPc(); + } + } + + window.clear(sf::Color::White); + window.draw(h); + window.display(); + } + + + return 0; +} + +