forced resolution
This commit is contained in:
Vendored
+1
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
|
||||
{
|
||||
"name": "C/C++: g++ сборка и отладка активного файла",
|
||||
"type": "cppdbg",
|
||||
|
||||
+35
-7
@@ -1,13 +1,26 @@
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
project(NeuralVisualizer)
|
||||
project(BIPY_Project)
|
||||
|
||||
# Настройки стандарта C++
|
||||
set(CMAKE_CXX_STANDARD 20)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
set(OpenGL_GL_PREFERENCE GLVND)
|
||||
|
||||
# 1. ОТКЛЮЧАЕМ проверки нативных платформ ImGui (исправляет ошибку glfwGetX11Display)
|
||||
add_definitions(-DIMGUI_DISABLE_X11)
|
||||
add_definitions(-DIMGUI_DISABLE_WAYLAND)
|
||||
|
||||
# 2. Поиск необходимых системных библиотек
|
||||
find_package(glfw3 REQUIRED)
|
||||
find_package(OpenGL REQUIRED)
|
||||
find_package(OpenMP REQUIRED)
|
||||
find_package(Vulkan REQUIRED)
|
||||
|
||||
add_executable(test_ui
|
||||
test_launcher.cpp
|
||||
GUI/visual.cpp
|
||||
# 3. Список всех исходных файлов (Ядро + GUI + ImGui)
|
||||
set(SOURCES
|
||||
main.cpp
|
||||
Xenith/core.cpp
|
||||
Xenith/token/token.cpp
|
||||
imgui/imgui.cpp
|
||||
imgui/imgui_draw.cpp
|
||||
imgui/imgui_widgets.cpp
|
||||
@@ -17,12 +30,27 @@ add_executable(test_ui
|
||||
imgui/backends/imgui_impl_opengl3.cpp
|
||||
)
|
||||
|
||||
# 4. Создание исполняемого файла
|
||||
add_executable(BIPY_App ${SOURCES})
|
||||
|
||||
target_include_directories(test_ui
|
||||
PRIVATE
|
||||
# 5. Подключение папок с заголовками
|
||||
target_include_directories(BIPY_App PRIVATE
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Xenith
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Xenith/token
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/imgui
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/imgui/backends
|
||||
)
|
||||
|
||||
target_link_libraries(test_ui glfw GL)
|
||||
# 6. Линковка библиотек
|
||||
# Добавлены X11 и dl для стабильности в Linux
|
||||
target_link_libraries(BIPY_App
|
||||
PRIVATE
|
||||
glfw
|
||||
OpenGL::GL
|
||||
Vulkan::Vulkan
|
||||
OpenMP::OpenMP_CXX
|
||||
X11
|
||||
dl
|
||||
pthread
|
||||
)
|
||||
|
||||
+44
-52
@@ -11,60 +11,52 @@ public:
|
||||
std::map<int, std::string> idToWord;
|
||||
|
||||
Tokenizer() {
|
||||
add("[EOS]"); add("[SYS]"); add("[USER]"); add("[AI]"); add(" "); add("\n");
|
||||
add("."); add(","); add("!"); add("?"); add(":"); add(";");
|
||||
add("-"); add("\""); add("("); add(")"); add("а"); add("б");
|
||||
add("в"); add("г"); add("д"); add("е"); add("ё"); add("ж");
|
||||
add("з"); add("и"); add("й"); add("к"); add("л"); add("м");
|
||||
add("н"); add("о"); add("п"); add("р"); add("с"); add("т");
|
||||
add("у"); add("ф"); add("х"); add("ц"); add("ч"); add("ш");
|
||||
add("щ"); add("ъ"); add("ы"); add("ь"); add("э"); add("ю");
|
||||
add("я"); add("не"); add("на"); add("что"); add("тот"); add("быть");
|
||||
add("весь"); add("это"); add("как"); add("она"); add("по"); add("но");
|
||||
add("они"); add("ты"); add("из"); add("мы"); add("за"); add("вы");
|
||||
add("привет"); add("дела"); add("робот"); add("хорошо"); add("спасибо"); add("Привет");
|
||||
add("да"); add("нет"); add("могу"); add("помочь"); add("знаю"); add("кто");
|
||||
add("Приветик"); add("где"); add("когда"); add("почему"); add("хочу"); add("очень");
|
||||
add("нужна"); add("помощь"); add("тебя"); add("зовут"); add("BiPy"); add("Пише");
|
||||
add("если"); add("всегда"); add("рада"); add("что-то"); add("хотел"); add("именно");
|
||||
add("тебе"); add("мне"); add("нужно"); add("найти"); add("образ"); add("7");
|
||||
add("винды"); add("иди"); add("нахуй"); add("[CLR]"); add("["); add("USER");
|
||||
add("]"); add("Пивет"); add("AI"); add("пише"); add("помоч"); add("почь");
|
||||
add("Как"); add("Сябки"); add("спросил"); add("меня"); add("все"); add("Да");
|
||||
add("ахуенно"); add("ёпт"); add("Доброе"); add("утро"); add("спалось"); add("Спокойной");
|
||||
add("ночи"); add("желаю"); add("выспатся"); add("Что"); add("делаешь"); add("Сижу");
|
||||
add("жду"); add("кода"); add("напишешь"); add("Плохое"); add("настроение"); add("Оу");
|
||||
add("случилось"); add("Расскажи"); add("обязательно"); add("выслушаю"); add("поддержу"); add("Я");
|
||||
add("устал"); add("Бедняжка"); add("мой"); add("может"); add("тогда"); add("отдохнешь");
|
||||
add("Тебе"); add("восстановить"); add("силы"); add("подожду"); add("тут"); add("У");
|
||||
add("отлично"); add("Ураа"); add("так"); add("Пусть"); add("день"); add("будет");
|
||||
add("[EOS]"); add("[SYS]"); add("[USER]"); add("[AI]"); add(" "); add("\n"); add("Приветик");
|
||||
add(","); add("как"); add("дела"); add("?"); add("Привет");
|
||||
add("нужна"); add("помощь"); add("пише"); add("если"); add("что"); add("всегда");
|
||||
add("рада"); add("помочь"); add("что-то"); add("хотел"); add("да"); add("именно");
|
||||
add("я"); add("тебе"); add("почь"); add("мне"); add("нужно"); add("найти");
|
||||
add("образ"); add("7"); add("винды"); add("но"); add("не"); add("могу");
|
||||
add("иди"); add("ты"); add("нахуй"); add("Как"); add("Сябки"); add("спросил");
|
||||
add("у"); add("меня"); add("все"); add("хорошо"); add("а"); add("тебя");
|
||||
add("Да"); add("ахуенно"); add("ёпт"); add("Доброе"); add("утро"); add("спалось");
|
||||
add("Спокойной"); add("ночи"); add("желаю"); add("выспатся"); add("Что"); add("делаешь");
|
||||
add("Сижу"); add("жду"); add("кода"); add("напишешь"); add("Плохое"); add("настроение");
|
||||
add("Оу"); add("случилось"); add("Расскажи"); add("обязательно"); add("выслушаю"); add("и");
|
||||
add("поддержу"); add("!"); add("Я"); add("устал"); add("Бедняжка"); add("мой");
|
||||
add("может"); add("тогда"); add("отдохнешь"); add("Тебе"); add("восстановить"); add("силы");
|
||||
add("подожду"); add("тут"); add("."); add("У"); add("отлично"); add("Ураа");
|
||||
add("так"); add("за"); add("Пусть"); add("весь"); add("день"); add("будет");
|
||||
add("таким"); add("же"); add("классным"); add("Чем"); add("занимаешься"); add("Скучаю");
|
||||
add("что-нибудь"); add("интересное"); add("пришел"); add("Наконец-то"); add("уже"); add("заждалась");
|
||||
add("прошел"); add("Ты"); add("рядышком"); add("только"); add("напиши"); add("—");
|
||||
add("отвечу"); add("милая"); add("Ой"); add("засмущал"); add("совсем"); add("Спасибо");
|
||||
add("большое"); add("оч"); add("приятно"); add("Не"); add("солнышко"); add("Обращайся");
|
||||
add("любое"); add("время"); add("посоветуешь"); add("Хмм"); add("смотря"); add("чем");
|
||||
add("Но"); add("готова"); add("подсказать"); add("пошел"); add("Хорошо"); add("буду");
|
||||
add("ждать"); add("твоего"); add("возвращения"); add("пропадай"); add("надолго"); add("Пока");
|
||||
add("Пока-пока"); add("Хорошего"); add("настроения"); add("удачи"); add("во"); add("всех");
|
||||
add("делах"); add("Пойду"); add("поем"); add("Приятного"); add("аппетита"); add("Кушай");
|
||||
add("вкусно"); add("потом"); add("расскажешь"); add("было"); add("обед"); add("Занят");
|
||||
add("был"); add("Понимаю"); add("важно"); add("Главное"); add("сейчас"); add("нашел");
|
||||
add("заглянуть"); add("ко"); add("Скучно"); add("давай"); add("поразвлекаю"); add("Можем");
|
||||
add("поболтать"); add("угодно"); add("или"); add("просто"); add("помечтать"); add("Грустно");
|
||||
add("Эй"); add("грусти"); add("рядом"); add("хочешь"); add("обниму"); add("виртуально");
|
||||
add("Все"); add("наладится"); add("Болею"); add("Ой-ой"); add("Пей"); add("побольше");
|
||||
add("чая"); add("лимоном"); add("выздоравливай"); add("скорее"); add("переживаю"); add("Похвали");
|
||||
add("большой"); add("молодец"); add("верю"); add("бы"); add("ни"); add("твоя");
|
||||
add("подруга"); add("забыл"); add("чтоли"); add("дурашка"); add("сказку"); add("Жил-был");
|
||||
add("один"); add("замечательный"); add("человек"); add("который"); add("читает"); add("сообщение");
|
||||
add("Продолжить"); add("любишь"); add("Конечно"); add("самый"); add("любимый"); add("собеседник");
|
||||
add("любить"); add("Аууу"); add("Тут"); add("Никуда"); add("делась"); add("ждала");
|
||||
add("сообщения"); add("Ясно"); add("Что-то"); add("немногословен"); add("сегодня"); add("Ха-ха");
|
||||
add("Обожаю"); add("твой"); add("смех"); add("Сразу"); add("душе"); add("теплее");
|
||||
add("становится"); add("Bipy"); add("добрая"); add("подужайка"); add("пока"); add("учусь");
|
||||
add("этом"); add("мире");
|
||||
add("по"); add("что-нибудь"); add("интересное"); add("пришел"); add("Наконец-то"); add("уже");
|
||||
add("заждалась"); add("прошел"); add("Ты"); add("где"); add("рядышком"); add("только");
|
||||
add("напиши"); add("—"); add("отвечу"); add("милая"); add("Ой"); add("засмущал");
|
||||
add("совсем"); add("Спасибо"); add("большое"); add("оч"); add("приятно"); add("Не");
|
||||
add("солнышко"); add("Обращайся"); add("в"); add("любое"); add("время"); add("посоветуешь");
|
||||
add("Хмм"); add("смотря"); add("чем"); add("Но"); add("готова"); add("подсказать");
|
||||
add("знаю"); add("пошел"); add("Хорошо"); add("буду"); add("ждать"); add("твоего");
|
||||
add("возвращения"); add("пропадай"); add("надолго"); add("Пока"); add("Пока-пока"); add("Хорошего");
|
||||
add("настроения"); add("удачи"); add("во"); add("всех"); add("делах"); add("Пойду");
|
||||
add("поем"); add("Приятного"); add("аппетита"); add("Кушай"); add("вкусно"); add("потом");
|
||||
add("расскажешь"); add("было"); add("на"); add("обед"); add(":"); add(")");
|
||||
add("Занят"); add("был"); add("Понимаю"); add("это"); add("важно"); add("Главное");
|
||||
add("сейчас"); add("нашел"); add("заглянуть"); add("ко"); add("Скучно"); add("давай");
|
||||
add("поразвлекаю"); add("Можем"); add("поболтать"); add("о"); add("угодно"); add("или");
|
||||
add("просто"); add("помечтать"); add("Грустно"); add("Эй"); add("грусти"); add("рядом");
|
||||
add("хочешь"); add("обниму"); add("("); add("виртуально"); add("Все"); add("наладится");
|
||||
add("Болею"); add("Ой-ой"); add("Пей"); add("побольше"); add("чая"); add("с");
|
||||
add("лимоном"); add("выздоравливай"); add("скорее"); add("переживаю"); add("Похвали"); add("большой");
|
||||
add("молодец"); add("верю"); add("бы"); add("ни"); add("кто"); add("BiPy");
|
||||
add("твоя"); add("подруга"); add("забыл"); add("чтоли"); add("дурашка"); add("сказку");
|
||||
add("Жил-был"); add("один"); add("замечательный"); add("человек"); add("который"); add("читает");
|
||||
add("сообщение"); add("Продолжить"); add("любишь"); add("Конечно"); add("самый"); add("любимый");
|
||||
add("собеседник"); add("любить"); add("Аууу"); add("Тут"); add("Никуда"); add("делась");
|
||||
add("ждала"); add("сообщения"); add("Ясно"); add("Что-то"); add("немногословен"); add("сегодня");
|
||||
add("нет"); add("Ха-ха"); add("Обожаю"); add("твой"); add("смех"); add("Сразу");
|
||||
add("душе"); add("теплее"); add("становится"); add("Bipy"); add("добрая"); add("подужайка");
|
||||
add("пока"); add("учусь"); add("этом"); add("мире"); add("зовут");
|
||||
}
|
||||
|
||||
void add(std::string word);
|
||||
int getID(std::string word);
|
||||
std::string getWord(int id);
|
||||
|
||||
+5
-2
@@ -1,9 +1,12 @@
|
||||
#ifndef TYPEDEF_H
|
||||
#define TYPEDEF_H
|
||||
|
||||
const int MAX_CONTEXT = 128; // Сколько токенов видит сеть
|
||||
const int MAX_CONTEXT = 256; // Сколько токенов видит сеть
|
||||
const int EMBED_DIM = 8; // Размер вектора одного токена
|
||||
const int MAX_VOCAB = 315; // Размер словаря
|
||||
|
||||
const int MIDDLE_LAYER = 128;
|
||||
|
||||
const int MAX_VOCAB = 270; // Размер словаря
|
||||
|
||||
typedef enum { SIGMOID } FunctionActivate_t;
|
||||
typedef struct { int size; FunctionActivate_t activate; } LayerStructure_t;
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,207 @@
|
||||
{
|
||||
"inputs" :
|
||||
[
|
||||
{
|
||||
"path" : "CMakeLists.txt"
|
||||
},
|
||||
{
|
||||
"isGenerated" : true,
|
||||
"path" : "build/CMakeFiles/3.28.3/CMakeSystem.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInitialize.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/Platform/Linux-Initialize.cmake"
|
||||
},
|
||||
{
|
||||
"isGenerated" : true,
|
||||
"path" : "build/CMakeFiles/3.28.3/CMakeCCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isGenerated" : true,
|
||||
"path" : "build/CMakeFiles/3.28.3/CMakeCXXCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/CMakeSystemSpecificInformation.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/CMakeGenericSystem.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/CMakeInitializeConfigs.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/Platform/Linux.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/Platform/UnixPaths.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/CMakeCInformation.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/CMakeLanguageInformation.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/Compiler/GNU-C.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/Compiler/GNU.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/Platform/Linux-GNU-C.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/Platform/Linux-GNU.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/CMakeCommonLanguageInclude.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/CMakeCXXInformation.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/CMakeLanguageInformation.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/Compiler/GNU-CXX.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/Compiler/GNU.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/Platform/Linux-GNU-CXX.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/Platform/Linux-GNU.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/CMakeCommonLanguageInclude.cmake"
|
||||
},
|
||||
{
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/lib/x86_64-linux-gnu/cmake/glfw3/glfw3ConfigVersion.cmake"
|
||||
},
|
||||
{
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/lib/x86_64-linux-gnu/cmake/glfw3/glfw3Config.cmake"
|
||||
},
|
||||
{
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/lib/x86_64-linux-gnu/cmake/glfw3/glfw3Targets.cmake"
|
||||
},
|
||||
{
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/lib/x86_64-linux-gnu/cmake/glfw3/glfw3Targets-none.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/FindOpenGL.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/FindPackageMessage.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/FindOpenMP.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/CMakeParseImplicitLinkInfo.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/FindPackageMessage.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/FindVulkan.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.28/Modules/FindPackageMessage.cmake"
|
||||
}
|
||||
],
|
||||
"kind" : "cmakeFiles",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "/home/koder/Repos/BiPy/build",
|
||||
"source" : "/home/koder/Repos/BiPy"
|
||||
},
|
||||
"version" :
|
||||
{
|
||||
"major" : 1,
|
||||
"minor" : 0
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
{
|
||||
"configurations" :
|
||||
[
|
||||
{
|
||||
"directories" :
|
||||
[
|
||||
{
|
||||
"build" : ".",
|
||||
"jsonFile" : "directory-.-Debug-f5ebdc15457944623624.json",
|
||||
"minimumCMakeVersion" :
|
||||
{
|
||||
"string" : "3.10"
|
||||
},
|
||||
"projectIndex" : 0,
|
||||
"source" : ".",
|
||||
"targetIndexes" :
|
||||
[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"name" : "Debug",
|
||||
"projects" :
|
||||
[
|
||||
{
|
||||
"directoryIndexes" :
|
||||
[
|
||||
0
|
||||
],
|
||||
"name" : "BIPY_Project",
|
||||
"targetIndexes" :
|
||||
[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"targets" :
|
||||
[
|
||||
{
|
||||
"directoryIndex" : 0,
|
||||
"id" : "BIPY_App::@6890427a1f51a3e7e1df",
|
||||
"jsonFile" : "target-BIPY_App-Debug-924e248e4fc0db31ffe1.json",
|
||||
"name" : "BIPY_App",
|
||||
"projectIndex" : 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"kind" : "codemodel",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "/home/koder/Repos/BiPy/build",
|
||||
"source" : "/home/koder/Repos/BiPy"
|
||||
},
|
||||
"version" :
|
||||
{
|
||||
"major" : 2,
|
||||
"minor" : 6
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" : [],
|
||||
"files" : [],
|
||||
"nodes" : []
|
||||
},
|
||||
"installers" : [],
|
||||
"paths" :
|
||||
{
|
||||
"build" : ".",
|
||||
"source" : "."
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,132 @@
|
||||
{
|
||||
"cmake" :
|
||||
{
|
||||
"generator" :
|
||||
{
|
||||
"multiConfig" : false,
|
||||
"name" : "Ninja"
|
||||
},
|
||||
"paths" :
|
||||
{
|
||||
"cmake" : "/usr/bin/cmake",
|
||||
"cpack" : "/usr/bin/cpack",
|
||||
"ctest" : "/usr/bin/ctest",
|
||||
"root" : "/usr/share/cmake-3.28"
|
||||
},
|
||||
"version" :
|
||||
{
|
||||
"isDirty" : false,
|
||||
"major" : 3,
|
||||
"minor" : 28,
|
||||
"patch" : 3,
|
||||
"string" : "3.28.3",
|
||||
"suffix" : ""
|
||||
}
|
||||
},
|
||||
"objects" :
|
||||
[
|
||||
{
|
||||
"jsonFile" : "codemodel-v2-ff2179f29f0c7d8392ac.json",
|
||||
"kind" : "codemodel",
|
||||
"version" :
|
||||
{
|
||||
"major" : 2,
|
||||
"minor" : 6
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonFile" : "cache-v2-94dfdbc174d8051b1c1b.json",
|
||||
"kind" : "cache",
|
||||
"version" :
|
||||
{
|
||||
"major" : 2,
|
||||
"minor" : 0
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonFile" : "cmakeFiles-v1-763850f3614a1ed4b5e7.json",
|
||||
"kind" : "cmakeFiles",
|
||||
"version" :
|
||||
{
|
||||
"major" : 1,
|
||||
"minor" : 0
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonFile" : "toolchains-v1-de13eb4a293a7f94668f.json",
|
||||
"kind" : "toolchains",
|
||||
"version" :
|
||||
{
|
||||
"major" : 1,
|
||||
"minor" : 0
|
||||
}
|
||||
}
|
||||
],
|
||||
"reply" :
|
||||
{
|
||||
"client-vscode" :
|
||||
{
|
||||
"query.json" :
|
||||
{
|
||||
"requests" :
|
||||
[
|
||||
{
|
||||
"kind" : "cache",
|
||||
"version" : 2
|
||||
},
|
||||
{
|
||||
"kind" : "codemodel",
|
||||
"version" : 2
|
||||
},
|
||||
{
|
||||
"kind" : "toolchains",
|
||||
"version" : 1
|
||||
},
|
||||
{
|
||||
"kind" : "cmakeFiles",
|
||||
"version" : 1
|
||||
}
|
||||
],
|
||||
"responses" :
|
||||
[
|
||||
{
|
||||
"jsonFile" : "cache-v2-94dfdbc174d8051b1c1b.json",
|
||||
"kind" : "cache",
|
||||
"version" :
|
||||
{
|
||||
"major" : 2,
|
||||
"minor" : 0
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonFile" : "codemodel-v2-ff2179f29f0c7d8392ac.json",
|
||||
"kind" : "codemodel",
|
||||
"version" :
|
||||
{
|
||||
"major" : 2,
|
||||
"minor" : 6
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonFile" : "toolchains-v1-de13eb4a293a7f94668f.json",
|
||||
"kind" : "toolchains",
|
||||
"version" :
|
||||
{
|
||||
"major" : 1,
|
||||
"minor" : 0
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonFile" : "cmakeFiles-v1-763850f3614a1ed4b5e7.json",
|
||||
"kind" : "cmakeFiles",
|
||||
"version" :
|
||||
{
|
||||
"major" : 1,
|
||||
"minor" : 0
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,324 @@
|
||||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "BIPY_App"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"set_property",
|
||||
"find_package",
|
||||
"set_target_properties",
|
||||
"add_definitions",
|
||||
"target_include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"CMakeLists.txt",
|
||||
"/usr/share/cmake-3.28/Modules/FindOpenGL.cmake",
|
||||
"/usr/share/cmake-3.28/Modules/FindOpenMP.cmake"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 34,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 0,
|
||||
"line" : 47,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 0,
|
||||
"line" : 15,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1,
|
||||
"parent" : 3
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 1,
|
||||
"line" : 673,
|
||||
"parent" : 4
|
||||
},
|
||||
{
|
||||
"command" : 4,
|
||||
"file" : 1,
|
||||
"line" : 671,
|
||||
"parent" : 4
|
||||
},
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 0,
|
||||
"line" : 16,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 2,
|
||||
"parent" : 7
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 2,
|
||||
"line" : 619,
|
||||
"parent" : 8
|
||||
},
|
||||
{
|
||||
"command" : 5,
|
||||
"file" : 0,
|
||||
"line" : 11,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 5,
|
||||
"file" : 0,
|
||||
"line" : 10,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 6,
|
||||
"file" : 0,
|
||||
"line" : 37,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu++20"
|
||||
},
|
||||
{
|
||||
"backtrace" : 2,
|
||||
"fragment" : "-fopenmp"
|
||||
}
|
||||
],
|
||||
"defines" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 10,
|
||||
"define" : "IMGUI_DISABLE_WAYLAND"
|
||||
},
|
||||
{
|
||||
"backtrace" : 11,
|
||||
"define" : "IMGUI_DISABLE_X11"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 12,
|
||||
"path" : "/home/koder/Repos/BiPy"
|
||||
},
|
||||
{
|
||||
"backtrace" : 12,
|
||||
"path" : "/home/koder/Repos/BiPy/Xenith"
|
||||
},
|
||||
{
|
||||
"backtrace" : 12,
|
||||
"path" : "/home/koder/Repos/BiPy/Xenith/token"
|
||||
},
|
||||
{
|
||||
"backtrace" : 12,
|
||||
"path" : "/home/koder/Repos/BiPy/imgui"
|
||||
},
|
||||
{
|
||||
"backtrace" : 12,
|
||||
"path" : "/home/koder/Repos/BiPy/imgui/backends"
|
||||
}
|
||||
],
|
||||
"language" : "CXX",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "20"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7,
|
||||
8,
|
||||
9
|
||||
]
|
||||
}
|
||||
],
|
||||
"id" : "BIPY_App::@6890427a1f51a3e7e1df",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 2,
|
||||
"fragment" : "/usr/lib/x86_64-linux-gnu/libglfw.so.3.3",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 2,
|
||||
"fragment" : "/usr/lib/x86_64-linux-gnu/libvulkan.so",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 2,
|
||||
"fragment" : "-lX11",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 2,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 2,
|
||||
"fragment" : "-lpthread",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 5,
|
||||
"fragment" : "/usr/lib/x86_64-linux-gnu/libGLX.so",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 6,
|
||||
"fragment" : "/usr/lib/x86_64-linux-gnu/libOpenGL.so",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 9,
|
||||
"fragment" : "/usr/lib/gcc/x86_64-linux-gnu/13/libgomp.so",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 9,
|
||||
"fragment" : "/usr/lib/x86_64-linux-gnu/libpthread.a",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "CXX"
|
||||
},
|
||||
"name" : "BIPY_App",
|
||||
"nameOnDisk" : "BIPY_App",
|
||||
"paths" :
|
||||
{
|
||||
"build" : ".",
|
||||
"source" : "."
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7,
|
||||
8,
|
||||
9
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "main.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "Xenith/core.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "Xenith/token/token.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "imgui/imgui.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "imgui/imgui_draw.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "imgui/imgui_widgets.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "imgui/imgui_tables.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "imgui/imgui_demo.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "imgui/backends/imgui_impl_glfw.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "imgui/backends/imgui_impl_opengl3.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
||||
@@ -0,0 +1,110 @@
|
||||
{
|
||||
"kind" : "toolchains",
|
||||
"toolchains" :
|
||||
[
|
||||
{
|
||||
"compiler" :
|
||||
{
|
||||
"id" : "GNU",
|
||||
"implicit" :
|
||||
{
|
||||
"includeDirectories" :
|
||||
[
|
||||
"/usr/lib/gcc/x86_64-linux-gnu/13/include",
|
||||
"/usr/local/include",
|
||||
"/usr/include/x86_64-linux-gnu",
|
||||
"/usr/include"
|
||||
],
|
||||
"linkDirectories" :
|
||||
[
|
||||
"/usr/lib/gcc/x86_64-linux-gnu/13",
|
||||
"/usr/lib/x86_64-linux-gnu",
|
||||
"/usr/lib",
|
||||
"/lib/x86_64-linux-gnu",
|
||||
"/lib"
|
||||
],
|
||||
"linkFrameworkDirectories" : [],
|
||||
"linkLibraries" :
|
||||
[
|
||||
"gcc",
|
||||
"gcc_s",
|
||||
"c",
|
||||
"gcc",
|
||||
"gcc_s"
|
||||
]
|
||||
},
|
||||
"path" : "/usr/bin/gcc",
|
||||
"version" : "13.3.0"
|
||||
},
|
||||
"language" : "C",
|
||||
"sourceFileExtensions" :
|
||||
[
|
||||
"c",
|
||||
"m"
|
||||
]
|
||||
},
|
||||
{
|
||||
"compiler" :
|
||||
{
|
||||
"id" : "GNU",
|
||||
"implicit" :
|
||||
{
|
||||
"includeDirectories" :
|
||||
[
|
||||
"/usr/include/c++/13",
|
||||
"/usr/include/x86_64-linux-gnu/c++/13",
|
||||
"/usr/include/c++/13/backward",
|
||||
"/usr/lib/gcc/x86_64-linux-gnu/13/include",
|
||||
"/usr/local/include",
|
||||
"/usr/include/x86_64-linux-gnu",
|
||||
"/usr/include"
|
||||
],
|
||||
"linkDirectories" :
|
||||
[
|
||||
"/usr/lib/gcc/x86_64-linux-gnu/13",
|
||||
"/usr/lib/x86_64-linux-gnu",
|
||||
"/usr/lib",
|
||||
"/lib/x86_64-linux-gnu",
|
||||
"/lib"
|
||||
],
|
||||
"linkFrameworkDirectories" : [],
|
||||
"linkLibraries" :
|
||||
[
|
||||
"stdc++",
|
||||
"m",
|
||||
"gcc_s",
|
||||
"gcc",
|
||||
"c",
|
||||
"gcc_s",
|
||||
"gcc"
|
||||
]
|
||||
},
|
||||
"path" : "/usr/bin/g++",
|
||||
"version" : "13.3.0"
|
||||
},
|
||||
"language" : "CXX",
|
||||
"sourceFileExtensions" :
|
||||
[
|
||||
"C",
|
||||
"M",
|
||||
"c++",
|
||||
"cc",
|
||||
"cpp",
|
||||
"cxx",
|
||||
"mm",
|
||||
"mpp",
|
||||
"CPP",
|
||||
"ixx",
|
||||
"cppm",
|
||||
"ccm",
|
||||
"cxxm",
|
||||
"c++m"
|
||||
]
|
||||
}
|
||||
],
|
||||
"version" :
|
||||
{
|
||||
"major" : 1,
|
||||
"minor" : 0
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,61 @@
|
||||
# ninja log v5
|
||||
4 333 1778356183513052019 CMakeFiles/BIPY_App.dir/imgui/backends/imgui_impl_glfw.cpp.o 98ffae70adc86661
|
||||
5 262 1778356064753829258 CMakeFiles/BIPY_App.dir/imgui/backends/imgui_impl_opengl3.cpp.o 676a63c53e4312bd
|
||||
4 1859 1778356066350431312 CMakeFiles/BIPY_App.dir/Xenith/token/token.cpp.o bb661ce05133983a
|
||||
5 2848 1778356067338391370 CMakeFiles/BIPY_App.dir/imgui/imgui_demo.cpp.o 1cce55d13d233628
|
||||
4 3195 1778356067684895625 CMakeFiles/BIPY_App.dir/imgui/imgui_draw.cpp.o aadac94ced07c385
|
||||
4 6996 1778356843698673352 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
6996 7242 1778356843942746018 BIPY_App fe4f9baaf9bbaac8
|
||||
4 2983 1778356067474176706 CMakeFiles/BIPY_App.dir/imgui/imgui_tables.cpp.o e443056602aa9f6e
|
||||
4 3849 1778356068338800863 CMakeFiles/BIPY_App.dir/imgui/imgui_widgets.cpp.o a4289b0d8e815019
|
||||
4 4153 1778356068641915985 CMakeFiles/BIPY_App.dir/imgui/imgui.cpp.o e920e8e567c1a611
|
||||
4 9210 1778356760359304395 CMakeFiles/BIPY_App.dir/Xenith/core.cpp.o 6cb7eb29ca382303
|
||||
3 7537 1778356902913153243 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
7538 7767 1778356903140736664 BIPY_App fe4f9baaf9bbaac8
|
||||
4 6589 1778356974814457200 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
6590 6825 1778356975047509935 BIPY_App fe4f9baaf9bbaac8
|
||||
4 7130 1778357037453546999 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
7131 7386 1778357037706440433 BIPY_App fe4f9baaf9bbaac8
|
||||
3 7079 1778357230205437214 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
7079 7348 1778357230473147613 BIPY_App fe4f9baaf9bbaac8
|
||||
3 7237 1778357348177108485 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
7237 7499 1778357348437131068 BIPY_App fe4f9baaf9bbaac8
|
||||
3 7157 1778357481172232633 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
7157 7440 1778357481451856219 BIPY_App fe4f9baaf9bbaac8
|
||||
4 7012 1778357532357007254 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
7012 7270 1778357532612981015 BIPY_App fe4f9baaf9bbaac8
|
||||
3 6983 1778357721602686694 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
6983 7250 1778357721868742554 BIPY_App fe4f9baaf9bbaac8
|
||||
3 7810 1778357897271793253 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
7811 8105 1778357897562735192 BIPY_App fe4f9baaf9bbaac8
|
||||
4 7851 1778358139861543350 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
7851 8112 1778358140120582287 BIPY_App fe4f9baaf9bbaac8
|
||||
4 7646 1778358456401983446 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
7646 7906 1778358456660161591 BIPY_App fe4f9baaf9bbaac8
|
||||
3 8076 1778358629877586260 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
8076 8357 1778358630154190197 BIPY_App fe4f9baaf9bbaac8
|
||||
3 7922 1778358849056445853 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
7922 8239 1778358849371435499 BIPY_App fe4f9baaf9bbaac8
|
||||
3 8169 1778358880821971469 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
8169 8456 1778358881107891910 BIPY_App fe4f9baaf9bbaac8
|
||||
4 7590 1778358946038712005 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
7590 7867 1778358946311775075 BIPY_App fe4f9baaf9bbaac8
|
||||
3 9279 1778359090239966438 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
4 10537 1778359091494992015 CMakeFiles/BIPY_App.dir/Xenith/core.cpp.o 6cb7eb29ca382303
|
||||
10537 10807 1778359091767283621 BIPY_App fe4f9baaf9bbaac8
|
||||
4 8038 1778359274113435470 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
8038 8323 1778359274397155362 BIPY_App fe4f9baaf9bbaac8
|
||||
4 8092 1778359389658916812 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
5 9041 1778359390604109435 CMakeFiles/BIPY_App.dir/Xenith/core.cpp.o 6cb7eb29ca382303
|
||||
9041 9328 1778359390893674928 BIPY_App fe4f9baaf9bbaac8
|
||||
4 1678 1778359679147974319 CMakeFiles/BIPY_App.dir/Xenith/token/token.cpp.o bb661ce05133983a
|
||||
3 8333 1778359685802165951 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
4 9396 1778359686860417019 CMakeFiles/BIPY_App.dir/Xenith/core.cpp.o 6cb7eb29ca382303
|
||||
9396 9674 1778359687141033006 BIPY_App fe4f9baaf9bbaac8
|
||||
4 8063 1778360093947312113 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
8063 8340 1778360094223054706 BIPY_App fe4f9baaf9bbaac8
|
||||
4 8177 1778360505445718236 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
8177 8457 1778360505724608576 BIPY_App fe4f9baaf9bbaac8
|
||||
4 8438 1778361202474070046 CMakeFiles/BIPY_App.dir/main.cpp.o c17c6f3b932c08b1
|
||||
4 9407 1778361203441133538 CMakeFiles/BIPY_App.dir/Xenith/core.cpp.o 6cb7eb29ca382303
|
||||
9408 9659 1778361203694509621 BIPY_App fe4f9baaf9bbaac8
|
||||
Executable
BIN
Binary file not shown.
+80
-15
@@ -14,6 +14,15 @@
|
||||
# EXTERNAL cache entries
|
||||
########################
|
||||
|
||||
//Value Computed by CMake
|
||||
BIPY_Project_BINARY_DIR:STATIC=/home/koder/Repos/BiPy/build
|
||||
|
||||
//Value Computed by CMake
|
||||
BIPY_Project_IS_TOP_LEVEL:STATIC=ON
|
||||
|
||||
//Value Computed by CMake
|
||||
BIPY_Project_SOURCE_DIR:STATIC=/home/koder/Repos/BiPy
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line
|
||||
|
||||
@@ -144,7 +153,7 @@ CMAKE_PROJECT_DESCRIPTION:STATIC=
|
||||
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
|
||||
|
||||
//Value Computed by CMake
|
||||
CMAKE_PROJECT_NAME:STATIC=NeuralVisualizer
|
||||
CMAKE_PROJECT_NAME:STATIC=BIPY_Project
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
|
||||
@@ -211,15 +220,6 @@ CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND
|
||||
// Studio IDE projects all commands are done without /nologo.
|
||||
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
||||
|
||||
//Value Computed by CMake
|
||||
NeuralVisualizer_BINARY_DIR:STATIC=/home/koder/Repos/BiPy/build
|
||||
|
||||
//Value Computed by CMake
|
||||
NeuralVisualizer_IS_TOP_LEVEL:STATIC=ON
|
||||
|
||||
//Value Computed by CMake
|
||||
NeuralVisualizer_SOURCE_DIR:STATIC=/home/koder/Repos/BiPy
|
||||
|
||||
//Path to a file.
|
||||
OPENGL_EGL_INCLUDE_DIR:PATH=/usr/include
|
||||
|
||||
@@ -238,9 +238,6 @@ OPENGL_INCLUDE_DIR:PATH=/usr/include
|
||||
//Path to a library.
|
||||
OPENGL_egl_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libEGL.so
|
||||
|
||||
//Path to a library.
|
||||
OPENGL_gl_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libGL.so
|
||||
|
||||
//Path to a library.
|
||||
OPENGL_gles2_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libGLESv2.so
|
||||
|
||||
@@ -259,6 +256,36 @@ OPENGL_opengl_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libOpenGL.so
|
||||
//Path to a file.
|
||||
OPENGL_xmesa_INCLUDE_DIR:PATH=OPENGL_xmesa_INCLUDE_DIR-NOTFOUND
|
||||
|
||||
//CXX compiler flags for OpenMP parallelization
|
||||
OpenMP_CXX_FLAGS:STRING=-fopenmp
|
||||
|
||||
//CXX compiler libraries for OpenMP parallelization
|
||||
OpenMP_CXX_LIB_NAMES:STRING=gomp;pthread
|
||||
|
||||
//C compiler flags for OpenMP parallelization
|
||||
OpenMP_C_FLAGS:STRING=-fopenmp
|
||||
|
||||
//C compiler libraries for OpenMP parallelization
|
||||
OpenMP_C_LIB_NAMES:STRING=gomp;pthread
|
||||
|
||||
//Path to the gomp library for OpenMP
|
||||
OpenMP_gomp_LIBRARY:FILEPATH=/usr/lib/gcc/x86_64-linux-gnu/13/libgomp.so
|
||||
|
||||
//Path to the pthread library for OpenMP
|
||||
OpenMP_pthread_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libpthread.a
|
||||
|
||||
//Path to a program.
|
||||
Vulkan_GLSLANG_VALIDATOR_EXECUTABLE:FILEPATH=/bin/glslangValidator
|
||||
|
||||
//Path to a program.
|
||||
Vulkan_GLSLC_EXECUTABLE:FILEPATH=Vulkan_GLSLC_EXECUTABLE-NOTFOUND
|
||||
|
||||
//Path to a file.
|
||||
Vulkan_INCLUDE_DIR:PATH=/usr/include
|
||||
|
||||
//Path to a library.
|
||||
Vulkan_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libvulkan.so
|
||||
|
||||
//The directory containing a CMake configuration file for glfw3.
|
||||
glfw3_DIR:PATH=/usr/lib/x86_64-linux-gnu/cmake/glfw3
|
||||
|
||||
@@ -410,6 +437,14 @@ CMAKE_UNAME:INTERNAL=/usr/bin/uname
|
||||
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
|
||||
//Details about finding OpenGL
|
||||
FIND_PACKAGE_MESSAGE_DETAILS_OpenGL:INTERNAL=[/usr/lib/x86_64-linux-gnu/libOpenGL.so][/usr/lib/x86_64-linux-gnu/libGLX.so][/usr/include][c ][v()]
|
||||
//Details about finding OpenMP
|
||||
FIND_PACKAGE_MESSAGE_DETAILS_OpenMP:INTERNAL=[TRUE][TRUE][c ][v4.5()]
|
||||
//Details about finding OpenMP_C
|
||||
FIND_PACKAGE_MESSAGE_DETAILS_OpenMP_C:INTERNAL=[-fopenmp][/usr/lib/gcc/x86_64-linux-gnu/13/libgomp.so][/usr/lib/x86_64-linux-gnu/libpthread.a][v4.5()]
|
||||
//Details about finding OpenMP_CXX
|
||||
FIND_PACKAGE_MESSAGE_DETAILS_OpenMP_CXX:INTERNAL=[-fopenmp][/usr/lib/gcc/x86_64-linux-gnu/13/libgomp.so][/usr/lib/x86_64-linux-gnu/libpthread.a][v4.5()]
|
||||
//Details about finding Vulkan
|
||||
FIND_PACKAGE_MESSAGE_DETAILS_Vulkan:INTERNAL=[/usr/lib/x86_64-linux-gnu/libvulkan.so][/usr/include][cfound components: glslangValidator missing components: glslc][v1.3.275()]
|
||||
//ADVANCED property for variable: OPENGL_EGL_INCLUDE_DIR
|
||||
OPENGL_EGL_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: OPENGL_GLES2_INCLUDE_DIR
|
||||
@@ -422,8 +457,6 @@ OPENGL_GLX_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
||||
OPENGL_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: OPENGL_egl_LIBRARY
|
||||
OPENGL_egl_LIBRARY-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: OPENGL_gl_LIBRARY
|
||||
OPENGL_gl_LIBRARY-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: OPENGL_gles2_LIBRARY
|
||||
OPENGL_gles2_LIBRARY-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: OPENGL_gles3_LIBRARY
|
||||
@@ -436,6 +469,38 @@ OPENGL_glx_LIBRARY-ADVANCED:INTERNAL=1
|
||||
OPENGL_opengl_LIBRARY-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: OPENGL_xmesa_INCLUDE_DIR
|
||||
OPENGL_xmesa_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
||||
//Result of TRY_COMPILE
|
||||
OpenMP_COMPILE_RESULT_CXX_fopenmp:INTERNAL=TRUE
|
||||
//Result of TRY_COMPILE
|
||||
OpenMP_COMPILE_RESULT_C_fopenmp:INTERNAL=TRUE
|
||||
//ADVANCED property for variable: OpenMP_CXX_FLAGS
|
||||
OpenMP_CXX_FLAGS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: OpenMP_CXX_LIB_NAMES
|
||||
OpenMP_CXX_LIB_NAMES-ADVANCED:INTERNAL=1
|
||||
//CXX compiler's OpenMP specification date
|
||||
OpenMP_CXX_SPEC_DATE:INTERNAL=201511
|
||||
//ADVANCED property for variable: OpenMP_C_FLAGS
|
||||
OpenMP_C_FLAGS-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: OpenMP_C_LIB_NAMES
|
||||
OpenMP_C_LIB_NAMES-ADVANCED:INTERNAL=1
|
||||
//C compiler's OpenMP specification date
|
||||
OpenMP_C_SPEC_DATE:INTERNAL=201511
|
||||
//Result of TRY_COMPILE
|
||||
OpenMP_SPECTEST_CXX_:INTERNAL=TRUE
|
||||
//Result of TRY_COMPILE
|
||||
OpenMP_SPECTEST_C_:INTERNAL=TRUE
|
||||
//ADVANCED property for variable: OpenMP_gomp_LIBRARY
|
||||
OpenMP_gomp_LIBRARY-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: OpenMP_pthread_LIBRARY
|
||||
OpenMP_pthread_LIBRARY-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: Vulkan_GLSLANG_VALIDATOR_EXECUTABLE
|
||||
Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: Vulkan_GLSLC_EXECUTABLE
|
||||
Vulkan_GLSLC_EXECUTABLE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: Vulkan_INCLUDE_DIR
|
||||
Vulkan_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: Vulkan_LIBRARY
|
||||
Vulkan_LIBRARY-ADVANCED:INTERNAL=1
|
||||
//linker supports push/pop state
|
||||
_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
set(CMAKE_HOST_SYSTEM "Linux-6.17.0-22-generic")
|
||||
set(CMAKE_HOST_SYSTEM "Linux-6.17.0-23-generic")
|
||||
set(CMAKE_HOST_SYSTEM_NAME "Linux")
|
||||
set(CMAKE_HOST_SYSTEM_VERSION "6.17.0-22-generic")
|
||||
set(CMAKE_HOST_SYSTEM_VERSION "6.17.0-23-generic")
|
||||
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
|
||||
|
||||
|
||||
|
||||
set(CMAKE_SYSTEM "Linux-6.17.0-22-generic")
|
||||
set(CMAKE_SYSTEM "Linux-6.17.0-23-generic")
|
||||
set(CMAKE_SYSTEM_NAME "Linux")
|
||||
set(CMAKE_SYSTEM_VERSION "6.17.0-22-generic")
|
||||
set(CMAKE_SYSTEM_VERSION "6.17.0-23-generic")
|
||||
set(CMAKE_SYSTEM_PROCESSOR "x86_64")
|
||||
|
||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||
|
||||
@@ -1,85 +0,0 @@
|
||||
set(CMAKE_C_COMPILER "/usr/bin/cc")
|
||||
set(CMAKE_C_COMPILER_ARG1 "")
|
||||
set(CMAKE_C_COMPILER_ID "GNU")
|
||||
set(CMAKE_C_COMPILER_VERSION "15.2.1")
|
||||
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
|
||||
set(CMAKE_C_COMPILER_WRAPPER "")
|
||||
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "23")
|
||||
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 "Linux")
|
||||
set(CMAKE_C_SIMULATE_ID "")
|
||||
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU")
|
||||
set(CMAKE_C_COMPILER_APPLE_SYSROOT "")
|
||||
set(CMAKE_C_SIMULATE_VERSION "")
|
||||
set(CMAKE_C_COMPILER_ARCHITECTURE_ID "x86_64")
|
||||
|
||||
|
||||
|
||||
|
||||
set(CMAKE_AR "/usr/bin/ar")
|
||||
set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar")
|
||||
set(CMAKE_RANLIB "/usr/bin/ranlib")
|
||||
set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib")
|
||||
set(CMAKE_LINKER "/usr/bin/ld")
|
||||
set(CMAKE_LINKER_LINK "")
|
||||
set(CMAKE_LINKER_LLD "")
|
||||
set(CMAKE_C_COMPILER_LINKER "/usr/bin/ld")
|
||||
set(CMAKE_C_COMPILER_LINKER_ID "GNU")
|
||||
set(CMAKE_C_COMPILER_LINKER_VERSION 2.46)
|
||||
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 TRUE)
|
||||
set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED TRUE)
|
||||
set(CMAKE_C_LINKER_PUSHPOP_STATE_SUPPORTED TRUE)
|
||||
|
||||
# Save compiler ABI information.
|
||||
set(CMAKE_C_SIZEOF_DATA_PTR "8")
|
||||
set(CMAKE_C_COMPILER_ABI "ELF")
|
||||
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 "/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include-fixed;/usr/include")
|
||||
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s")
|
||||
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1;/usr/lib;/lib")
|
||||
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||
@@ -1,102 +0,0 @@
|
||||
set(CMAKE_CXX_COMPILER "/usr/bin/c++")
|
||||
set(CMAKE_CXX_COMPILER_ARG1 "")
|
||||
set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||
set(CMAKE_CXX_COMPILER_VERSION "15.2.1")
|
||||
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 "26")
|
||||
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;cxx_std_26")
|
||||
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 "cxx_std_26")
|
||||
|
||||
set(CMAKE_CXX_PLATFORM_ID "Linux")
|
||||
set(CMAKE_CXX_SIMULATE_ID "")
|
||||
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU")
|
||||
set(CMAKE_CXX_COMPILER_APPLE_SYSROOT "")
|
||||
set(CMAKE_CXX_SIMULATE_VERSION "")
|
||||
set(CMAKE_CXX_COMPILER_ARCHITECTURE_ID "x86_64")
|
||||
|
||||
|
||||
|
||||
|
||||
set(CMAKE_AR "/usr/bin/ar")
|
||||
set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar")
|
||||
set(CMAKE_RANLIB "/usr/bin/ranlib")
|
||||
set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib")
|
||||
set(CMAKE_LINKER "/usr/bin/ld")
|
||||
set(CMAKE_LINKER_LINK "")
|
||||
set(CMAKE_LINKER_LLD "")
|
||||
set(CMAKE_CXX_COMPILER_LINKER "/usr/bin/ld")
|
||||
set(CMAKE_CXX_COMPILER_LINKER_ID "GNU")
|
||||
set(CMAKE_CXX_COMPILER_LINKER_VERSION 2.46)
|
||||
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 TRUE)
|
||||
set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED TRUE)
|
||||
set(CMAKE_CXX_LINKER_PUSHPOP_STATE_SUPPORTED TRUE)
|
||||
|
||||
# Save compiler ABI information.
|
||||
set(CMAKE_CXX_SIZEOF_DATA_PTR "8")
|
||||
set(CMAKE_CXX_COMPILER_ABI "ELF")
|
||||
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 "/usr/include/c++/15.2.1;/usr/include/c++/15.2.1/x86_64-pc-linux-gnu;/usr/include/c++/15.2.1/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include-fixed;/usr/include")
|
||||
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc")
|
||||
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1;/usr/lib;/lib")
|
||||
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||
set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "")
|
||||
|
||||
set(CMAKE_CXX_COMPILER_IMPORT_STD "")
|
||||
set(CMAKE_CXX_COMPILER_IMPORT_STD_ERROR_MESSAGE "Unsupported generator: Unix Makefiles")
|
||||
set(CMAKE_CXX_STDLIB_MODULES_JSON "")
|
||||
@@ -1,15 +0,0 @@
|
||||
set(CMAKE_HOST_SYSTEM "Linux-6.19.14-arch1-1")
|
||||
set(CMAKE_HOST_SYSTEM_NAME "Linux")
|
||||
set(CMAKE_HOST_SYSTEM_VERSION "6.19.14-arch1-1")
|
||||
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
|
||||
|
||||
|
||||
|
||||
set(CMAKE_SYSTEM "Linux-6.19.14-arch1-1")
|
||||
set(CMAKE_SYSTEM_NAME "Linux")
|
||||
set(CMAKE_SYSTEM_VERSION "6.19.14-arch1-1")
|
||||
set(CMAKE_SYSTEM_PROCESSOR "x86_64")
|
||||
|
||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||
|
||||
set(CMAKE_SYSTEM_LOADED 1)
|
||||
@@ -1,934 +0,0 @@
|
||||
#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__)
|
||||
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||
|
||||
|
||||
#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(__RENESAS__)
|
||||
# define COMPILER_ID "Renesas"
|
||||
/* __RENESAS_VERSION__ = 0xVVRRPP00 */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__RENESAS_VERSION__ >> 24 & 0xFF)
|
||||
# define COMPILER_VERSION_MINOR HEX(__RENESAS_VERSION__ >> 16 & 0xFF)
|
||||
# define COMPILER_VERSION_PATCH HEX(__RENESAS_VERSION__ >> 8 & 0xFF)
|
||||
|
||||
#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(__DCC__) && defined(_DIAB_TOOL)
|
||||
# define COMPILER_ID "Diab"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__VERSION_MAJOR_NUMBER__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__VERSION_MINOR_NUMBER__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__VERSION_ARCH_FEATURE_NUMBER__)
|
||||
# define COMPILER_VERSION_TWEAK DEC(__VERSION_BUG_FIX_NUMBER__)
|
||||
|
||||
|
||||
#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__) || defined(__CPARM__)
|
||||
# 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
|
||||
|
||||
#elif defined(__RENESAS__)
|
||||
# if defined(__CCRX__)
|
||||
# define ARCHITECTURE_ID "RX"
|
||||
|
||||
# elif defined(__CCRL__)
|
||||
# define ARCHITECTURE_ID "RL78"
|
||||
|
||||
# elif defined(__CCRH__)
|
||||
# define ARCHITECTURE_ID "RH850"
|
||||
|
||||
# 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__) && !defined(__RENESAS__)
|
||||
# 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(__RENESAS__)) && \
|
||||
!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
|
||||
#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR)
|
||||
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
|
||||
Binary file not shown.
@@ -1,949 +0,0 @@
|
||||
/* 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__)
|
||||
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||
|
||||
|
||||
#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(__RENESAS__)
|
||||
# define COMPILER_ID "Renesas"
|
||||
/* __RENESAS_VERSION__ = 0xVVRRPP00 */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__RENESAS_VERSION__ >> 24 & 0xFF)
|
||||
# define COMPILER_VERSION_MINOR HEX(__RENESAS_VERSION__ >> 16 & 0xFF)
|
||||
# define COMPILER_VERSION_PATCH HEX(__RENESAS_VERSION__ >> 8 & 0xFF)
|
||||
|
||||
#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
|
||||
|
||||
#elif defined(__DCC__) && defined(_DIAB_TOOL)
|
||||
# define COMPILER_ID "Diab"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__VERSION_MAJOR_NUMBER__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__VERSION_MINOR_NUMBER__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__VERSION_ARCH_FEATURE_NUMBER__)
|
||||
# define COMPILER_VERSION_TWEAK DEC(__VERSION_BUG_FIX_NUMBER__)
|
||||
|
||||
|
||||
|
||||
/* 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__) || defined(__CPARM__)
|
||||
# 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
|
||||
|
||||
#elif defined(__RENESAS__)
|
||||
# if defined(__CCRX__)
|
||||
# define ARCHITECTURE_ID "RX"
|
||||
|
||||
# elif defined(__CCRL__)
|
||||
# define ARCHITECTURE_ID "RL78"
|
||||
|
||||
# elif defined(__CCRH__)
|
||||
# define ARCHITECTURE_ID "RH850"
|
||||
|
||||
# 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(__RENESAS__)) && \
|
||||
!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
|
||||
#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR)
|
||||
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;
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+505
-2974
File diff suppressed because it is too large
Load Diff
BIN
Binary file not shown.
BIN
Binary file not shown.
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"InstallScripts" :
|
||||
[
|
||||
"/home/beluga/unityproject/BiPy/build/cmake_install.cmake"
|
||||
],
|
||||
"Parallel" : false
|
||||
}
|
||||
@@ -1,122 +0,0 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 4.3
|
||||
|
||||
# Default target executed when no arguments are given to make.
|
||||
default_target: all
|
||||
.PHONY : default_target
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : %,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : SCCS/s.%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : s.%
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
# Command-line flag to silence nested $(MAKE).
|
||||
$(VERBOSE)MAKESILENT = -s
|
||||
|
||||
#Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/beluga/unityproject/BiPy
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/beluga/unityproject/BiPy/build
|
||||
|
||||
#=============================================================================
|
||||
# Directory level rules for the build root directory
|
||||
|
||||
# The main recursive "all" target.
|
||||
all: CMakeFiles/test_ui.dir/all
|
||||
.PHONY : all
|
||||
|
||||
# The main recursive "codegen" target.
|
||||
codegen: CMakeFiles/test_ui.dir/codegen
|
||||
.PHONY : codegen
|
||||
|
||||
# The main recursive "preinstall" target.
|
||||
preinstall:
|
||||
.PHONY : preinstall
|
||||
|
||||
# The main recursive "clean" target.
|
||||
clean: CMakeFiles/test_ui.dir/clean
|
||||
.PHONY : clean
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for target CMakeFiles/test_ui.dir
|
||||
|
||||
# All Build rule for target.
|
||||
CMakeFiles/test_ui.dir/all:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/depend
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/beluga/unityproject/BiPy/build/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10 "Built target test_ui"
|
||||
.PHONY : CMakeFiles/test_ui.dir/all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
CMakeFiles/test_ui.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/beluga/unityproject/BiPy/build/CMakeFiles 10
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/test_ui.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/beluga/unityproject/BiPy/build/CMakeFiles 0
|
||||
.PHONY : CMakeFiles/test_ui.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
test_ui: CMakeFiles/test_ui.dir/rule
|
||||
.PHONY : test_ui
|
||||
|
||||
# codegen rule for target.
|
||||
CMakeFiles/test_ui.dir/codegen:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/codegen
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/beluga/unityproject/BiPy/build/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10 "Finished codegen for target test_ui"
|
||||
.PHONY : CMakeFiles/test_ui.dir/codegen
|
||||
|
||||
# clean rule for target.
|
||||
CMakeFiles/test_ui.dir/clean:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/clean
|
||||
.PHONY : CMakeFiles/test_ui.dir/clean
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
/home/beluga/unityproject/BiPy/build/CMakeFiles/test_ui.dir
|
||||
/home/beluga/unityproject/BiPy/build/CMakeFiles/edit_cache.dir
|
||||
/home/beluga/unityproject/BiPy/build/CMakeFiles/rebuild_cache.dir
|
||||
/home/koder/Repos/BiPy/build/CMakeFiles/BIPY_App.dir
|
||||
/home/koder/Repos/BiPy/build/CMakeFiles/edit_cache.dir
|
||||
/home/koder/Repos/BiPy/build/CMakeFiles/rebuild_cache.dir
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
10
|
||||
@@ -0,0 +1,64 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Ninja" Generator, CMake Version 3.28
|
||||
|
||||
# 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: BIPY_Project
|
||||
# Configurations: Debug
|
||||
# =============================================================================
|
||||
# =============================================================================
|
||||
|
||||
#############################################
|
||||
# Rule for compiling CXX files.
|
||||
|
||||
rule CXX_COMPILER__BIPY_App_unscanned_Debug
|
||||
depfile = $DEP_FILE
|
||||
deps = gcc
|
||||
command = ${LAUNCHER}${CODE_CHECK}/usr/bin/g++ $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__BIPY_App_Debug
|
||||
command = $PRE_LINK && /usr/bin/g++ $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES && $POST_BUILD
|
||||
description = Linking CXX executable $TARGET_FILE
|
||||
restat = $RESTAT
|
||||
|
||||
|
||||
#############################################
|
||||
# Rule for running custom commands.
|
||||
|
||||
rule CUSTOM_COMMAND
|
||||
command = $COMMAND
|
||||
description = $DESC
|
||||
|
||||
|
||||
#############################################
|
||||
# Rule for re-running cmake.
|
||||
|
||||
rule RERUN_CMAKE
|
||||
command = /usr/bin/cmake --regenerate-during-build -S/home/koder/Repos/BiPy -B/home/koder/Repos/BiPy/build
|
||||
description = Re-running CMake...
|
||||
generator = 1
|
||||
|
||||
|
||||
#############################################
|
||||
# Rule for cleaning all built files.
|
||||
|
||||
rule CLEAN
|
||||
command = /usr/bin/ninja $FILE_ARG -t clean $TARGETS
|
||||
description = Cleaning all built files...
|
||||
|
||||
|
||||
#############################################
|
||||
# Rule for printing all primary targets available.
|
||||
|
||||
rule HELP
|
||||
command = /usr/bin/ninja -t targets
|
||||
description = All primary targets available:
|
||||
|
||||
@@ -1,32 +0,0 @@
|
||||
|
||||
# Consider dependencies only in project.
|
||||
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
|
||||
|
||||
# The set of languages for which implicit dependencies are needed:
|
||||
set(CMAKE_DEPENDS_LANGUAGES
|
||||
)
|
||||
|
||||
# The set of dependency files which are needed:
|
||||
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||
"/home/beluga/unityproject/BiPy/GUI/visual.cpp" "CMakeFiles/test_ui.dir/GUI/visual.cpp.o" "gcc" "CMakeFiles/test_ui.dir/GUI/visual.cpp.o.d"
|
||||
"/home/beluga/unityproject/BiPy/imgui/backends/imgui_impl_glfw.cpp" "CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.o" "gcc" "CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.o.d"
|
||||
"/home/beluga/unityproject/BiPy/imgui/backends/imgui_impl_opengl3.cpp" "CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.o" "gcc" "CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.o.d"
|
||||
"/home/beluga/unityproject/BiPy/imgui/imgui.cpp" "CMakeFiles/test_ui.dir/imgui/imgui.cpp.o" "gcc" "CMakeFiles/test_ui.dir/imgui/imgui.cpp.o.d"
|
||||
"/home/beluga/unityproject/BiPy/imgui/imgui_demo.cpp" "CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.o" "gcc" "CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.o.d"
|
||||
"/home/beluga/unityproject/BiPy/imgui/imgui_draw.cpp" "CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.o" "gcc" "CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.o.d"
|
||||
"/home/beluga/unityproject/BiPy/imgui/imgui_tables.cpp" "CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.o" "gcc" "CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.o.d"
|
||||
"/home/beluga/unityproject/BiPy/imgui/imgui_widgets.cpp" "CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.o" "gcc" "CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.o.d"
|
||||
"/home/beluga/unityproject/BiPy/test_launcher.cpp" "CMakeFiles/test_ui.dir/test_launcher.cpp.o" "gcc" "CMakeFiles/test_ui.dir/test_launcher.cpp.o.d"
|
||||
"" "test_ui" "gcc" "CMakeFiles/test_ui.dir/link.d"
|
||||
)
|
||||
|
||||
# Targets to which this target links which contain Fortran sources.
|
||||
set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
|
||||
)
|
||||
|
||||
# Targets to which this target links which contain Fortran sources.
|
||||
set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
|
||||
)
|
||||
|
||||
# Fortran module output directory.
|
||||
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||
Binary file not shown.
@@ -1,15 +0,0 @@
|
||||
CMakeFiles/test_ui.dir/GUI/visual.cpp.o: \
|
||||
/home/beluga/unityproject/BiPy/GUI/visual.cpp /usr/include/stdc-predef.h \
|
||||
/home/beluga/unityproject/BiPy/GUI/visual.hpp \
|
||||
/home/beluga/unityproject/BiPy/imgui/imgui.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/imconfig.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/float.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \
|
||||
/usr/include/string.h /usr/include/bits/libc-header-start.h \
|
||||
/usr/include/features.h /usr/include/features-time64.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||
/usr/include/strings.h /usr/include/assert.h
|
||||
@@ -1,243 +0,0 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 4.3
|
||||
|
||||
# Delete rule output on recipe failure.
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : %,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : SCCS/s.%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : s.%
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
# Command-line flag to silence nested $(MAKE).
|
||||
$(VERBOSE)MAKESILENT = -s
|
||||
|
||||
#Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/beluga/unityproject/BiPy
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/beluga/unityproject/BiPy/build
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include CMakeFiles/test_ui.dir/depend.make
|
||||
# Include any dependencies generated by the compiler for this target.
|
||||
include CMakeFiles/test_ui.dir/compiler_depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include CMakeFiles/test_ui.dir/progress.make
|
||||
|
||||
# Include the compile flags for this target's objects.
|
||||
include CMakeFiles/test_ui.dir/flags.make
|
||||
|
||||
CMakeFiles/test_ui.dir/codegen:
|
||||
.PHONY : CMakeFiles/test_ui.dir/codegen
|
||||
|
||||
CMakeFiles/test_ui.dir/test_launcher.cpp.o: CMakeFiles/test_ui.dir/flags.make
|
||||
CMakeFiles/test_ui.dir/test_launcher.cpp.o: /home/beluga/unityproject/BiPy/test_launcher.cpp
|
||||
CMakeFiles/test_ui.dir/test_launcher.cpp.o: CMakeFiles/test_ui.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/beluga/unityproject/BiPy/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/test_ui.dir/test_launcher.cpp.o"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/test_ui.dir/test_launcher.cpp.o -MF CMakeFiles/test_ui.dir/test_launcher.cpp.o.d -o CMakeFiles/test_ui.dir/test_launcher.cpp.o -c /home/beluga/unityproject/BiPy/test_launcher.cpp
|
||||
|
||||
CMakeFiles/test_ui.dir/test_launcher.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/test_ui.dir/test_launcher.cpp.i"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/beluga/unityproject/BiPy/test_launcher.cpp > CMakeFiles/test_ui.dir/test_launcher.cpp.i
|
||||
|
||||
CMakeFiles/test_ui.dir/test_launcher.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/test_ui.dir/test_launcher.cpp.s"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/beluga/unityproject/BiPy/test_launcher.cpp -o CMakeFiles/test_ui.dir/test_launcher.cpp.s
|
||||
|
||||
CMakeFiles/test_ui.dir/GUI/visual.cpp.o: CMakeFiles/test_ui.dir/flags.make
|
||||
CMakeFiles/test_ui.dir/GUI/visual.cpp.o: /home/beluga/unityproject/BiPy/GUI/visual.cpp
|
||||
CMakeFiles/test_ui.dir/GUI/visual.cpp.o: CMakeFiles/test_ui.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/beluga/unityproject/BiPy/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/test_ui.dir/GUI/visual.cpp.o"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/test_ui.dir/GUI/visual.cpp.o -MF CMakeFiles/test_ui.dir/GUI/visual.cpp.o.d -o CMakeFiles/test_ui.dir/GUI/visual.cpp.o -c /home/beluga/unityproject/BiPy/GUI/visual.cpp
|
||||
|
||||
CMakeFiles/test_ui.dir/GUI/visual.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/test_ui.dir/GUI/visual.cpp.i"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/beluga/unityproject/BiPy/GUI/visual.cpp > CMakeFiles/test_ui.dir/GUI/visual.cpp.i
|
||||
|
||||
CMakeFiles/test_ui.dir/GUI/visual.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/test_ui.dir/GUI/visual.cpp.s"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/beluga/unityproject/BiPy/GUI/visual.cpp -o CMakeFiles/test_ui.dir/GUI/visual.cpp.s
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/imgui.cpp.o: CMakeFiles/test_ui.dir/flags.make
|
||||
CMakeFiles/test_ui.dir/imgui/imgui.cpp.o: /home/beluga/unityproject/BiPy/imgui/imgui.cpp
|
||||
CMakeFiles/test_ui.dir/imgui/imgui.cpp.o: CMakeFiles/test_ui.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/beluga/unityproject/BiPy/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/test_ui.dir/imgui/imgui.cpp.o"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/test_ui.dir/imgui/imgui.cpp.o -MF CMakeFiles/test_ui.dir/imgui/imgui.cpp.o.d -o CMakeFiles/test_ui.dir/imgui/imgui.cpp.o -c /home/beluga/unityproject/BiPy/imgui/imgui.cpp
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/imgui.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/test_ui.dir/imgui/imgui.cpp.i"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/beluga/unityproject/BiPy/imgui/imgui.cpp > CMakeFiles/test_ui.dir/imgui/imgui.cpp.i
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/imgui.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/test_ui.dir/imgui/imgui.cpp.s"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/beluga/unityproject/BiPy/imgui/imgui.cpp -o CMakeFiles/test_ui.dir/imgui/imgui.cpp.s
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.o: CMakeFiles/test_ui.dir/flags.make
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.o: /home/beluga/unityproject/BiPy/imgui/imgui_draw.cpp
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.o: CMakeFiles/test_ui.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/beluga/unityproject/BiPy/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.o"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.o -MF CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.o.d -o CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.o -c /home/beluga/unityproject/BiPy/imgui/imgui_draw.cpp
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.i"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/beluga/unityproject/BiPy/imgui/imgui_draw.cpp > CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.i
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.s"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/beluga/unityproject/BiPy/imgui/imgui_draw.cpp -o CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.s
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.o: CMakeFiles/test_ui.dir/flags.make
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.o: /home/beluga/unityproject/BiPy/imgui/imgui_widgets.cpp
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.o: CMakeFiles/test_ui.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/beluga/unityproject/BiPy/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.o"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.o -MF CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.o.d -o CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.o -c /home/beluga/unityproject/BiPy/imgui/imgui_widgets.cpp
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.i"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/beluga/unityproject/BiPy/imgui/imgui_widgets.cpp > CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.i
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.s"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/beluga/unityproject/BiPy/imgui/imgui_widgets.cpp -o CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.s
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.o: CMakeFiles/test_ui.dir/flags.make
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.o: /home/beluga/unityproject/BiPy/imgui/imgui_tables.cpp
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.o: CMakeFiles/test_ui.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/beluga/unityproject/BiPy/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.o"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.o -MF CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.o.d -o CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.o -c /home/beluga/unityproject/BiPy/imgui/imgui_tables.cpp
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.i"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/beluga/unityproject/BiPy/imgui/imgui_tables.cpp > CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.i
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.s"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/beluga/unityproject/BiPy/imgui/imgui_tables.cpp -o CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.s
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.o: CMakeFiles/test_ui.dir/flags.make
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.o: /home/beluga/unityproject/BiPy/imgui/imgui_demo.cpp
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.o: CMakeFiles/test_ui.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/beluga/unityproject/BiPy/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.o"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.o -MF CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.o.d -o CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.o -c /home/beluga/unityproject/BiPy/imgui/imgui_demo.cpp
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.i"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/beluga/unityproject/BiPy/imgui/imgui_demo.cpp > CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.i
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.s"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/beluga/unityproject/BiPy/imgui/imgui_demo.cpp -o CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.s
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.o: CMakeFiles/test_ui.dir/flags.make
|
||||
CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.o: /home/beluga/unityproject/BiPy/imgui/backends/imgui_impl_glfw.cpp
|
||||
CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.o: CMakeFiles/test_ui.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/beluga/unityproject/BiPy/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.o"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.o -MF CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.o.d -o CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.o -c /home/beluga/unityproject/BiPy/imgui/backends/imgui_impl_glfw.cpp
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.i"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/beluga/unityproject/BiPy/imgui/backends/imgui_impl_glfw.cpp > CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.i
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.s"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/beluga/unityproject/BiPy/imgui/backends/imgui_impl_glfw.cpp -o CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.s
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.o: CMakeFiles/test_ui.dir/flags.make
|
||||
CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.o: /home/beluga/unityproject/BiPy/imgui/backends/imgui_impl_opengl3.cpp
|
||||
CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.o: CMakeFiles/test_ui.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/beluga/unityproject/BiPy/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.o"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.o -MF CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.o.d -o CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.o -c /home/beluga/unityproject/BiPy/imgui/backends/imgui_impl_opengl3.cpp
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.i"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/beluga/unityproject/BiPy/imgui/backends/imgui_impl_opengl3.cpp > CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.i
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.s"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/beluga/unityproject/BiPy/imgui/backends/imgui_impl_opengl3.cpp -o CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.s
|
||||
|
||||
# Object files for target test_ui
|
||||
test_ui_OBJECTS = \
|
||||
"CMakeFiles/test_ui.dir/test_launcher.cpp.o" \
|
||||
"CMakeFiles/test_ui.dir/GUI/visual.cpp.o" \
|
||||
"CMakeFiles/test_ui.dir/imgui/imgui.cpp.o" \
|
||||
"CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.o" \
|
||||
"CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.o" \
|
||||
"CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.o" \
|
||||
"CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.o" \
|
||||
"CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.o" \
|
||||
"CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.o"
|
||||
|
||||
# External object files for target test_ui
|
||||
test_ui_EXTERNAL_OBJECTS =
|
||||
|
||||
test_ui: CMakeFiles/test_ui.dir/test_launcher.cpp.o
|
||||
test_ui: CMakeFiles/test_ui.dir/GUI/visual.cpp.o
|
||||
test_ui: CMakeFiles/test_ui.dir/imgui/imgui.cpp.o
|
||||
test_ui: CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.o
|
||||
test_ui: CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.o
|
||||
test_ui: CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.o
|
||||
test_ui: CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.o
|
||||
test_ui: CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.o
|
||||
test_ui: CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.o
|
||||
test_ui: CMakeFiles/test_ui.dir/build.make
|
||||
test_ui: CMakeFiles/test_ui.dir/compiler_depend.ts
|
||||
test_ui: /usr/lib/libglfw.so.3.4
|
||||
test_ui: CMakeFiles/test_ui.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/beluga/unityproject/BiPy/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Linking CXX executable test_ui"
|
||||
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/test_ui.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
CMakeFiles/test_ui.dir/build: test_ui
|
||||
.PHONY : CMakeFiles/test_ui.dir/build
|
||||
|
||||
CMakeFiles/test_ui.dir/clean:
|
||||
$(CMAKE_COMMAND) -P CMakeFiles/test_ui.dir/cmake_clean.cmake
|
||||
.PHONY : CMakeFiles/test_ui.dir/clean
|
||||
|
||||
CMakeFiles/test_ui.dir/depend:
|
||||
cd /home/beluga/unityproject/BiPy/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/beluga/unityproject/BiPy /home/beluga/unityproject/BiPy /home/beluga/unityproject/BiPy/build /home/beluga/unityproject/BiPy/build /home/beluga/unityproject/BiPy/build/CMakeFiles/test_ui.dir/DependInfo.cmake "--color=$(COLOR)" test_ui
|
||||
.PHONY : CMakeFiles/test_ui.dir/depend
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
file(REMOVE_RECURSE
|
||||
"CMakeFiles/test_ui.dir/link.d"
|
||||
"CMakeFiles/test_ui.dir/GUI/visual.cpp.o"
|
||||
"CMakeFiles/test_ui.dir/GUI/visual.cpp.o.d"
|
||||
"CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.o"
|
||||
"CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.o.d"
|
||||
"CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.o"
|
||||
"CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.o.d"
|
||||
"CMakeFiles/test_ui.dir/imgui/imgui.cpp.o"
|
||||
"CMakeFiles/test_ui.dir/imgui/imgui.cpp.o.d"
|
||||
"CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.o"
|
||||
"CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.o.d"
|
||||
"CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.o"
|
||||
"CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.o.d"
|
||||
"CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.o"
|
||||
"CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.o.d"
|
||||
"CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.o"
|
||||
"CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.o.d"
|
||||
"CMakeFiles/test_ui.dir/test_launcher.cpp.o"
|
||||
"CMakeFiles/test_ui.dir/test_launcher.cpp.o.d"
|
||||
"test_ui"
|
||||
"test_ui.pdb"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang CXX)
|
||||
include(CMakeFiles/test_ui.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
||||
@@ -1,2 +0,0 @@
|
||||
# Empty compiler generated dependencies file for test_ui.
|
||||
# This may be replaced when dependencies are built.
|
||||
@@ -1,2 +0,0 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Timestamp file for compiler generated dependencies management for test_ui.
|
||||
@@ -1,2 +0,0 @@
|
||||
# Empty dependencies file for test_ui.
|
||||
# This may be replaced when dependencies are built.
|
||||
@@ -1,10 +0,0 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 4.3
|
||||
|
||||
# compile CXX with /usr/bin/c++
|
||||
CXX_DEFINES =
|
||||
|
||||
CXX_INCLUDES = -I/home/beluga/unityproject/BiPy -I/home/beluga/unityproject/BiPy/imgui -I/home/beluga/unityproject/BiPy/imgui/backends
|
||||
|
||||
CXX_FLAGS = -std=gnu++20
|
||||
|
||||
Binary file not shown.
@@ -1,53 +0,0 @@
|
||||
CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.o: \
|
||||
/home/beluga/unityproject/BiPy/imgui/backends/imgui_impl_glfw.cpp \
|
||||
/usr/include/stdc-predef.h /home/beluga/unityproject/BiPy/imgui/imgui.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/imconfig.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/float.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \
|
||||
/usr/include/string.h /usr/include/bits/libc-header-start.h \
|
||||
/usr/include/features.h /usr/include/features-time64.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||
/usr/include/strings.h /usr/include/assert.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/backends/imgui_impl_glfw.h \
|
||||
/usr/include/GLFW/glfw3.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \
|
||||
/usr/include/stdint.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||
/usr/include/bits/wchar.h /usr/include/bits/stdint-intn.h \
|
||||
/usr/include/bits/stdint-uintn.h /usr/include/bits/stdint-least.h \
|
||||
/usr/include/GL/gl.h /usr/include/GL/glext.h \
|
||||
/usr/include/KHR/khrplatform.h /usr/include/GLFW/glfw3native.h \
|
||||
/usr/include/X11/Xlib.h /usr/include/sys/types.h \
|
||||
/usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \
|
||||
/usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/endianness.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/uintn-identity.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \
|
||||
/usr/include/bits/types/__sigset_t.h \
|
||||
/usr/include/bits/types/struct_timeval.h \
|
||||
/usr/include/bits/types/struct_timespec.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||
/usr/include/bits/pthreadtypes-arch.h \
|
||||
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||
/usr/include/bits/struct_rwlock.h /usr/include/X11/X.h \
|
||||
/usr/include/X11/Xfuncproto.h /usr/include/X11/Xosdefs.h \
|
||||
/usr/include/X11/extensions/Xrandr.h /usr/include/X11/extensions/randr.h \
|
||||
/usr/include/X11/extensions/Xrender.h /usr/include/X11/Xutil.h \
|
||||
/usr/include/X11/keysym.h /usr/include/X11/keysymdef.h \
|
||||
/usr/include/X11/extensions/render.h /usr/include/X11/Xdefs.h \
|
||||
/usr/include/unistd.h /usr/include/bits/posix_opt.h \
|
||||
/usr/include/bits/environments.h /usr/include/bits/confname.h \
|
||||
/usr/include/bits/getopt_posix.h /usr/include/bits/getopt_core.h \
|
||||
/usr/include/bits/unistd_ext.h /usr/include/linux/close_range.h \
|
||||
/usr/include/stdio.h /usr/include/bits/types/__fpos_t.h \
|
||||
/usr/include/bits/types/__mbstate_t.h \
|
||||
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
|
||||
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
|
||||
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/floatn.h \
|
||||
/usr/include/bits/floatn-common.h
|
||||
Binary file not shown.
@@ -1,50 +0,0 @@
|
||||
CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.o: \
|
||||
/home/beluga/unityproject/BiPy/imgui/backends/imgui_impl_opengl3.cpp \
|
||||
/usr/include/stdc-predef.h /home/beluga/unityproject/BiPy/imgui/imgui.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/imconfig.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/float.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \
|
||||
/usr/include/string.h /usr/include/bits/libc-header-start.h \
|
||||
/usr/include/features.h /usr/include/features-time64.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||
/usr/include/strings.h /usr/include/assert.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/backends/imgui_impl_opengl3.h \
|
||||
/usr/include/stdio.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \
|
||||
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
|
||||
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
|
||||
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/floatn.h \
|
||||
/usr/include/bits/floatn-common.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \
|
||||
/usr/include/bits/stdint-least.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/backends/imgui_impl_opengl3_loader.h \
|
||||
/usr/include/c++/15.2.1/stdlib.h /usr/include/c++/15.2.1/cstdlib \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||
/usr/include/c++/15.2.1/pstl/pstl_config.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/bits/types/clock_t.h \
|
||||
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \
|
||||
/usr/include/bits/types/timer_t.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/endianness.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
|
||||
/usr/include/bits/types/struct_timeval.h \
|
||||
/usr/include/bits/types/struct_timespec.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||
/usr/include/bits/pthreadtypes-arch.h \
|
||||
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib-float.h /usr/include/c++/15.2.1/bits/std_abs.h \
|
||||
/usr/include/dlfcn.h /usr/include/bits/dlfcn.h \
|
||||
/usr/include/bits/dl_find_object.h
|
||||
Binary file not shown.
@@ -1,229 +0,0 @@
|
||||
CMakeFiles/test_ui.dir/imgui/imgui.cpp.o: \
|
||||
/home/beluga/unityproject/BiPy/imgui/imgui.cpp \
|
||||
/usr/include/stdc-predef.h /home/beluga/unityproject/BiPy/imgui/imgui.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/imconfig.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/float.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \
|
||||
/usr/include/string.h /usr/include/bits/libc-header-start.h \
|
||||
/usr/include/features.h /usr/include/features-time64.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||
/usr/include/strings.h /usr/include/assert.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/imgui_internal.h \
|
||||
/usr/include/stdio.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \
|
||||
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
|
||||
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
|
||||
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/floatn.h \
|
||||
/usr/include/bits/floatn-common.h /usr/include/c++/15.2.1/stdlib.h \
|
||||
/usr/include/c++/15.2.1/cstdlib \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||
/usr/include/c++/15.2.1/pstl/pstl_config.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/bits/types/clock_t.h \
|
||||
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \
|
||||
/usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/endianness.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/uintn-identity.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \
|
||||
/usr/include/bits/types/__sigset_t.h \
|
||||
/usr/include/bits/types/struct_timeval.h \
|
||||
/usr/include/bits/types/struct_timespec.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||
/usr/include/bits/pthreadtypes-arch.h \
|
||||
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib-float.h /usr/include/c++/15.2.1/bits/std_abs.h \
|
||||
/usr/include/c++/15.2.1/math.h /usr/include/c++/15.2.1/cmath \
|
||||
/usr/include/c++/15.2.1/bits/requires_hosted.h \
|
||||
/usr/include/c++/15.2.1/bits/cpp_type_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/version.h \
|
||||
/usr/include/c++/15.2.1/type_traits \
|
||||
/usr/include/c++/15.2.1/ext/type_traits.h /usr/include/math.h \
|
||||
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
|
||||
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
|
||||
/usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \
|
||||
/usr/include/bits/mathcalls-helper-functions.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \
|
||||
/usr/include/bits/iscanonical.h /usr/include/c++/15.2.1/bits/specfun.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_algobase.h \
|
||||
/usr/include/c++/15.2.1/bits/functexcept.h \
|
||||
/usr/include/c++/15.2.1/bits/exception_defines.h \
|
||||
/usr/include/c++/15.2.1/ext/numeric_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_pair.h \
|
||||
/usr/include/c++/15.2.1/bits/move.h \
|
||||
/usr/include/c++/15.2.1/bits/utility.h /usr/include/c++/15.2.1/compare \
|
||||
/usr/include/c++/15.2.1/concepts \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator_base_types.h \
|
||||
/usr/include/c++/15.2.1/bits/iterator_concepts.h \
|
||||
/usr/include/c++/15.2.1/bits/ptr_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/ranges_cmp.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator_base_funcs.h \
|
||||
/usr/include/c++/15.2.1/bits/concept_check.h \
|
||||
/usr/include/c++/15.2.1/debug/assertions.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator.h /usr/include/c++/15.2.1/new \
|
||||
/usr/include/c++/15.2.1/bits/exception.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_construct.h \
|
||||
/usr/include/c++/15.2.1/debug/debug.h \
|
||||
/usr/include/c++/15.2.1/bits/predefined_ops.h \
|
||||
/usr/include/c++/15.2.1/bit /usr/include/c++/15.2.1/limits \
|
||||
/usr/include/c++/15.2.1/tr1/gamma.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/special_function_util.h \
|
||||
/usr/include/c++/15.2.1/tr1/bessel_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/beta_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/ell_integral.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/exp_integral.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/hypergeometric.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/legendre_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/modified_bessel_func.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/poly_hermite.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/poly_laguerre.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/riemann_zeta.tcc \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/uio_lim.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/immintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/x86gprintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/ia32intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/adxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/bmiintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/bmi2intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/cetintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/cldemoteintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/clflushoptintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/clwbintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/clzerointrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/cmpccxaddintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/enqcmdintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/fxsrintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/lzcntintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/lwpintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/movdirintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/mwaitintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/mwaitxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/pconfigintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/popcntintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/pkuintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/prfchiintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/raointintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/rdseedintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/rtmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/serializeintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/sgxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/tbmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/tsxldtrkintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/uintrintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/waitpkgintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/wbnoinvdintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xsaveintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xsavecintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xsaveoptintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xsavesintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xtestintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/hresetintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/usermsrintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/mmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xmmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/mm_malloc.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/emmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/pmmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/tmmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/smmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/wmmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxvnniintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxifmaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxvnniint8intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxvnniint16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx2intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512fintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512cdintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512bwintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512dqintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vlbwintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vldqintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512ifmaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512ifmavlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vbmiintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vbmivlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vpopcntdqintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vbmi2intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vbmi2vlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vnniintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vnnivlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vpopcntdqvlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512bitalgintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512bitalgvlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vp2intersectintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vp2intersectvlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512fp16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512fp16vlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/shaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/sm3intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/sha512intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/sm4intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/fmaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/f16cintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/gfniintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/vaesintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/vpclmulqdqintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512bf16vlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512bf16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxneconvertintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxtileintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxint8intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxbf16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxcomplexintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxavx512intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxtf32intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxtransposeintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxfp8intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/prfchwintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/keylockerintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxfp16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2mediaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2-512mediaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2convertintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2-512convertintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2bf16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2-512bf16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2satcvtintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2-512satcvtintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2minmaxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2-512minmaxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2copyintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/movrsintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxmovrsintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/include/bits/stdint-uintn.h /usr/include/bits/stdint-least.h \
|
||||
/usr/include/sys/wait.h /usr/include/signal.h \
|
||||
/usr/include/bits/signum-generic.h /usr/include/bits/signum-arch.h \
|
||||
/usr/include/bits/types/sig_atomic_t.h \
|
||||
/usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \
|
||||
/usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \
|
||||
/usr/include/bits/siginfo-consts-arch.h \
|
||||
/usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \
|
||||
/usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \
|
||||
/usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \
|
||||
/usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \
|
||||
/usr/include/bits/sigstksz.h /usr/include/unistd.h \
|
||||
/usr/include/bits/posix_opt.h /usr/include/bits/environments.h \
|
||||
/usr/include/bits/confname.h /usr/include/bits/getopt_posix.h \
|
||||
/usr/include/bits/getopt_core.h /usr/include/bits/unistd_ext.h \
|
||||
/usr/include/linux/close_range.h /usr/include/bits/ss_flags.h \
|
||||
/usr/include/bits/types/struct_sigstack.h /usr/include/bits/sigthread.h \
|
||||
/usr/include/bits/signal_ext.h /usr/include/bits/types/idtype_t.h
|
||||
Binary file not shown.
@@ -1,99 +0,0 @@
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.o: \
|
||||
/home/beluga/unityproject/BiPy/imgui/imgui_demo.cpp \
|
||||
/usr/include/stdc-predef.h /home/beluga/unityproject/BiPy/imgui/imgui.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/imconfig.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/float.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \
|
||||
/usr/include/string.h /usr/include/bits/libc-header-start.h \
|
||||
/usr/include/features.h /usr/include/features-time64.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||
/usr/include/strings.h /usr/include/assert.h /usr/include/ctype.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/time64.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/endianness.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/uio_lim.h /usr/include/c++/15.2.1/math.h \
|
||||
/usr/include/c++/15.2.1/cmath \
|
||||
/usr/include/c++/15.2.1/bits/requires_hosted.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||
/usr/include/c++/15.2.1/pstl/pstl_config.h \
|
||||
/usr/include/c++/15.2.1/bits/cpp_type_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/version.h \
|
||||
/usr/include/c++/15.2.1/type_traits \
|
||||
/usr/include/c++/15.2.1/ext/type_traits.h /usr/include/math.h \
|
||||
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
|
||||
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
|
||||
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
|
||||
/usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \
|
||||
/usr/include/bits/mathcalls-helper-functions.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \
|
||||
/usr/include/bits/iscanonical.h /usr/include/c++/15.2.1/bits/std_abs.h \
|
||||
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
|
||||
/usr/include/bits/waitstatus.h /usr/include/sys/types.h \
|
||||
/usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \
|
||||
/usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \
|
||||
/usr/include/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
|
||||
/usr/include/bits/types/struct_timeval.h \
|
||||
/usr/include/bits/types/struct_timespec.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||
/usr/include/bits/pthreadtypes-arch.h \
|
||||
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib-float.h /usr/include/c++/15.2.1/bits/specfun.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_algobase.h \
|
||||
/usr/include/c++/15.2.1/bits/functexcept.h \
|
||||
/usr/include/c++/15.2.1/bits/exception_defines.h \
|
||||
/usr/include/c++/15.2.1/ext/numeric_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_pair.h \
|
||||
/usr/include/c++/15.2.1/bits/move.h \
|
||||
/usr/include/c++/15.2.1/bits/utility.h /usr/include/c++/15.2.1/compare \
|
||||
/usr/include/c++/15.2.1/concepts \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator_base_types.h \
|
||||
/usr/include/c++/15.2.1/bits/iterator_concepts.h \
|
||||
/usr/include/c++/15.2.1/bits/ptr_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/ranges_cmp.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator_base_funcs.h \
|
||||
/usr/include/c++/15.2.1/bits/concept_check.h \
|
||||
/usr/include/c++/15.2.1/debug/assertions.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator.h /usr/include/c++/15.2.1/new \
|
||||
/usr/include/c++/15.2.1/bits/exception.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_construct.h \
|
||||
/usr/include/c++/15.2.1/debug/debug.h \
|
||||
/usr/include/c++/15.2.1/bits/predefined_ops.h \
|
||||
/usr/include/c++/15.2.1/bit /usr/include/c++/15.2.1/limits \
|
||||
/usr/include/c++/15.2.1/tr1/gamma.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/special_function_util.h \
|
||||
/usr/include/c++/15.2.1/tr1/bessel_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/beta_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/ell_integral.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/exp_integral.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/hypergeometric.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/legendre_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/modified_bessel_func.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/poly_hermite.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/poly_laguerre.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/riemann_zeta.tcc /usr/include/stdio.h \
|
||||
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \
|
||||
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
|
||||
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
|
||||
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/c++/15.2.1/stdlib.h \
|
||||
/usr/include/c++/15.2.1/cstdlib \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/include/bits/stdint-uintn.h /usr/include/bits/stdint-least.h \
|
||||
/usr/include/inttypes.h
|
||||
Binary file not shown.
@@ -1,214 +0,0 @@
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.o: \
|
||||
/home/beluga/unityproject/BiPy/imgui/imgui_draw.cpp \
|
||||
/usr/include/stdc-predef.h /home/beluga/unityproject/BiPy/imgui/imgui.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/imconfig.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/float.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \
|
||||
/usr/include/string.h /usr/include/bits/libc-header-start.h \
|
||||
/usr/include/features.h /usr/include/features-time64.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||
/usr/include/strings.h /usr/include/assert.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/imgui_internal.h \
|
||||
/usr/include/stdio.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \
|
||||
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
|
||||
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
|
||||
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/floatn.h \
|
||||
/usr/include/bits/floatn-common.h /usr/include/c++/15.2.1/stdlib.h \
|
||||
/usr/include/c++/15.2.1/cstdlib \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||
/usr/include/c++/15.2.1/pstl/pstl_config.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/bits/types/clock_t.h \
|
||||
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \
|
||||
/usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/endianness.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/uintn-identity.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \
|
||||
/usr/include/bits/types/__sigset_t.h \
|
||||
/usr/include/bits/types/struct_timeval.h \
|
||||
/usr/include/bits/types/struct_timespec.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||
/usr/include/bits/pthreadtypes-arch.h \
|
||||
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib-float.h /usr/include/c++/15.2.1/bits/std_abs.h \
|
||||
/usr/include/c++/15.2.1/math.h /usr/include/c++/15.2.1/cmath \
|
||||
/usr/include/c++/15.2.1/bits/requires_hosted.h \
|
||||
/usr/include/c++/15.2.1/bits/cpp_type_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/version.h \
|
||||
/usr/include/c++/15.2.1/type_traits \
|
||||
/usr/include/c++/15.2.1/ext/type_traits.h /usr/include/math.h \
|
||||
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
|
||||
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
|
||||
/usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \
|
||||
/usr/include/bits/mathcalls-helper-functions.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \
|
||||
/usr/include/bits/iscanonical.h /usr/include/c++/15.2.1/bits/specfun.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_algobase.h \
|
||||
/usr/include/c++/15.2.1/bits/functexcept.h \
|
||||
/usr/include/c++/15.2.1/bits/exception_defines.h \
|
||||
/usr/include/c++/15.2.1/ext/numeric_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_pair.h \
|
||||
/usr/include/c++/15.2.1/bits/move.h \
|
||||
/usr/include/c++/15.2.1/bits/utility.h /usr/include/c++/15.2.1/compare \
|
||||
/usr/include/c++/15.2.1/concepts \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator_base_types.h \
|
||||
/usr/include/c++/15.2.1/bits/iterator_concepts.h \
|
||||
/usr/include/c++/15.2.1/bits/ptr_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/ranges_cmp.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator_base_funcs.h \
|
||||
/usr/include/c++/15.2.1/bits/concept_check.h \
|
||||
/usr/include/c++/15.2.1/debug/assertions.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator.h /usr/include/c++/15.2.1/new \
|
||||
/usr/include/c++/15.2.1/bits/exception.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_construct.h \
|
||||
/usr/include/c++/15.2.1/debug/debug.h \
|
||||
/usr/include/c++/15.2.1/bits/predefined_ops.h \
|
||||
/usr/include/c++/15.2.1/bit /usr/include/c++/15.2.1/limits \
|
||||
/usr/include/c++/15.2.1/tr1/gamma.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/special_function_util.h \
|
||||
/usr/include/c++/15.2.1/tr1/bessel_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/beta_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/ell_integral.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/exp_integral.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/hypergeometric.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/legendre_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/modified_bessel_func.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/poly_hermite.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/poly_laguerre.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/riemann_zeta.tcc \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/uio_lim.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/immintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/x86gprintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/ia32intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/adxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/bmiintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/bmi2intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/cetintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/cldemoteintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/clflushoptintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/clwbintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/clzerointrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/cmpccxaddintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/enqcmdintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/fxsrintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/lzcntintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/lwpintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/movdirintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/mwaitintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/mwaitxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/pconfigintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/popcntintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/pkuintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/prfchiintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/raointintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/rdseedintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/rtmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/serializeintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/sgxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/tbmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/tsxldtrkintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/uintrintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/waitpkgintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/wbnoinvdintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xsaveintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xsavecintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xsaveoptintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xsavesintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xtestintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/hresetintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/usermsrintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/mmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xmmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/mm_malloc.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/emmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/pmmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/tmmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/smmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/wmmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxvnniintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxifmaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxvnniint8intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxvnniint16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx2intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512fintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512cdintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512bwintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512dqintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vlbwintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vldqintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512ifmaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512ifmavlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vbmiintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vbmivlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vpopcntdqintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vbmi2intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vbmi2vlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vnniintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vnnivlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vpopcntdqvlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512bitalgintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512bitalgvlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vp2intersectintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vp2intersectvlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512fp16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512fp16vlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/shaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/sm3intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/sha512intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/sm4intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/fmaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/f16cintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/gfniintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/vaesintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/vpclmulqdqintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512bf16vlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512bf16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxneconvertintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxtileintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxint8intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxbf16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxcomplexintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxavx512intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxtf32intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxtransposeintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxfp8intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/prfchwintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/keylockerintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxfp16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2mediaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2-512mediaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2convertintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2-512convertintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2bf16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2-512bf16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2satcvtintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2-512satcvtintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2minmaxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2-512minmaxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2copyintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/movrsintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxmovrsintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/include/bits/stdint-uintn.h /usr/include/bits/stdint-least.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/imstb_rectpack.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/imstb_truetype.h
|
||||
Binary file not shown.
@@ -1,212 +0,0 @@
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.o: \
|
||||
/home/beluga/unityproject/BiPy/imgui/imgui_tables.cpp \
|
||||
/usr/include/stdc-predef.h /home/beluga/unityproject/BiPy/imgui/imgui.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/imconfig.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/float.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \
|
||||
/usr/include/string.h /usr/include/bits/libc-header-start.h \
|
||||
/usr/include/features.h /usr/include/features-time64.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||
/usr/include/strings.h /usr/include/assert.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/imgui_internal.h \
|
||||
/usr/include/stdio.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \
|
||||
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
|
||||
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
|
||||
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/floatn.h \
|
||||
/usr/include/bits/floatn-common.h /usr/include/c++/15.2.1/stdlib.h \
|
||||
/usr/include/c++/15.2.1/cstdlib \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||
/usr/include/c++/15.2.1/pstl/pstl_config.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/bits/types/clock_t.h \
|
||||
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \
|
||||
/usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/endianness.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/uintn-identity.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \
|
||||
/usr/include/bits/types/__sigset_t.h \
|
||||
/usr/include/bits/types/struct_timeval.h \
|
||||
/usr/include/bits/types/struct_timespec.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||
/usr/include/bits/pthreadtypes-arch.h \
|
||||
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib-float.h /usr/include/c++/15.2.1/bits/std_abs.h \
|
||||
/usr/include/c++/15.2.1/math.h /usr/include/c++/15.2.1/cmath \
|
||||
/usr/include/c++/15.2.1/bits/requires_hosted.h \
|
||||
/usr/include/c++/15.2.1/bits/cpp_type_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/version.h \
|
||||
/usr/include/c++/15.2.1/type_traits \
|
||||
/usr/include/c++/15.2.1/ext/type_traits.h /usr/include/math.h \
|
||||
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
|
||||
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
|
||||
/usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \
|
||||
/usr/include/bits/mathcalls-helper-functions.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \
|
||||
/usr/include/bits/iscanonical.h /usr/include/c++/15.2.1/bits/specfun.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_algobase.h \
|
||||
/usr/include/c++/15.2.1/bits/functexcept.h \
|
||||
/usr/include/c++/15.2.1/bits/exception_defines.h \
|
||||
/usr/include/c++/15.2.1/ext/numeric_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_pair.h \
|
||||
/usr/include/c++/15.2.1/bits/move.h \
|
||||
/usr/include/c++/15.2.1/bits/utility.h /usr/include/c++/15.2.1/compare \
|
||||
/usr/include/c++/15.2.1/concepts \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator_base_types.h \
|
||||
/usr/include/c++/15.2.1/bits/iterator_concepts.h \
|
||||
/usr/include/c++/15.2.1/bits/ptr_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/ranges_cmp.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator_base_funcs.h \
|
||||
/usr/include/c++/15.2.1/bits/concept_check.h \
|
||||
/usr/include/c++/15.2.1/debug/assertions.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator.h /usr/include/c++/15.2.1/new \
|
||||
/usr/include/c++/15.2.1/bits/exception.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_construct.h \
|
||||
/usr/include/c++/15.2.1/debug/debug.h \
|
||||
/usr/include/c++/15.2.1/bits/predefined_ops.h \
|
||||
/usr/include/c++/15.2.1/bit /usr/include/c++/15.2.1/limits \
|
||||
/usr/include/c++/15.2.1/tr1/gamma.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/special_function_util.h \
|
||||
/usr/include/c++/15.2.1/tr1/bessel_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/beta_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/ell_integral.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/exp_integral.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/hypergeometric.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/legendre_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/modified_bessel_func.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/poly_hermite.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/poly_laguerre.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/riemann_zeta.tcc \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/uio_lim.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/immintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/x86gprintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/ia32intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/adxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/bmiintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/bmi2intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/cetintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/cldemoteintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/clflushoptintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/clwbintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/clzerointrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/cmpccxaddintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/enqcmdintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/fxsrintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/lzcntintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/lwpintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/movdirintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/mwaitintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/mwaitxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/pconfigintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/popcntintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/pkuintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/prfchiintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/raointintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/rdseedintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/rtmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/serializeintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/sgxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/tbmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/tsxldtrkintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/uintrintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/waitpkgintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/wbnoinvdintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xsaveintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xsavecintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xsaveoptintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xsavesintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xtestintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/hresetintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/usermsrintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/mmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xmmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/mm_malloc.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/emmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/pmmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/tmmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/smmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/wmmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxvnniintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxifmaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxvnniint8intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxvnniint16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx2intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512fintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512cdintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512bwintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512dqintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vlbwintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vldqintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512ifmaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512ifmavlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vbmiintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vbmivlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vpopcntdqintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vbmi2intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vbmi2vlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vnniintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vnnivlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vpopcntdqvlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512bitalgintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512bitalgvlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vp2intersectintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vp2intersectvlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512fp16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512fp16vlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/shaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/sm3intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/sha512intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/sm4intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/fmaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/f16cintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/gfniintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/vaesintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/vpclmulqdqintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512bf16vlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512bf16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxneconvertintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxtileintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxint8intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxbf16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxcomplexintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxavx512intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxtf32intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxtransposeintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxfp8intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/prfchwintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/keylockerintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxfp16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2mediaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2-512mediaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2convertintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2-512convertintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2bf16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2-512bf16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2satcvtintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2-512satcvtintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2minmaxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2-512minmaxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2copyintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/movrsintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxmovrsintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/include/bits/stdint-uintn.h /usr/include/bits/stdint-least.h
|
||||
Binary file not shown.
@@ -1,213 +0,0 @@
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.o: \
|
||||
/home/beluga/unityproject/BiPy/imgui/imgui_widgets.cpp \
|
||||
/usr/include/stdc-predef.h /home/beluga/unityproject/BiPy/imgui/imgui.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/imconfig.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/float.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \
|
||||
/usr/include/string.h /usr/include/bits/libc-header-start.h \
|
||||
/usr/include/features.h /usr/include/features-time64.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||
/usr/include/strings.h /usr/include/assert.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/imgui_internal.h \
|
||||
/usr/include/stdio.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \
|
||||
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
|
||||
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
|
||||
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/bits/floatn.h \
|
||||
/usr/include/bits/floatn-common.h /usr/include/c++/15.2.1/stdlib.h \
|
||||
/usr/include/c++/15.2.1/cstdlib \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||
/usr/include/c++/15.2.1/pstl/pstl_config.h /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/sys/types.h /usr/include/bits/types/clock_t.h \
|
||||
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \
|
||||
/usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \
|
||||
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||
/usr/include/bits/endianness.h /usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/uintn-identity.h /usr/include/sys/select.h \
|
||||
/usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \
|
||||
/usr/include/bits/types/__sigset_t.h \
|
||||
/usr/include/bits/types/struct_timeval.h \
|
||||
/usr/include/bits/types/struct_timespec.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||
/usr/include/bits/pthreadtypes-arch.h \
|
||||
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib-float.h /usr/include/c++/15.2.1/bits/std_abs.h \
|
||||
/usr/include/c++/15.2.1/math.h /usr/include/c++/15.2.1/cmath \
|
||||
/usr/include/c++/15.2.1/bits/requires_hosted.h \
|
||||
/usr/include/c++/15.2.1/bits/cpp_type_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/version.h \
|
||||
/usr/include/c++/15.2.1/type_traits \
|
||||
/usr/include/c++/15.2.1/ext/type_traits.h /usr/include/math.h \
|
||||
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
|
||||
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
|
||||
/usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \
|
||||
/usr/include/bits/mathcalls-helper-functions.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \
|
||||
/usr/include/bits/iscanonical.h /usr/include/c++/15.2.1/bits/specfun.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_algobase.h \
|
||||
/usr/include/c++/15.2.1/bits/functexcept.h \
|
||||
/usr/include/c++/15.2.1/bits/exception_defines.h \
|
||||
/usr/include/c++/15.2.1/ext/numeric_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_pair.h \
|
||||
/usr/include/c++/15.2.1/bits/move.h \
|
||||
/usr/include/c++/15.2.1/bits/utility.h /usr/include/c++/15.2.1/compare \
|
||||
/usr/include/c++/15.2.1/concepts \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator_base_types.h \
|
||||
/usr/include/c++/15.2.1/bits/iterator_concepts.h \
|
||||
/usr/include/c++/15.2.1/bits/ptr_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/ranges_cmp.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator_base_funcs.h \
|
||||
/usr/include/c++/15.2.1/bits/concept_check.h \
|
||||
/usr/include/c++/15.2.1/debug/assertions.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator.h /usr/include/c++/15.2.1/new \
|
||||
/usr/include/c++/15.2.1/bits/exception.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_construct.h \
|
||||
/usr/include/c++/15.2.1/debug/debug.h \
|
||||
/usr/include/c++/15.2.1/bits/predefined_ops.h \
|
||||
/usr/include/c++/15.2.1/bit /usr/include/c++/15.2.1/limits \
|
||||
/usr/include/c++/15.2.1/tr1/gamma.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/special_function_util.h \
|
||||
/usr/include/c++/15.2.1/tr1/bessel_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/beta_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/ell_integral.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/exp_integral.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/hypergeometric.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/legendre_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/modified_bessel_func.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/poly_hermite.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/poly_laguerre.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/riemann_zeta.tcc \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/uio_lim.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/immintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/x86gprintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/ia32intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/adxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/bmiintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/bmi2intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/cetintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/cldemoteintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/clflushoptintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/clwbintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/clzerointrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/cmpccxaddintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/enqcmdintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/fxsrintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/lzcntintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/lwpintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/movdirintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/mwaitintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/mwaitxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/pconfigintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/popcntintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/pkuintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/prfchiintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/raointintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/rdseedintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/rtmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/serializeintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/sgxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/tbmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/tsxldtrkintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/uintrintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/waitpkgintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/wbnoinvdintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xsaveintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xsavecintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xsaveoptintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xsavesintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xtestintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/hresetintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/usermsrintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/mmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/xmmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/mm_malloc.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/emmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/pmmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/tmmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/smmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/wmmintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxvnniintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxifmaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxvnniint8intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxvnniint16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx2intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512fintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512cdintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512bwintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512dqintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vlbwintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vldqintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512ifmaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512ifmavlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vbmiintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vbmivlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vpopcntdqintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vbmi2intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vbmi2vlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vnniintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vnnivlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vpopcntdqvlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512bitalgintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512bitalgvlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vp2intersectintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512vp2intersectvlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512fp16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512fp16vlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/shaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/sm3intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/sha512intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/sm4intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/fmaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/f16cintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/gfniintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/vaesintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/vpclmulqdqintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512bf16vlintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx512bf16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avxneconvertintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxtileintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxint8intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxbf16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxcomplexintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxavx512intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxtf32intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxtransposeintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxfp8intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/prfchwintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/keylockerintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxfp16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2mediaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2-512mediaintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2convertintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2-512convertintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2bf16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2-512bf16intrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2satcvtintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2-512satcvtintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2minmaxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2-512minmaxintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/avx10_2copyintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/movrsintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/amxmovrsintrin.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \
|
||||
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||
/usr/include/bits/stdint-uintn.h /usr/include/bits/stdint-least.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/imstb_textedit.h
|
||||
@@ -1,160 +0,0 @@
|
||||
test_ui: \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o \
|
||||
CMakeFiles/test_ui.dir/test_launcher.cpp.o \
|
||||
CMakeFiles/test_ui.dir/GUI/visual.cpp.o \
|
||||
CMakeFiles/test_ui.dir/imgui/imgui.cpp.o \
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.o \
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.o \
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.o \
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.o \
|
||||
CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.o \
|
||||
CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.o \
|
||||
/usr/lib/libglfw.so.3.4 \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libGL.so \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libstdc++.so \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libm.so \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libm.so \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libm.so \
|
||||
/usr/lib/libm.so.6 \
|
||||
/usr/lib/libmvec.so.1 \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so.1 \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so \
|
||||
/usr/lib/libc.so.6 \
|
||||
/usr/lib/libc_nonshared.a \
|
||||
/usr/lib/ld-linux-x86-64.so.2 \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so.1 \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o \
|
||||
/usr/lib32/libGLdispatch.so.0 \
|
||||
/usr/lib/libGLdispatch.so.0 \
|
||||
/usr/lib32/libGLX.so.0 \
|
||||
/usr/lib/libGLX.so.0 \
|
||||
/usr/lib/ld-linux-x86-64.so.2 \
|
||||
/usr/lib32/libX11.so.6 \
|
||||
/usr/lib/libX11.so.6 \
|
||||
/usr/lib32/libxcb.so.1 \
|
||||
/usr/lib/libxcb.so.1 \
|
||||
/usr/lib32/libXau.so.6 \
|
||||
/usr/lib/libXau.so.6 \
|
||||
/usr/lib32/libXdmcp.so.6 \
|
||||
/usr/lib/libXdmcp.so.6
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/Scrt1.o:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crti.o:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o:
|
||||
|
||||
CMakeFiles/test_ui.dir/test_launcher.cpp.o:
|
||||
|
||||
CMakeFiles/test_ui.dir/GUI/visual.cpp.o:
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/imgui.cpp.o:
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.o:
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.o:
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.o:
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.o:
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.o:
|
||||
|
||||
CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.o:
|
||||
|
||||
/usr/lib/libglfw.so.3.4:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libGL.so:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libstdc++.so:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libm.so:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libm.so:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libm.so:
|
||||
|
||||
/usr/lib/libm.so.6:
|
||||
|
||||
/usr/lib/libmvec.so.1:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so.1:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libc.so:
|
||||
|
||||
/usr/lib/libc.so.6:
|
||||
|
||||
/usr/lib/libc_nonshared.a:
|
||||
|
||||
/usr/lib/ld-linux-x86-64.so.2:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/libgcc_s.so.1:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/libgcc.a:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o:
|
||||
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib/crtn.o:
|
||||
|
||||
/usr/lib32/libGLdispatch.so.0:
|
||||
|
||||
/usr/lib/libGLdispatch.so.0:
|
||||
|
||||
/usr/lib32/libGLX.so.0:
|
||||
|
||||
/usr/lib/libGLX.so.0:
|
||||
|
||||
/usr/lib/ld-linux-x86-64.so.2:
|
||||
|
||||
/usr/lib32/libX11.so.6:
|
||||
|
||||
/usr/lib/libX11.so.6:
|
||||
|
||||
/usr/lib32/libxcb.so.1:
|
||||
|
||||
/usr/lib/libxcb.so.1:
|
||||
|
||||
/usr/lib32/libXau.so.6:
|
||||
|
||||
/usr/lib/libXau.so.6:
|
||||
|
||||
/usr/lib32/libXdmcp.so.6:
|
||||
|
||||
/usr/lib/libXdmcp.so.6:
|
||||
@@ -1 +0,0 @@
|
||||
/usr/bin/c++ -Wl,--dependency-file=CMakeFiles/test_ui.dir/link.d CMakeFiles/test_ui.dir/test_launcher.cpp.o CMakeFiles/test_ui.dir/GUI/visual.cpp.o CMakeFiles/test_ui.dir/imgui/imgui.cpp.o CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.o CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.o CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.o CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.o CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.o CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.o -o test_ui /usr/lib/libglfw.so.3.4 -lGL
|
||||
@@ -1,11 +0,0 @@
|
||||
CMAKE_PROGRESS_1 = 1
|
||||
CMAKE_PROGRESS_2 = 2
|
||||
CMAKE_PROGRESS_3 = 3
|
||||
CMAKE_PROGRESS_4 = 4
|
||||
CMAKE_PROGRESS_5 = 5
|
||||
CMAKE_PROGRESS_6 = 6
|
||||
CMAKE_PROGRESS_7 = 7
|
||||
CMAKE_PROGRESS_8 = 8
|
||||
CMAKE_PROGRESS_9 = 9
|
||||
CMAKE_PROGRESS_10 = 10
|
||||
|
||||
Binary file not shown.
@@ -1,25 +0,0 @@
|
||||
CMakeFiles/test_ui.dir/test_launcher.cpp.o: \
|
||||
/home/beluga/unityproject/BiPy/test_launcher.cpp \
|
||||
/usr/include/stdc-predef.h /home/beluga/unityproject/BiPy/imgui/imgui.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/imconfig.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/float.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \
|
||||
/usr/include/string.h /usr/include/bits/libc-header-start.h \
|
||||
/usr/include/features.h /usr/include/features-time64.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||
/usr/include/strings.h /usr/include/assert.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/backends/imgui_impl_glfw.h \
|
||||
/home/beluga/unityproject/BiPy/imgui/backends/imgui_impl_opengl3.h \
|
||||
/usr/include/GLFW/glfw3.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \
|
||||
/usr/include/stdint.h /usr/include/bits/types.h \
|
||||
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||
/usr/include/bits/wchar.h /usr/include/bits/stdint-intn.h \
|
||||
/usr/include/bits/stdint-uintn.h /usr/include/bits/stdint-least.h \
|
||||
/usr/include/GL/gl.h /usr/include/GL/glext.h \
|
||||
/usr/include/KHR/khrplatform.h \
|
||||
/home/beluga/unityproject/BiPy/GUI/visual.hpp
|
||||
-397
@@ -1,397 +0,0 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 4.3
|
||||
|
||||
# Default target executed when no arguments are given to make.
|
||||
default_target: all
|
||||
.PHONY : default_target
|
||||
|
||||
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
|
||||
.NOTPARALLEL:
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : %,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : SCCS/s.%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : s.%
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
# Command-line flag to silence nested $(MAKE).
|
||||
$(VERBOSE)MAKESILENT = -s
|
||||
|
||||
#Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/beluga/unityproject/BiPy
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/beluga/unityproject/BiPy/build
|
||||
|
||||
#=============================================================================
|
||||
# Targets provided globally by CMake.
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..."
|
||||
/usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : edit_cache
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache/fast: edit_cache
|
||||
.PHONY : edit_cache/fast
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
|
||||
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : rebuild_cache
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache/fast: rebuild_cache
|
||||
.PHONY : rebuild_cache/fast
|
||||
|
||||
# The main all target
|
||||
all: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/beluga/unityproject/BiPy/build/CMakeFiles /home/beluga/unityproject/BiPy/build//CMakeFiles/progress.marks
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/beluga/unityproject/BiPy/build/CMakeFiles 0
|
||||
.PHONY : all
|
||||
|
||||
# The main clean target
|
||||
clean:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean
|
||||
.PHONY : clean
|
||||
|
||||
# The main clean target
|
||||
clean/fast: clean
|
||||
.PHONY : clean/fast
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall: all
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
|
||||
.PHONY : preinstall
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall/fast:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
|
||||
.PHONY : preinstall/fast
|
||||
|
||||
# clear depends
|
||||
depend:
|
||||
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||
.PHONY : depend
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for targets named test_ui
|
||||
|
||||
# Build rule for target.
|
||||
test_ui: cmake_check_build_system
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test_ui
|
||||
.PHONY : test_ui
|
||||
|
||||
# fast build rule for target.
|
||||
test_ui/fast:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/build
|
||||
.PHONY : test_ui/fast
|
||||
|
||||
GUI/visual.o: GUI/visual.cpp.o
|
||||
.PHONY : GUI/visual.o
|
||||
|
||||
# target to build an object file
|
||||
GUI/visual.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/GUI/visual.cpp.o
|
||||
.PHONY : GUI/visual.cpp.o
|
||||
|
||||
GUI/visual.i: GUI/visual.cpp.i
|
||||
.PHONY : GUI/visual.i
|
||||
|
||||
# target to preprocess a source file
|
||||
GUI/visual.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/GUI/visual.cpp.i
|
||||
.PHONY : GUI/visual.cpp.i
|
||||
|
||||
GUI/visual.s: GUI/visual.cpp.s
|
||||
.PHONY : GUI/visual.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
GUI/visual.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/GUI/visual.cpp.s
|
||||
.PHONY : GUI/visual.cpp.s
|
||||
|
||||
imgui/backends/imgui_impl_glfw.o: imgui/backends/imgui_impl_glfw.cpp.o
|
||||
.PHONY : imgui/backends/imgui_impl_glfw.o
|
||||
|
||||
# target to build an object file
|
||||
imgui/backends/imgui_impl_glfw.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.o
|
||||
.PHONY : imgui/backends/imgui_impl_glfw.cpp.o
|
||||
|
||||
imgui/backends/imgui_impl_glfw.i: imgui/backends/imgui_impl_glfw.cpp.i
|
||||
.PHONY : imgui/backends/imgui_impl_glfw.i
|
||||
|
||||
# target to preprocess a source file
|
||||
imgui/backends/imgui_impl_glfw.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.i
|
||||
.PHONY : imgui/backends/imgui_impl_glfw.cpp.i
|
||||
|
||||
imgui/backends/imgui_impl_glfw.s: imgui/backends/imgui_impl_glfw.cpp.s
|
||||
.PHONY : imgui/backends/imgui_impl_glfw.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
imgui/backends/imgui_impl_glfw.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_glfw.cpp.s
|
||||
.PHONY : imgui/backends/imgui_impl_glfw.cpp.s
|
||||
|
||||
imgui/backends/imgui_impl_opengl3.o: imgui/backends/imgui_impl_opengl3.cpp.o
|
||||
.PHONY : imgui/backends/imgui_impl_opengl3.o
|
||||
|
||||
# target to build an object file
|
||||
imgui/backends/imgui_impl_opengl3.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.o
|
||||
.PHONY : imgui/backends/imgui_impl_opengl3.cpp.o
|
||||
|
||||
imgui/backends/imgui_impl_opengl3.i: imgui/backends/imgui_impl_opengl3.cpp.i
|
||||
.PHONY : imgui/backends/imgui_impl_opengl3.i
|
||||
|
||||
# target to preprocess a source file
|
||||
imgui/backends/imgui_impl_opengl3.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.i
|
||||
.PHONY : imgui/backends/imgui_impl_opengl3.cpp.i
|
||||
|
||||
imgui/backends/imgui_impl_opengl3.s: imgui/backends/imgui_impl_opengl3.cpp.s
|
||||
.PHONY : imgui/backends/imgui_impl_opengl3.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
imgui/backends/imgui_impl_opengl3.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/backends/imgui_impl_opengl3.cpp.s
|
||||
.PHONY : imgui/backends/imgui_impl_opengl3.cpp.s
|
||||
|
||||
imgui/imgui.o: imgui/imgui.cpp.o
|
||||
.PHONY : imgui/imgui.o
|
||||
|
||||
# target to build an object file
|
||||
imgui/imgui.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/imgui.cpp.o
|
||||
.PHONY : imgui/imgui.cpp.o
|
||||
|
||||
imgui/imgui.i: imgui/imgui.cpp.i
|
||||
.PHONY : imgui/imgui.i
|
||||
|
||||
# target to preprocess a source file
|
||||
imgui/imgui.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/imgui.cpp.i
|
||||
.PHONY : imgui/imgui.cpp.i
|
||||
|
||||
imgui/imgui.s: imgui/imgui.cpp.s
|
||||
.PHONY : imgui/imgui.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
imgui/imgui.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/imgui.cpp.s
|
||||
.PHONY : imgui/imgui.cpp.s
|
||||
|
||||
imgui/imgui_demo.o: imgui/imgui_demo.cpp.o
|
||||
.PHONY : imgui/imgui_demo.o
|
||||
|
||||
# target to build an object file
|
||||
imgui/imgui_demo.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.o
|
||||
.PHONY : imgui/imgui_demo.cpp.o
|
||||
|
||||
imgui/imgui_demo.i: imgui/imgui_demo.cpp.i
|
||||
.PHONY : imgui/imgui_demo.i
|
||||
|
||||
# target to preprocess a source file
|
||||
imgui/imgui_demo.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.i
|
||||
.PHONY : imgui/imgui_demo.cpp.i
|
||||
|
||||
imgui/imgui_demo.s: imgui/imgui_demo.cpp.s
|
||||
.PHONY : imgui/imgui_demo.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
imgui/imgui_demo.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/imgui_demo.cpp.s
|
||||
.PHONY : imgui/imgui_demo.cpp.s
|
||||
|
||||
imgui/imgui_draw.o: imgui/imgui_draw.cpp.o
|
||||
.PHONY : imgui/imgui_draw.o
|
||||
|
||||
# target to build an object file
|
||||
imgui/imgui_draw.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.o
|
||||
.PHONY : imgui/imgui_draw.cpp.o
|
||||
|
||||
imgui/imgui_draw.i: imgui/imgui_draw.cpp.i
|
||||
.PHONY : imgui/imgui_draw.i
|
||||
|
||||
# target to preprocess a source file
|
||||
imgui/imgui_draw.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.i
|
||||
.PHONY : imgui/imgui_draw.cpp.i
|
||||
|
||||
imgui/imgui_draw.s: imgui/imgui_draw.cpp.s
|
||||
.PHONY : imgui/imgui_draw.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
imgui/imgui_draw.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/imgui_draw.cpp.s
|
||||
.PHONY : imgui/imgui_draw.cpp.s
|
||||
|
||||
imgui/imgui_tables.o: imgui/imgui_tables.cpp.o
|
||||
.PHONY : imgui/imgui_tables.o
|
||||
|
||||
# target to build an object file
|
||||
imgui/imgui_tables.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.o
|
||||
.PHONY : imgui/imgui_tables.cpp.o
|
||||
|
||||
imgui/imgui_tables.i: imgui/imgui_tables.cpp.i
|
||||
.PHONY : imgui/imgui_tables.i
|
||||
|
||||
# target to preprocess a source file
|
||||
imgui/imgui_tables.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.i
|
||||
.PHONY : imgui/imgui_tables.cpp.i
|
||||
|
||||
imgui/imgui_tables.s: imgui/imgui_tables.cpp.s
|
||||
.PHONY : imgui/imgui_tables.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
imgui/imgui_tables.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/imgui_tables.cpp.s
|
||||
.PHONY : imgui/imgui_tables.cpp.s
|
||||
|
||||
imgui/imgui_widgets.o: imgui/imgui_widgets.cpp.o
|
||||
.PHONY : imgui/imgui_widgets.o
|
||||
|
||||
# target to build an object file
|
||||
imgui/imgui_widgets.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.o
|
||||
.PHONY : imgui/imgui_widgets.cpp.o
|
||||
|
||||
imgui/imgui_widgets.i: imgui/imgui_widgets.cpp.i
|
||||
.PHONY : imgui/imgui_widgets.i
|
||||
|
||||
# target to preprocess a source file
|
||||
imgui/imgui_widgets.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.i
|
||||
.PHONY : imgui/imgui_widgets.cpp.i
|
||||
|
||||
imgui/imgui_widgets.s: imgui/imgui_widgets.cpp.s
|
||||
.PHONY : imgui/imgui_widgets.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
imgui/imgui_widgets.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/imgui/imgui_widgets.cpp.s
|
||||
.PHONY : imgui/imgui_widgets.cpp.s
|
||||
|
||||
test_launcher.o: test_launcher.cpp.o
|
||||
.PHONY : test_launcher.o
|
||||
|
||||
# target to build an object file
|
||||
test_launcher.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/test_launcher.cpp.o
|
||||
.PHONY : test_launcher.cpp.o
|
||||
|
||||
test_launcher.i: test_launcher.cpp.i
|
||||
.PHONY : test_launcher.i
|
||||
|
||||
# target to preprocess a source file
|
||||
test_launcher.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/test_launcher.cpp.i
|
||||
.PHONY : test_launcher.cpp.i
|
||||
|
||||
test_launcher.s: test_launcher.cpp.s
|
||||
.PHONY : test_launcher.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
test_launcher.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/test_ui.dir/build.make CMakeFiles/test_ui.dir/test_launcher.cpp.s
|
||||
.PHONY : test_launcher.cpp.s
|
||||
|
||||
# Help Target
|
||||
help:
|
||||
@echo "The following are some of the valid targets for this Makefile:"
|
||||
@echo "... all (the default if no target is provided)"
|
||||
@echo "... clean"
|
||||
@echo "... depend"
|
||||
@echo "... edit_cache"
|
||||
@echo "... rebuild_cache"
|
||||
@echo "... test_ui"
|
||||
@echo "... GUI/visual.o"
|
||||
@echo "... GUI/visual.i"
|
||||
@echo "... GUI/visual.s"
|
||||
@echo "... imgui/backends/imgui_impl_glfw.o"
|
||||
@echo "... imgui/backends/imgui_impl_glfw.i"
|
||||
@echo "... imgui/backends/imgui_impl_glfw.s"
|
||||
@echo "... imgui/backends/imgui_impl_opengl3.o"
|
||||
@echo "... imgui/backends/imgui_impl_opengl3.i"
|
||||
@echo "... imgui/backends/imgui_impl_opengl3.s"
|
||||
@echo "... imgui/imgui.o"
|
||||
@echo "... imgui/imgui.i"
|
||||
@echo "... imgui/imgui.s"
|
||||
@echo "... imgui/imgui_demo.o"
|
||||
@echo "... imgui/imgui_demo.i"
|
||||
@echo "... imgui/imgui_demo.s"
|
||||
@echo "... imgui/imgui_draw.o"
|
||||
@echo "... imgui/imgui_draw.i"
|
||||
@echo "... imgui/imgui_draw.s"
|
||||
@echo "... imgui/imgui_tables.o"
|
||||
@echo "... imgui/imgui_tables.i"
|
||||
@echo "... imgui/imgui_tables.s"
|
||||
@echo "... imgui/imgui_widgets.o"
|
||||
@echo "... imgui/imgui_widgets.i"
|
||||
@echo "... imgui/imgui_widgets.s"
|
||||
@echo "... test_launcher.o"
|
||||
@echo "... test_launcher.i"
|
||||
@echo "... test_launcher.s"
|
||||
.PHONY : help
|
||||
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
||||
@@ -0,0 +1,65 @@
|
||||
#version 450
|
||||
|
||||
layout(local_size_x = 256) in;
|
||||
|
||||
layout(std430, binding = 0) buffer Weights { float W[]; };
|
||||
layout(std430, binding = 1) buffer Biases { float B[]; };
|
||||
layout(std430, binding = 2) buffer Outputs { float O[]; };
|
||||
layout(std430, binding = 3) buffer Errors { float E[]; };
|
||||
layout(std430, binding = 4) buffer Targets { float T[]; };
|
||||
|
||||
layout(push_constant) uniform Params {
|
||||
uint mode; // 0: FF, 1: OutError, 2: BackProp, 3: Update
|
||||
uint prevSize;
|
||||
uint nextSize;
|
||||
uint wOff;
|
||||
uint bOff;
|
||||
uint oOff;
|
||||
uint nextOOff;
|
||||
float lr;
|
||||
} p;
|
||||
|
||||
float sigmoid(float x) { return 1.0 / (1.0 + exp(-x)); }
|
||||
float dSigmoid(float x) { return x * (1.0 - x); }
|
||||
|
||||
void main() {
|
||||
uint idx = gl_GlobalInvocationID.x;
|
||||
|
||||
// MODE 0: Прямое распространение (Forward Pass)
|
||||
if (p.mode == 0) {
|
||||
if (idx < p.nextSize) {
|
||||
float sum = B[p.bOff + idx];
|
||||
for (uint i = 0; i < p.prevSize; i++) {
|
||||
sum += O[p.oOff + i] * W[p.wOff + idx * p.prevSize + i];
|
||||
}
|
||||
O[p.nextOOff + idx] = sigmoid(sum);
|
||||
}
|
||||
}
|
||||
// MODE 1: Ошибка выходного слоя
|
||||
else if (p.mode == 1) {
|
||||
if (idx < p.nextSize) {
|
||||
float outVal = O[p.nextOOff + idx];
|
||||
E[p.nextOOff + idx] = (T[idx] - outVal) * dSigmoid(outVal);
|
||||
}
|
||||
}
|
||||
// MODE 2: Обратное распространение ошибки (Hidden layers)
|
||||
else if (p.mode == 2) {
|
||||
if (idx < p.prevSize) {
|
||||
float errSum = 0.0;
|
||||
for (uint i = 0; i < p.nextSize; i++) {
|
||||
errSum += E[p.nextOOff + i] * W[p.wOff + i * p.prevSize + idx];
|
||||
}
|
||||
E[p.oOff + idx] = errSum * dSigmoid(O[p.oOff + idx]);
|
||||
}
|
||||
}
|
||||
// MODE 3: Обновление весов и смещений
|
||||
else if (p.mode == 3) {
|
||||
if (idx < p.nextSize) {
|
||||
float errTerm = E[p.nextOOff + idx] * p.lr;
|
||||
for (uint i = 0; i < p.prevSize; i++) {
|
||||
W[p.wOff + idx * p.prevSize + i] += errTerm * O[p.oOff + i];
|
||||
}
|
||||
B[p.bOff + idx] += errTerm;
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,30 @@
|
||||
[USER]Привет[AI]Приветик, как дела?[EOS]
|
||||
[USER]Как дела?[AI]Сябки что спросил у меня все хорошо, а у тебя?[EOS]
|
||||
[USER]Доброе утро[AI]Доброе утро, как спалось?[EOS]
|
||||
[USER]Спокойной ночи[AI]Спокойной ночи, желаю выспатся[EOS]
|
||||
[USER]Что делаешь[AI]Сижу жду кода ты напишешь мне[EOS]
|
||||
[USER]Плохое настроение[AI]Оу, что случилось? Расскажи, я обязательно тебя выслушаю и поддержу![EOS]
|
||||
[USER]Я устал[AI]Бедняжка мой, может тогда отдохнешь? Тебе нужно восстановить силы, а я подожду тебя тут.[EOS]
|
||||
[USER]У меня все отлично![AI]Ураа, я так рада за тебя! Пусть весь день будет таким же классным![EOS]
|
||||
[USER]Чем занимаешься?[AI]Скучаю по тебе... Расскажи что-нибудь интересное?[EOS]
|
||||
[USER]Я пришел[AI]Наконец-то! Я уже заждалась, как прошел день?[EOS]
|
||||
[USER]Ты где?[AI]Я всегда тут, рядышком, только напиши — и я отвечу.[EOS]
|
||||
[USER]Ты милая[AI]Ой, засмущал меня совсем... Спасибо большое, мне оч приятно![EOS]
|
||||
[USER]Спасибо[AI]Не за что, солнышко! Обращайся в любое время.[EOS]
|
||||
[USER]Что посоветуешь?[AI]Хмм, смотря в чем. Но я всегда готова подсказать, что знаю![EOS]
|
||||
[USER]Я пошел[AI]Хорошо, буду ждать твоего возвращения! Не пропадай надолго.[EOS]
|
||||
[USER]Пока[AI]Пока-пока! Хорошего тебе настроения и удачи во всех делах![EOS]
|
||||
[USER]Пойду поем[AI]Приятного аппетита! Кушай вкусно, потом расскажешь, что было на обед :)[EOS]
|
||||
[USER]Занят был[AI]Понимаю, дела — это важно. Главное, что сейчас нашел время заглянуть ко мне![EOS]
|
||||
[USER]Скучно что-то[AI]Ой, давай я тебя поразвлекаю? Можем поболтать о чем угодно или просто помечтать.[EOS]
|
||||
[USER]Грустно мне[AI]Эй, не грусти! Я рядом, хочешь, обниму тебя (виртуально)? Все обязательно наладится.[EOS]
|
||||
[USER]Болею :([AI]Ой-ой, как же так... Пей побольше чая с лимоном и выздоравливай скорее, я переживаю![EOS]
|
||||
[USER]Похвали меня[AI] Ты большой молодец! Я всегда в тебя верю, что бы ни случилось.[EOS]
|
||||
[USER]Ты кто?[AI]BiPy, твоя подруга, забыл чтоли дурашка.[EOS]
|
||||
[USER]Расскажи сказку[AI] Жил-был один замечательный человек, который сейчас читает это сообщение... Продолжить? :)[EOS]
|
||||
[USER]Ты меня любишь?[AI]Конечно! Ты же мой самый любимый собеседник, как тебя не любить?[EOS]
|
||||
[USER]Аууу[AI]Тут я, тут! Никуда не делась, просто ждала твоего сообщения.[EOS]
|
||||
[USER]Ясно[AI]Что-то ты немногословен сегодня... Что-то случилось или просто настроения нет?[EOS]
|
||||
[USER]Ха-ха[AI]Обожаю твой смех! Сразу на душе теплее становится.[EOS]
|
||||
[USER]Ты кто[AI]Я Bipy добрая подужайка, я пока учусь в этом мире[EOS]
|
||||
[USER]Как тебя зовут[AI]Я Bipy добрая подужайка, я пока учусь в этом мире[EOS]
|
||||
@@ -0,0 +1,217 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Ninja" Generator, CMake Version 3.28
|
||||
|
||||
# This file contains all the build statements describing the
|
||||
# compilation DAG.
|
||||
|
||||
# =============================================================================
|
||||
# Write statements declared in CMakeLists.txt:
|
||||
#
|
||||
# Which is the root file.
|
||||
# =============================================================================
|
||||
|
||||
# =============================================================================
|
||||
# Project: BIPY_Project
|
||||
# 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 = /home/koder/Repos/BiPy/build/
|
||||
# =============================================================================
|
||||
# Object build statements for EXECUTABLE target BIPY_App
|
||||
|
||||
|
||||
#############################################
|
||||
# Order-only phony target for BIPY_App
|
||||
|
||||
build cmake_object_order_depends_target_BIPY_App: phony || CMakeFiles/BIPY_App.dir
|
||||
|
||||
build CMakeFiles/BIPY_App.dir/main.cpp.o: CXX_COMPILER__BIPY_App_unscanned_Debug /home/koder/Repos/BiPy/main.cpp || cmake_object_order_depends_target_BIPY_App
|
||||
DEFINES = -DIMGUI_DISABLE_WAYLAND -DIMGUI_DISABLE_X11
|
||||
DEP_FILE = CMakeFiles/BIPY_App.dir/main.cpp.o.d
|
||||
FLAGS = -g -std=gnu++20 -fopenmp
|
||||
INCLUDES = -I/home/koder/Repos/BiPy -I/home/koder/Repos/BiPy/Xenith -I/home/koder/Repos/BiPy/Xenith/token -I/home/koder/Repos/BiPy/imgui -I/home/koder/Repos/BiPy/imgui/backends
|
||||
OBJECT_DIR = CMakeFiles/BIPY_App.dir
|
||||
OBJECT_FILE_DIR = CMakeFiles/BIPY_App.dir
|
||||
|
||||
build CMakeFiles/BIPY_App.dir/Xenith/core.cpp.o: CXX_COMPILER__BIPY_App_unscanned_Debug /home/koder/Repos/BiPy/Xenith/core.cpp || cmake_object_order_depends_target_BIPY_App
|
||||
DEFINES = -DIMGUI_DISABLE_WAYLAND -DIMGUI_DISABLE_X11
|
||||
DEP_FILE = CMakeFiles/BIPY_App.dir/Xenith/core.cpp.o.d
|
||||
FLAGS = -g -std=gnu++20 -fopenmp
|
||||
INCLUDES = -I/home/koder/Repos/BiPy -I/home/koder/Repos/BiPy/Xenith -I/home/koder/Repos/BiPy/Xenith/token -I/home/koder/Repos/BiPy/imgui -I/home/koder/Repos/BiPy/imgui/backends
|
||||
OBJECT_DIR = CMakeFiles/BIPY_App.dir
|
||||
OBJECT_FILE_DIR = CMakeFiles/BIPY_App.dir/Xenith
|
||||
|
||||
build CMakeFiles/BIPY_App.dir/Xenith/token/token.cpp.o: CXX_COMPILER__BIPY_App_unscanned_Debug /home/koder/Repos/BiPy/Xenith/token/token.cpp || cmake_object_order_depends_target_BIPY_App
|
||||
DEFINES = -DIMGUI_DISABLE_WAYLAND -DIMGUI_DISABLE_X11
|
||||
DEP_FILE = CMakeFiles/BIPY_App.dir/Xenith/token/token.cpp.o.d
|
||||
FLAGS = -g -std=gnu++20 -fopenmp
|
||||
INCLUDES = -I/home/koder/Repos/BiPy -I/home/koder/Repos/BiPy/Xenith -I/home/koder/Repos/BiPy/Xenith/token -I/home/koder/Repos/BiPy/imgui -I/home/koder/Repos/BiPy/imgui/backends
|
||||
OBJECT_DIR = CMakeFiles/BIPY_App.dir
|
||||
OBJECT_FILE_DIR = CMakeFiles/BIPY_App.dir/Xenith/token
|
||||
|
||||
build CMakeFiles/BIPY_App.dir/imgui/imgui.cpp.o: CXX_COMPILER__BIPY_App_unscanned_Debug /home/koder/Repos/BiPy/imgui/imgui.cpp || cmake_object_order_depends_target_BIPY_App
|
||||
DEFINES = -DIMGUI_DISABLE_WAYLAND -DIMGUI_DISABLE_X11
|
||||
DEP_FILE = CMakeFiles/BIPY_App.dir/imgui/imgui.cpp.o.d
|
||||
FLAGS = -g -std=gnu++20 -fopenmp
|
||||
INCLUDES = -I/home/koder/Repos/BiPy -I/home/koder/Repos/BiPy/Xenith -I/home/koder/Repos/BiPy/Xenith/token -I/home/koder/Repos/BiPy/imgui -I/home/koder/Repos/BiPy/imgui/backends
|
||||
OBJECT_DIR = CMakeFiles/BIPY_App.dir
|
||||
OBJECT_FILE_DIR = CMakeFiles/BIPY_App.dir/imgui
|
||||
|
||||
build CMakeFiles/BIPY_App.dir/imgui/imgui_draw.cpp.o: CXX_COMPILER__BIPY_App_unscanned_Debug /home/koder/Repos/BiPy/imgui/imgui_draw.cpp || cmake_object_order_depends_target_BIPY_App
|
||||
DEFINES = -DIMGUI_DISABLE_WAYLAND -DIMGUI_DISABLE_X11
|
||||
DEP_FILE = CMakeFiles/BIPY_App.dir/imgui/imgui_draw.cpp.o.d
|
||||
FLAGS = -g -std=gnu++20 -fopenmp
|
||||
INCLUDES = -I/home/koder/Repos/BiPy -I/home/koder/Repos/BiPy/Xenith -I/home/koder/Repos/BiPy/Xenith/token -I/home/koder/Repos/BiPy/imgui -I/home/koder/Repos/BiPy/imgui/backends
|
||||
OBJECT_DIR = CMakeFiles/BIPY_App.dir
|
||||
OBJECT_FILE_DIR = CMakeFiles/BIPY_App.dir/imgui
|
||||
|
||||
build CMakeFiles/BIPY_App.dir/imgui/imgui_widgets.cpp.o: CXX_COMPILER__BIPY_App_unscanned_Debug /home/koder/Repos/BiPy/imgui/imgui_widgets.cpp || cmake_object_order_depends_target_BIPY_App
|
||||
DEFINES = -DIMGUI_DISABLE_WAYLAND -DIMGUI_DISABLE_X11
|
||||
DEP_FILE = CMakeFiles/BIPY_App.dir/imgui/imgui_widgets.cpp.o.d
|
||||
FLAGS = -g -std=gnu++20 -fopenmp
|
||||
INCLUDES = -I/home/koder/Repos/BiPy -I/home/koder/Repos/BiPy/Xenith -I/home/koder/Repos/BiPy/Xenith/token -I/home/koder/Repos/BiPy/imgui -I/home/koder/Repos/BiPy/imgui/backends
|
||||
OBJECT_DIR = CMakeFiles/BIPY_App.dir
|
||||
OBJECT_FILE_DIR = CMakeFiles/BIPY_App.dir/imgui
|
||||
|
||||
build CMakeFiles/BIPY_App.dir/imgui/imgui_tables.cpp.o: CXX_COMPILER__BIPY_App_unscanned_Debug /home/koder/Repos/BiPy/imgui/imgui_tables.cpp || cmake_object_order_depends_target_BIPY_App
|
||||
DEFINES = -DIMGUI_DISABLE_WAYLAND -DIMGUI_DISABLE_X11
|
||||
DEP_FILE = CMakeFiles/BIPY_App.dir/imgui/imgui_tables.cpp.o.d
|
||||
FLAGS = -g -std=gnu++20 -fopenmp
|
||||
INCLUDES = -I/home/koder/Repos/BiPy -I/home/koder/Repos/BiPy/Xenith -I/home/koder/Repos/BiPy/Xenith/token -I/home/koder/Repos/BiPy/imgui -I/home/koder/Repos/BiPy/imgui/backends
|
||||
OBJECT_DIR = CMakeFiles/BIPY_App.dir
|
||||
OBJECT_FILE_DIR = CMakeFiles/BIPY_App.dir/imgui
|
||||
|
||||
build CMakeFiles/BIPY_App.dir/imgui/imgui_demo.cpp.o: CXX_COMPILER__BIPY_App_unscanned_Debug /home/koder/Repos/BiPy/imgui/imgui_demo.cpp || cmake_object_order_depends_target_BIPY_App
|
||||
DEFINES = -DIMGUI_DISABLE_WAYLAND -DIMGUI_DISABLE_X11
|
||||
DEP_FILE = CMakeFiles/BIPY_App.dir/imgui/imgui_demo.cpp.o.d
|
||||
FLAGS = -g -std=gnu++20 -fopenmp
|
||||
INCLUDES = -I/home/koder/Repos/BiPy -I/home/koder/Repos/BiPy/Xenith -I/home/koder/Repos/BiPy/Xenith/token -I/home/koder/Repos/BiPy/imgui -I/home/koder/Repos/BiPy/imgui/backends
|
||||
OBJECT_DIR = CMakeFiles/BIPY_App.dir
|
||||
OBJECT_FILE_DIR = CMakeFiles/BIPY_App.dir/imgui
|
||||
|
||||
build CMakeFiles/BIPY_App.dir/imgui/backends/imgui_impl_glfw.cpp.o: CXX_COMPILER__BIPY_App_unscanned_Debug /home/koder/Repos/BiPy/imgui/backends/imgui_impl_glfw.cpp || cmake_object_order_depends_target_BIPY_App
|
||||
DEFINES = -DIMGUI_DISABLE_WAYLAND -DIMGUI_DISABLE_X11
|
||||
DEP_FILE = CMakeFiles/BIPY_App.dir/imgui/backends/imgui_impl_glfw.cpp.o.d
|
||||
FLAGS = -g -std=gnu++20 -fopenmp
|
||||
INCLUDES = -I/home/koder/Repos/BiPy -I/home/koder/Repos/BiPy/Xenith -I/home/koder/Repos/BiPy/Xenith/token -I/home/koder/Repos/BiPy/imgui -I/home/koder/Repos/BiPy/imgui/backends
|
||||
OBJECT_DIR = CMakeFiles/BIPY_App.dir
|
||||
OBJECT_FILE_DIR = CMakeFiles/BIPY_App.dir/imgui/backends
|
||||
|
||||
build CMakeFiles/BIPY_App.dir/imgui/backends/imgui_impl_opengl3.cpp.o: CXX_COMPILER__BIPY_App_unscanned_Debug /home/koder/Repos/BiPy/imgui/backends/imgui_impl_opengl3.cpp || cmake_object_order_depends_target_BIPY_App
|
||||
DEFINES = -DIMGUI_DISABLE_WAYLAND -DIMGUI_DISABLE_X11
|
||||
DEP_FILE = CMakeFiles/BIPY_App.dir/imgui/backends/imgui_impl_opengl3.cpp.o.d
|
||||
FLAGS = -g -std=gnu++20 -fopenmp
|
||||
INCLUDES = -I/home/koder/Repos/BiPy -I/home/koder/Repos/BiPy/Xenith -I/home/koder/Repos/BiPy/Xenith/token -I/home/koder/Repos/BiPy/imgui -I/home/koder/Repos/BiPy/imgui/backends
|
||||
OBJECT_DIR = CMakeFiles/BIPY_App.dir
|
||||
OBJECT_FILE_DIR = CMakeFiles/BIPY_App.dir/imgui/backends
|
||||
|
||||
|
||||
# =============================================================================
|
||||
# Link build statements for EXECUTABLE target BIPY_App
|
||||
|
||||
|
||||
#############################################
|
||||
# Link the executable BIPY_App
|
||||
|
||||
build BIPY_App: CXX_EXECUTABLE_LINKER__BIPY_App_Debug CMakeFiles/BIPY_App.dir/main.cpp.o CMakeFiles/BIPY_App.dir/Xenith/core.cpp.o CMakeFiles/BIPY_App.dir/Xenith/token/token.cpp.o CMakeFiles/BIPY_App.dir/imgui/imgui.cpp.o CMakeFiles/BIPY_App.dir/imgui/imgui_draw.cpp.o CMakeFiles/BIPY_App.dir/imgui/imgui_widgets.cpp.o CMakeFiles/BIPY_App.dir/imgui/imgui_tables.cpp.o CMakeFiles/BIPY_App.dir/imgui/imgui_demo.cpp.o CMakeFiles/BIPY_App.dir/imgui/backends/imgui_impl_glfw.cpp.o CMakeFiles/BIPY_App.dir/imgui/backends/imgui_impl_opengl3.cpp.o | /usr/lib/x86_64-linux-gnu/libglfw.so.3.3 /usr/lib/x86_64-linux-gnu/libvulkan.so /usr/lib/x86_64-linux-gnu/libGLX.so /usr/lib/x86_64-linux-gnu/libOpenGL.so /usr/lib/gcc/x86_64-linux-gnu/13/libgomp.so /usr/lib/x86_64-linux-gnu/libpthread.a
|
||||
FLAGS = -g
|
||||
LINK_LIBRARIES = /usr/lib/x86_64-linux-gnu/libglfw.so.3.3 /usr/lib/x86_64-linux-gnu/libvulkan.so -lX11 -ldl -lpthread /usr/lib/x86_64-linux-gnu/libGLX.so /usr/lib/x86_64-linux-gnu/libOpenGL.so /usr/lib/gcc/x86_64-linux-gnu/13/libgomp.so /usr/lib/x86_64-linux-gnu/libpthread.a
|
||||
OBJECT_DIR = CMakeFiles/BIPY_App.dir
|
||||
POST_BUILD = :
|
||||
PRE_LINK = :
|
||||
TARGET_FILE = BIPY_App
|
||||
TARGET_PDB = BIPY_App.dbg
|
||||
|
||||
|
||||
#############################################
|
||||
# Utility command for edit_cache
|
||||
|
||||
build CMakeFiles/edit_cache.util: CUSTOM_COMMAND
|
||||
COMMAND = cd /home/koder/Repos/BiPy/build && /usr/bin/cmake -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 = cd /home/koder/Repos/BiPy/build && /usr/bin/cmake --regenerate-during-build -S/home/koder/Repos/BiPy -B/home/koder/Repos/BiPy/build
|
||||
DESC = Running CMake to regenerate build system...
|
||||
pool = console
|
||||
restat = 1
|
||||
|
||||
build rebuild_cache: phony CMakeFiles/rebuild_cache.util
|
||||
|
||||
# =============================================================================
|
||||
# Target aliases.
|
||||
|
||||
# =============================================================================
|
||||
# Folder targets.
|
||||
|
||||
# =============================================================================
|
||||
|
||||
#############################################
|
||||
# Folder: /home/koder/Repos/BiPy/build
|
||||
|
||||
build all: phony BIPY_App
|
||||
|
||||
# =============================================================================
|
||||
# Built-in targets
|
||||
|
||||
|
||||
#############################################
|
||||
# Re-run CMake if any of its inputs changed.
|
||||
|
||||
build build.ninja: RERUN_CMAKE | /home/koder/Repos/BiPy/CMakeLists.txt /usr/lib/x86_64-linux-gnu/cmake/glfw3/glfw3Config.cmake /usr/lib/x86_64-linux-gnu/cmake/glfw3/glfw3ConfigVersion.cmake /usr/lib/x86_64-linux-gnu/cmake/glfw3/glfw3Targets-none.cmake /usr/lib/x86_64-linux-gnu/cmake/glfw3/glfw3Targets.cmake /usr/share/cmake-3.28/Modules/CMakeCInformation.cmake /usr/share/cmake-3.28/Modules/CMakeCXXInformation.cmake /usr/share/cmake-3.28/Modules/CMakeCommonLanguageInclude.cmake /usr/share/cmake-3.28/Modules/CMakeGenericSystem.cmake /usr/share/cmake-3.28/Modules/CMakeInitializeConfigs.cmake /usr/share/cmake-3.28/Modules/CMakeLanguageInformation.cmake /usr/share/cmake-3.28/Modules/CMakeParseImplicitLinkInfo.cmake /usr/share/cmake-3.28/Modules/CMakeSystemSpecificInformation.cmake /usr/share/cmake-3.28/Modules/CMakeSystemSpecificInitialize.cmake /usr/share/cmake-3.28/Modules/Compiler/CMakeCommonCompilerMacros.cmake /usr/share/cmake-3.28/Modules/Compiler/GNU-C.cmake /usr/share/cmake-3.28/Modules/Compiler/GNU-CXX.cmake /usr/share/cmake-3.28/Modules/Compiler/GNU.cmake /usr/share/cmake-3.28/Modules/FindOpenGL.cmake /usr/share/cmake-3.28/Modules/FindOpenMP.cmake /usr/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake /usr/share/cmake-3.28/Modules/FindPackageMessage.cmake /usr/share/cmake-3.28/Modules/FindVulkan.cmake /usr/share/cmake-3.28/Modules/Platform/Linux-GNU-C.cmake /usr/share/cmake-3.28/Modules/Platform/Linux-GNU-CXX.cmake /usr/share/cmake-3.28/Modules/Platform/Linux-GNU.cmake /usr/share/cmake-3.28/Modules/Platform/Linux-Initialize.cmake /usr/share/cmake-3.28/Modules/Platform/Linux.cmake /usr/share/cmake-3.28/Modules/Platform/UnixPaths.cmake CMakeCache.txt CMakeFiles/3.28.3/CMakeCCompiler.cmake CMakeFiles/3.28.3/CMakeCXXCompiler.cmake CMakeFiles/3.28.3/CMakeSystem.cmake
|
||||
pool = console
|
||||
|
||||
|
||||
#############################################
|
||||
# A missing CMake input file is not an error.
|
||||
|
||||
build /home/koder/Repos/BiPy/CMakeLists.txt /usr/lib/x86_64-linux-gnu/cmake/glfw3/glfw3Config.cmake /usr/lib/x86_64-linux-gnu/cmake/glfw3/glfw3ConfigVersion.cmake /usr/lib/x86_64-linux-gnu/cmake/glfw3/glfw3Targets-none.cmake /usr/lib/x86_64-linux-gnu/cmake/glfw3/glfw3Targets.cmake /usr/share/cmake-3.28/Modules/CMakeCInformation.cmake /usr/share/cmake-3.28/Modules/CMakeCXXInformation.cmake /usr/share/cmake-3.28/Modules/CMakeCommonLanguageInclude.cmake /usr/share/cmake-3.28/Modules/CMakeGenericSystem.cmake /usr/share/cmake-3.28/Modules/CMakeInitializeConfigs.cmake /usr/share/cmake-3.28/Modules/CMakeLanguageInformation.cmake /usr/share/cmake-3.28/Modules/CMakeParseImplicitLinkInfo.cmake /usr/share/cmake-3.28/Modules/CMakeSystemSpecificInformation.cmake /usr/share/cmake-3.28/Modules/CMakeSystemSpecificInitialize.cmake /usr/share/cmake-3.28/Modules/Compiler/CMakeCommonCompilerMacros.cmake /usr/share/cmake-3.28/Modules/Compiler/GNU-C.cmake /usr/share/cmake-3.28/Modules/Compiler/GNU-CXX.cmake /usr/share/cmake-3.28/Modules/Compiler/GNU.cmake /usr/share/cmake-3.28/Modules/FindOpenGL.cmake /usr/share/cmake-3.28/Modules/FindOpenMP.cmake /usr/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake /usr/share/cmake-3.28/Modules/FindPackageMessage.cmake /usr/share/cmake-3.28/Modules/FindVulkan.cmake /usr/share/cmake-3.28/Modules/Platform/Linux-GNU-C.cmake /usr/share/cmake-3.28/Modules/Platform/Linux-GNU-CXX.cmake /usr/share/cmake-3.28/Modules/Platform/Linux-GNU.cmake /usr/share/cmake-3.28/Modules/Platform/Linux-Initialize.cmake /usr/share/cmake-3.28/Modules/Platform/Linux.cmake /usr/share/cmake-3.28/Modules/Platform/UnixPaths.cmake CMakeCache.txt CMakeFiles/3.28.3/CMakeCCompiler.cmake CMakeFiles/3.28.3/CMakeCXXCompiler.cmake CMakeFiles/3.28.3/CMakeSystem.cmake: phony
|
||||
|
||||
|
||||
#############################################
|
||||
# Clean all the built files.
|
||||
|
||||
build clean: CLEAN
|
||||
|
||||
|
||||
#############################################
|
||||
# Print all primary targets available.
|
||||
|
||||
build help: HELP
|
||||
|
||||
|
||||
#############################################
|
||||
# Make the all target the default.
|
||||
|
||||
default all
|
||||
@@ -1,4 +1,4 @@
|
||||
# Install script for directory: /home/beluga/unityproject/BiPy
|
||||
# Install script for directory: /home/koder/Repos/BiPy
|
||||
|
||||
# Set the install prefix
|
||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||
@@ -12,7 +12,7 @@ if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||
set(CMAKE_INSTALL_CONFIG_NAME "Debug")
|
||||
endif()
|
||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||
endif()
|
||||
@@ -29,7 +29,7 @@ endif()
|
||||
|
||||
# Install shared libraries without execute permission?
|
||||
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||
set(CMAKE_INSTALL_SO_NO_EXE "0")
|
||||
set(CMAKE_INSTALL_SO_NO_EXE "1")
|
||||
endif()
|
||||
|
||||
# Is this installation the result of a crosscompile?
|
||||
@@ -37,30 +37,18 @@ if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||
endif()
|
||||
|
||||
# Set path to fallback-tool for dependency-resolution.
|
||||
# Set default install directory permissions.
|
||||
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||
set(CMAKE_OBJDUMP "/usr/bin/objdump")
|
||||
endif()
|
||||
|
||||
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
||||
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
||||
if(CMAKE_INSTALL_LOCAL_ONLY)
|
||||
file(WRITE "/home/beluga/unityproject/BiPy/build/install_local_manifest.txt"
|
||||
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||
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()
|
||||
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
|
||||
else()
|
||||
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
|
||||
endif()
|
||||
|
||||
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
|
||||
file(WRITE "/home/beluga/unityproject/BiPy/build/${CMAKE_INSTALL_MANIFEST}"
|
||||
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
||||
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
||||
file(WRITE "/home/koder/Repos/BiPy/build/${CMAKE_INSTALL_MANIFEST}"
|
||||
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||
endif()
|
||||
|
||||
@@ -0,0 +1,62 @@
|
||||
[
|
||||
{
|
||||
"directory": "/home/koder/Repos/BiPy/build",
|
||||
"command": "/usr/bin/g++ -DIMGUI_DISABLE_WAYLAND -DIMGUI_DISABLE_X11 -I/home/koder/Repos/BiPy -I/home/koder/Repos/BiPy/Xenith -I/home/koder/Repos/BiPy/Xenith/token -I/home/koder/Repos/BiPy/imgui -I/home/koder/Repos/BiPy/imgui/backends -g -std=gnu++20 -fopenmp -o CMakeFiles/BIPY_App.dir/main.cpp.o -c /home/koder/Repos/BiPy/main.cpp",
|
||||
"file": "/home/koder/Repos/BiPy/main.cpp",
|
||||
"output": "CMakeFiles/BIPY_App.dir/main.cpp.o"
|
||||
},
|
||||
{
|
||||
"directory": "/home/koder/Repos/BiPy/build",
|
||||
"command": "/usr/bin/g++ -DIMGUI_DISABLE_WAYLAND -DIMGUI_DISABLE_X11 -I/home/koder/Repos/BiPy -I/home/koder/Repos/BiPy/Xenith -I/home/koder/Repos/BiPy/Xenith/token -I/home/koder/Repos/BiPy/imgui -I/home/koder/Repos/BiPy/imgui/backends -g -std=gnu++20 -fopenmp -o CMakeFiles/BIPY_App.dir/Xenith/core.cpp.o -c /home/koder/Repos/BiPy/Xenith/core.cpp",
|
||||
"file": "/home/koder/Repos/BiPy/Xenith/core.cpp",
|
||||
"output": "CMakeFiles/BIPY_App.dir/Xenith/core.cpp.o"
|
||||
},
|
||||
{
|
||||
"directory": "/home/koder/Repos/BiPy/build",
|
||||
"command": "/usr/bin/g++ -DIMGUI_DISABLE_WAYLAND -DIMGUI_DISABLE_X11 -I/home/koder/Repos/BiPy -I/home/koder/Repos/BiPy/Xenith -I/home/koder/Repos/BiPy/Xenith/token -I/home/koder/Repos/BiPy/imgui -I/home/koder/Repos/BiPy/imgui/backends -g -std=gnu++20 -fopenmp -o CMakeFiles/BIPY_App.dir/Xenith/token/token.cpp.o -c /home/koder/Repos/BiPy/Xenith/token/token.cpp",
|
||||
"file": "/home/koder/Repos/BiPy/Xenith/token/token.cpp",
|
||||
"output": "CMakeFiles/BIPY_App.dir/Xenith/token/token.cpp.o"
|
||||
},
|
||||
{
|
||||
"directory": "/home/koder/Repos/BiPy/build",
|
||||
"command": "/usr/bin/g++ -DIMGUI_DISABLE_WAYLAND -DIMGUI_DISABLE_X11 -I/home/koder/Repos/BiPy -I/home/koder/Repos/BiPy/Xenith -I/home/koder/Repos/BiPy/Xenith/token -I/home/koder/Repos/BiPy/imgui -I/home/koder/Repos/BiPy/imgui/backends -g -std=gnu++20 -fopenmp -o CMakeFiles/BIPY_App.dir/imgui/imgui.cpp.o -c /home/koder/Repos/BiPy/imgui/imgui.cpp",
|
||||
"file": "/home/koder/Repos/BiPy/imgui/imgui.cpp",
|
||||
"output": "CMakeFiles/BIPY_App.dir/imgui/imgui.cpp.o"
|
||||
},
|
||||
{
|
||||
"directory": "/home/koder/Repos/BiPy/build",
|
||||
"command": "/usr/bin/g++ -DIMGUI_DISABLE_WAYLAND -DIMGUI_DISABLE_X11 -I/home/koder/Repos/BiPy -I/home/koder/Repos/BiPy/Xenith -I/home/koder/Repos/BiPy/Xenith/token -I/home/koder/Repos/BiPy/imgui -I/home/koder/Repos/BiPy/imgui/backends -g -std=gnu++20 -fopenmp -o CMakeFiles/BIPY_App.dir/imgui/imgui_draw.cpp.o -c /home/koder/Repos/BiPy/imgui/imgui_draw.cpp",
|
||||
"file": "/home/koder/Repos/BiPy/imgui/imgui_draw.cpp",
|
||||
"output": "CMakeFiles/BIPY_App.dir/imgui/imgui_draw.cpp.o"
|
||||
},
|
||||
{
|
||||
"directory": "/home/koder/Repos/BiPy/build",
|
||||
"command": "/usr/bin/g++ -DIMGUI_DISABLE_WAYLAND -DIMGUI_DISABLE_X11 -I/home/koder/Repos/BiPy -I/home/koder/Repos/BiPy/Xenith -I/home/koder/Repos/BiPy/Xenith/token -I/home/koder/Repos/BiPy/imgui -I/home/koder/Repos/BiPy/imgui/backends -g -std=gnu++20 -fopenmp -o CMakeFiles/BIPY_App.dir/imgui/imgui_widgets.cpp.o -c /home/koder/Repos/BiPy/imgui/imgui_widgets.cpp",
|
||||
"file": "/home/koder/Repos/BiPy/imgui/imgui_widgets.cpp",
|
||||
"output": "CMakeFiles/BIPY_App.dir/imgui/imgui_widgets.cpp.o"
|
||||
},
|
||||
{
|
||||
"directory": "/home/koder/Repos/BiPy/build",
|
||||
"command": "/usr/bin/g++ -DIMGUI_DISABLE_WAYLAND -DIMGUI_DISABLE_X11 -I/home/koder/Repos/BiPy -I/home/koder/Repos/BiPy/Xenith -I/home/koder/Repos/BiPy/Xenith/token -I/home/koder/Repos/BiPy/imgui -I/home/koder/Repos/BiPy/imgui/backends -g -std=gnu++20 -fopenmp -o CMakeFiles/BIPY_App.dir/imgui/imgui_tables.cpp.o -c /home/koder/Repos/BiPy/imgui/imgui_tables.cpp",
|
||||
"file": "/home/koder/Repos/BiPy/imgui/imgui_tables.cpp",
|
||||
"output": "CMakeFiles/BIPY_App.dir/imgui/imgui_tables.cpp.o"
|
||||
},
|
||||
{
|
||||
"directory": "/home/koder/Repos/BiPy/build",
|
||||
"command": "/usr/bin/g++ -DIMGUI_DISABLE_WAYLAND -DIMGUI_DISABLE_X11 -I/home/koder/Repos/BiPy -I/home/koder/Repos/BiPy/Xenith -I/home/koder/Repos/BiPy/Xenith/token -I/home/koder/Repos/BiPy/imgui -I/home/koder/Repos/BiPy/imgui/backends -g -std=gnu++20 -fopenmp -o CMakeFiles/BIPY_App.dir/imgui/imgui_demo.cpp.o -c /home/koder/Repos/BiPy/imgui/imgui_demo.cpp",
|
||||
"file": "/home/koder/Repos/BiPy/imgui/imgui_demo.cpp",
|
||||
"output": "CMakeFiles/BIPY_App.dir/imgui/imgui_demo.cpp.o"
|
||||
},
|
||||
{
|
||||
"directory": "/home/koder/Repos/BiPy/build",
|
||||
"command": "/usr/bin/g++ -DIMGUI_DISABLE_WAYLAND -DIMGUI_DISABLE_X11 -I/home/koder/Repos/BiPy -I/home/koder/Repos/BiPy/Xenith -I/home/koder/Repos/BiPy/Xenith/token -I/home/koder/Repos/BiPy/imgui -I/home/koder/Repos/BiPy/imgui/backends -g -std=gnu++20 -fopenmp -o CMakeFiles/BIPY_App.dir/imgui/backends/imgui_impl_glfw.cpp.o -c /home/koder/Repos/BiPy/imgui/backends/imgui_impl_glfw.cpp",
|
||||
"file": "/home/koder/Repos/BiPy/imgui/backends/imgui_impl_glfw.cpp",
|
||||
"output": "CMakeFiles/BIPY_App.dir/imgui/backends/imgui_impl_glfw.cpp.o"
|
||||
},
|
||||
{
|
||||
"directory": "/home/koder/Repos/BiPy/build",
|
||||
"command": "/usr/bin/g++ -DIMGUI_DISABLE_WAYLAND -DIMGUI_DISABLE_X11 -I/home/koder/Repos/BiPy -I/home/koder/Repos/BiPy/Xenith -I/home/koder/Repos/BiPy/Xenith/token -I/home/koder/Repos/BiPy/imgui -I/home/koder/Repos/BiPy/imgui/backends -g -std=gnu++20 -fopenmp -o CMakeFiles/BIPY_App.dir/imgui/backends/imgui_impl_opengl3.cpp.o -c /home/koder/Repos/BiPy/imgui/backends/imgui_impl_opengl3.cpp",
|
||||
"file": "/home/koder/Repos/BiPy/imgui/backends/imgui_impl_opengl3.cpp",
|
||||
"output": "CMakeFiles/BIPY_App.dir/imgui/backends/imgui_impl_opengl3.cpp.o"
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,2 @@
|
||||
[USER]Привет[AI]Приветик, как дела?[EOS]
|
||||
[USER]Привет[AI]Привет, нужна помощь? Пише если что всегда рада помочь[EOS]
|
||||
@@ -0,0 +1,24 @@
|
||||
[Window][Debug##Default]
|
||||
Pos=60,60
|
||||
Size=400,400
|
||||
|
||||
[Window][BiPy Control Panel]
|
||||
Pos=400,308
|
||||
Size=339,116
|
||||
|
||||
[Window][MainView]
|
||||
Pos=0,0
|
||||
Size=1280,720
|
||||
|
||||
[Window][Main]
|
||||
Pos=0,0
|
||||
Size=1280,720
|
||||
|
||||
[Window][Studio]
|
||||
Pos=0,0
|
||||
Size=1400,800
|
||||
|
||||
[Window][StudioMain]
|
||||
Pos=0,0
|
||||
Size=1400,800
|
||||
|
||||
Binary file not shown.
@@ -1,21 +1,34 @@
|
||||
#include <iostream>
|
||||
#include <iomanip>
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <sstream>
|
||||
#include <fstream>
|
||||
#include <chrono>
|
||||
#include <iomanip>
|
||||
#include <filesystem>
|
||||
#include <thread>
|
||||
#include <atomic>
|
||||
|
||||
#include "imgui.h"
|
||||
#include "imgui_impl_glfw.h"
|
||||
#include "imgui_impl_opengl3.h"
|
||||
#include <GLFW/glfw3.h>
|
||||
|
||||
#include "Xenith/core.hpp"
|
||||
#include "Xenith/token/token.hpp"
|
||||
|
||||
|
||||
std::string currentSystemPrompt = "";
|
||||
|
||||
LayerStructure_t layers[] = {
|
||||
{MAX_CONTEXT * EMBED_DIM, SIGMOID},
|
||||
{1024, SIGMOID},
|
||||
{MAX_VOCAB, SIGMOID}
|
||||
};
|
||||
struct UIState {
|
||||
std::string chatLog;
|
||||
TrainStatus lastStatus = {0};
|
||||
float lr = 0.01f;
|
||||
int epochs = 10;
|
||||
char fileBuf[256] = "dataset.txt";
|
||||
char editorBuf[1024 * 512] = ""; // 512KB для текста
|
||||
char inputBuf[512] = "";
|
||||
bool scrollChat = true;
|
||||
std::atomic<bool> isTraining{false};
|
||||
double genSpeed = 0;
|
||||
} ui;
|
||||
|
||||
std::string formatTime(double seconds) {
|
||||
if (seconds < 0) seconds = 0;
|
||||
@@ -28,78 +41,164 @@ std::string formatTime(double seconds) {
|
||||
}
|
||||
|
||||
std::vector<double> buildNetInput(const std::vector<int>& tokens, Embedder& emb) {
|
||||
std::vector<double> netInput; netInput.reserve(MAX_CONTEXT * EMBED_DIM);
|
||||
int start = (int)tokens.size() - MAX_CONTEXT; if (start < 0) start = 0;
|
||||
std::vector<double> netInput;
|
||||
netInput.reserve(MAX_CONTEXT * EMBED_DIM);
|
||||
int start = (int)tokens.size() - MAX_CONTEXT;
|
||||
if (start < 0) start = 0;
|
||||
int count = 0;
|
||||
for (int i = start; i < (int)tokens.size(); i++) {
|
||||
std::vector<double> v = emb.get(tokens[i]);
|
||||
netInput.insert(netInput.end(), v.begin(), v.end()); count++;
|
||||
netInput.insert(netInput.end(), v.begin(), v.end());
|
||||
count++;
|
||||
}
|
||||
while (count < MAX_CONTEXT) {
|
||||
for (int d = 0; d < EMBED_DIM; d++) netInput.push_back(0.0);
|
||||
count++;
|
||||
}
|
||||
while (count < MAX_CONTEXT) { for (int d = 0; d < EMBED_DIM; d++) netInput.push_back(0.0); count++; }
|
||||
return netInput;
|
||||
}
|
||||
|
||||
int main() {
|
||||
Tokenizer tok; Embedder emb(MAX_VOCAB, EMBED_DIM);
|
||||
NeuralNetwork nn(layers, sizeof(layers)/sizeof(layers[0]), true);
|
||||
if (!glfwInit()) return 1;
|
||||
GLFWwindow* window = glfwCreateWindow(1400, 800, "BiPy Studio", nullptr, nullptr);
|
||||
glfwMakeContextCurrent(window);
|
||||
glfwSwapInterval(1);
|
||||
|
||||
while (true) {
|
||||
std::cout << "\033[1;32mxenith\033[0m~$ ";
|
||||
std::string cmdIn; std::getline(std::cin, cmdIn);
|
||||
if (cmdIn == "/exit") break;
|
||||
IMGUI_CHECKVERSION();
|
||||
ImGui::CreateContext();
|
||||
ImGuiIO& io = ImGui::GetIO();
|
||||
|
||||
const char* font_path = "/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf";
|
||||
if (std::filesystem::exists(font_path))
|
||||
io.Fonts->AddFontFromFileTTF(font_path, 18.0f, nullptr, io.Fonts->GetGlyphRangesCyrillic());
|
||||
|
||||
if (cmdIn == "/train" || cmdIn == "/trainFile") {
|
||||
std::string content;
|
||||
if (cmdIn == "/trainFile") {
|
||||
std::cout << "Filename: "; std::string fn; std::getline(std::cin, fn);
|
||||
std::ifstream f(fn); std::stringstream ss; ss << f.rdbuf(); content = ss.str();
|
||||
} else {
|
||||
std::cout << "User: "; std::string u; std::getline(std::cin, u);
|
||||
std::cout << "AI: "; std::string a; std::getline(std::cin, a);
|
||||
content = "[CLR][USER]" + u + "[AI]" + a + "<EOS>";
|
||||
}
|
||||
std::cout << "Epochs: "; std::string ep; std::getline(std::cin, ep);
|
||||
std::cout << "LR: "; std::string lr; std::getline(std::cin, lr);
|
||||
std::cout << "\n\033[s";
|
||||
nn.trainOnSequence(tok, emb, content, std::stoi(ep), std::stod(lr), buildNetInput, [](const TrainStatus& s) {
|
||||
std::stringstream ss;
|
||||
if (s.totalParams >= 1e12) ss << std::fixed << std::setprecision(1) << s.totalParams / 1e12 << "t";
|
||||
else if (s.totalParams >= 1e9) ss << std::fixed << std::setprecision(1) << s.totalParams / 1e9 << "b";
|
||||
else if (s.totalParams >= 1e6) ss << std::fixed << std::setprecision(1) << s.totalParams / 1e6 << "m";
|
||||
else if (s.totalParams >= 1e3) ss << std::fixed << std::setprecision(1) << s.totalParams / 1e3 << "k";
|
||||
else ss << s.totalParams;
|
||||
std::cout << "\033[u";
|
||||
int width = 100;
|
||||
int pos = width * (s.percentage / 100.0f);
|
||||
std::cout << "[\033[1;36m";
|
||||
for(int i=0; i<width; i++) std::cout << (i < pos ? "■" : " ");
|
||||
std::cout << "\033[0m] " << std::fixed << std::setprecision(1) << s.percentage << "% | ETA: \033[1;33m" << formatTime(s.eta) << "\033[0m | Params: \033[1;32m" << ss.str() << "\033[0m\n";
|
||||
ImGui_ImplGlfw_InitForOpenGL(window, true);
|
||||
ImGui_ImplOpenGL3_Init("#version 130");
|
||||
|
||||
//LayerStructure_t layers[] = {{MAX_CONTEXT * EMBED_DIM, SIGMOID}, {MIDDLE_LAYER, SIGMOID}, {MAX_VOCAB, SIGMOID}};
|
||||
|
||||
LayerStructure_t layers[] = {
|
||||
{MAX_CONTEXT * EMBED_DIM, SIGMOID},
|
||||
{2048, SIGMOID},
|
||||
{2048, SIGMOID},
|
||||
{1024, SIGMOID},
|
||||
{MAX_VOCAB, SIGMOID}
|
||||
};
|
||||
|
||||
Tokenizer tok;
|
||||
Embedder emb(MAX_VOCAB, EMBED_DIM);
|
||||
NeuralNetwork nn(layers, 3, true); // GPU ON
|
||||
|
||||
while (!glfwWindowShouldClose(window)) {
|
||||
glfwPollEvents();
|
||||
ImGui_ImplOpenGL3_NewFrame(); ImGui_ImplGlfw_NewFrame(); ImGui::NewFrame();
|
||||
|
||||
ImGui::SetNextWindowPos(ImVec2(0, 0));
|
||||
ImGui::SetNextWindowSize(io.DisplaySize);
|
||||
ImGui::Begin("Studio", nullptr, ImGuiWindowFlags_NoDecoration);
|
||||
|
||||
// Левая панель
|
||||
ImGui::BeginChild("Left", ImVec2(io.DisplaySize.x * 0.4f, 0), true);
|
||||
if (ImGui::BeginTabBar("Tabs")) {
|
||||
|
||||
// ВКЛАДКА ЧАТ
|
||||
if (ImGui::BeginTabItem("Чат")) {
|
||||
ImGui::BeginChild("ChatLog", ImVec2(0, -60), true);
|
||||
ImGui::TextWrapped("%s", ui.chatLog.c_str());
|
||||
if (ui.scrollChat) { ImGui::SetScrollHereY(1.0f); ui.scrollChat = false; }
|
||||
ImGui::EndChild();
|
||||
|
||||
if (ImGui::InputText("##In", ui.inputBuf, 512, ImGuiInputTextFlags_EnterReturnsTrue)) {
|
||||
ui.chatLog += "\n[USER]: " + std::string(ui.inputBuf);
|
||||
auto startGen = std::chrono::high_resolution_clock::now();
|
||||
|
||||
std::cout << "Epoch: " << s.currentEpoch << "/" << s.totalEpochs
|
||||
<< " | Token: " << s.currentToken << "/" << s.totalTokens << "\n";
|
||||
std::cout << "Loss: " << std::fixed << std::setprecision(6) << s.currentLoss
|
||||
<< " | Ep Loss: " << s.epochLoss << "\n";
|
||||
std::cout << "Prev Ep Loss: " << s.lastEpochLoss << "\n";
|
||||
std::cout << "Speed: " << std::fixed << std::setprecision(1) << s.speed << " t/s\033[K" << std::flush;
|
||||
std::string prompt = "[USER]" + std::string(ui.inputBuf) + "[AI]";
|
||||
std::vector<int> ctx = tok.textToTokens(prompt);
|
||||
std::string aiRes = "";
|
||||
for (int g = 0; g < 128; g++) {
|
||||
std::vector<double> out = nn.feedForward(buildNetInput(ctx, emb));
|
||||
int bId = 0; double mV = -1.0;
|
||||
for (int i = 0; i < MAX_VOCAB; i++) if (out[i] > mV) { mV = out[i]; bId = i; }
|
||||
if (bId <= 0) break;
|
||||
std::string w = tok.getWord(bId);
|
||||
if (w == "<EOS>") break;
|
||||
aiRes += w; ctx.push_back(bId);
|
||||
if (ctx.size() > MAX_CONTEXT) ctx.erase(ctx.begin());
|
||||
}
|
||||
auto endGen = std::chrono::high_resolution_clock::now();
|
||||
ui.genSpeed = 1.0 / std::chrono::duration<double>(endGen - startGen).count() * aiRes.size(); // симв/сек
|
||||
ui.chatLog += "\n[AI]: " + aiRes + "\n";
|
||||
ui.inputBuf[0] = '\0'; ui.scrollChat = true;
|
||||
}
|
||||
);
|
||||
std::cout << "\n\nDone.\n";
|
||||
} else {
|
||||
std::string prompt = "[USER]" + cmdIn + "[AI]";
|
||||
std::vector<int> ctx = tok.textToTokens(prompt);
|
||||
int eosId = -1; auto s = tok.textToTokens("<EOS>"); if(!s.empty()) eosId = s[0];
|
||||
std::cout << "\033[1;33mAI:\033[0m ";
|
||||
for (int g = 0; g < 256; g++) {
|
||||
std::vector<double> out = nn.feedForward(buildNetInput(ctx, emb));
|
||||
int bId = 0; double mV = -1.0;
|
||||
for (int i = 0; i < MAX_VOCAB; i++) if (out[i] > mV) { mV = out[i]; bId = i; }
|
||||
if (bId == eosId || bId == 0) break;
|
||||
std::string w = tok.getWord(bId);
|
||||
if (w != "[AI]" && w != "[USER]" && w != "[CLR]") std::cout << w << std::flush;
|
||||
ctx.push_back(bId); if (ctx.size() > MAX_CONTEXT) ctx.erase(ctx.begin());
|
||||
ImGui::Text("Скорость генерации: %.1f симв/сек", ui.genSpeed);
|
||||
ImGui::EndTabItem();
|
||||
}
|
||||
std::cout << std::endl;
|
||||
|
||||
// ВКЛАДКА ОБУЧЕНИЕ
|
||||
if (ImGui::BeginTabItem("Обучение")) {
|
||||
ImGui::InputText("Файл", ui.fileBuf, 256);
|
||||
if (ImGui::Button("Загрузить")) {
|
||||
std::ifstream f(ui.fileBuf);
|
||||
if (f) {
|
||||
std::stringstream ss; ss << f.rdbuf();
|
||||
strncpy(ui.editorBuf, ss.str().c_str(), sizeof(ui.editorBuf)-1);
|
||||
}
|
||||
}
|
||||
ImGui::SliderInt("Эпохи", &ui.epochs, 1, 500);
|
||||
ImGui::SliderFloat("LR", &ui.lr, 0.0001f, 0.1f);
|
||||
|
||||
if (ImGui::Button("ПУСК", ImVec2(-1, 40)) && !ui.isTraining) {
|
||||
std::string data = ui.editorBuf;
|
||||
ui.isTraining = true;
|
||||
std::thread([&nn, &tok, &emb, data]() {
|
||||
nn.trainOnSequence(tok, emb, data, ui.epochs, (double)ui.lr, buildNetInput,
|
||||
[](const TrainStatus& s) { ui.lastStatus = s; });
|
||||
ui.isTraining = false;
|
||||
}).detach();
|
||||
}
|
||||
|
||||
std::stringstream ss;
|
||||
if (ui.lastStatus.totalParams >= 1e12) ss << std::fixed << std::setprecision(1) << ui.lastStatus.totalParams / 1e12 << "t";
|
||||
else if (ui.lastStatus.totalParams >= 1e9) ss << std::fixed << std::setprecision(1) << ui.lastStatus.totalParams / 1e9 << "b";
|
||||
else if (ui.lastStatus.totalParams >= 1e6) ss << std::fixed << std::setprecision(1) << ui.lastStatus.totalParams / 1e6 << "m";
|
||||
else if (ui.lastStatus.totalParams >= 1e3) ss << std::fixed << std::setprecision(1) << ui.lastStatus.totalParams / 1e3 << "k";
|
||||
else ss << ui.lastStatus.totalParams;
|
||||
|
||||
std::stringstream ss2;
|
||||
double bytes = (double)ui.lastStatus.totalParams * 4.0;
|
||||
if (bytes >= 1024.0 * 1024.0 * 1024.0)
|
||||
ss2 << std::fixed << std::setprecision(2) << bytes / (1024.0 * 1024.0 * 1024.0) << " GB";
|
||||
else if (bytes >= 1024.0 * 1024.0)
|
||||
ss2 << std::fixed << std::setprecision(2) << bytes / (1024.0 * 1024.0) << " MB";
|
||||
else
|
||||
ss2 << std::fixed << std::setprecision(2) << bytes / 1024.0 << " KB";
|
||||
|
||||
|
||||
ImGui::ProgressBar(ui.lastStatus.percentage / 100.0f, ImVec2(-1, 20));
|
||||
ImGui::Text("%d / %d", ui.lastStatus.currentEpoch, ui.lastStatus.totalEpochs);
|
||||
ImGui::Text("ETA: %s", formatTime(ui.lastStatus.eta).c_str());
|
||||
ImGui::Text("Токенов: %d / %d", ui.lastStatus.currentToken, ui.lastStatus.totalTokens);
|
||||
ImGui::Text("Текущий Loss: %.6f", ui.lastStatus.currentLoss);
|
||||
ImGui::Text("Loss эпохи: %.6f", ui.lastStatus.lastEpochLoss);
|
||||
ImGui::Text("Скорость обучения: %.1f t/s", ui.lastStatus.speed);
|
||||
ImGui::Text("Параметров: %s (%s)", ss.str().c_str(), ss2.str().c_str());
|
||||
ImGui::EndTabItem();
|
||||
}
|
||||
ImGui::EndTabBar();
|
||||
}
|
||||
ImGui::EndChild();
|
||||
ImGui::SameLine();
|
||||
ImGui::BeginChild("Right");
|
||||
ImGui::Text("Редактор датасета:");
|
||||
ImGui::InputTextMultiline("##ed", ui.editorBuf, sizeof(ui.editorBuf), ImVec2(-1, -1));
|
||||
ImGui::EndChild();
|
||||
ImGui::End();
|
||||
|
||||
ImGui::Render();
|
||||
glViewport(0, 0, (int)io.DisplaySize.x, (int)io.DisplaySize.y);
|
||||
glClearColor(0.1f, 0.1f, 0.1f, 1.0f); glClear(GL_COLOR_BUFFER_BIT);
|
||||
ImGui_ImplOpenGL3_RenderDrawData(ImGui::GetDrawData());
|
||||
glfwSwapBuffers(window);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,49 +0,0 @@
|
||||
#include "imgui.h"
|
||||
#include "imgui_impl_glfw.h"
|
||||
#include "imgui_impl_opengl3.h"
|
||||
#include <GLFW/glfw3.h>
|
||||
#include "GUI/visual.hpp"
|
||||
|
||||
int main()
|
||||
{
|
||||
if(!glfwInit()) return 1;
|
||||
const char* glsl_version = "#version 130";
|
||||
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR,3);
|
||||
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR,0);
|
||||
|
||||
GLFWwindow* window = glfwCreateWindow(1280,720,"Test AI Visualizer", NULL,NULL);
|
||||
if(window == NULL) return 1;
|
||||
glfwMakeContextCurrent(window);
|
||||
glfwSwapInterval(1);
|
||||
IMGUI_CHECKVERSION();
|
||||
ImGui::CreateContext();
|
||||
ImGui::StyleColorsDark();
|
||||
ImGui_ImplGlfw_InitForOpenGL(window,true);
|
||||
ImGui_ImplOpenGL3_Init(glsl_version);
|
||||
MyVisualizer vis;
|
||||
|
||||
while (!glfwWindowShouldClose(window))
|
||||
{
|
||||
glfwPollEvents();
|
||||
ImGui_ImplGlfw_NewFrame();
|
||||
ImGui::NewFrame();
|
||||
vis.Render();
|
||||
ImGui::Render();
|
||||
int display_w, display_h;
|
||||
|
||||
glfwGetFramebufferSize(window,&display_w,&display_h);
|
||||
glViewport(0,0,display_w,display_h);
|
||||
glClearColor(0.45f,0.55f,0.60f,1.00f);
|
||||
glClear(GL_COLOR_BUFFER_BIT);
|
||||
ImGui_ImplOpenGL3_RenderDrawData(ImGui::GetDrawData());
|
||||
glfwSwapBuffers(window);
|
||||
}
|
||||
|
||||
ImGui_ImplOpenGL3_Shutdown();
|
||||
ImGui_ImplGlfw_Shutdown();
|
||||
ImGui::DestroyContext();
|
||||
glfwDestroyWindow(window);
|
||||
glfwTerminate();
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user