commit 9c41714b967100373741c3f2e0e141fc530e354e Author: Erris Date: Mon Jan 12 16:57:00 2026 +0100 Initial late commit diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..db503cf --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,11 @@ +cmake_minimum_required(VERSION 3.28) + +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) + +project(OpenEngineProject) + +add_subdirectory(open_engine) + +add_subdirectory(application + ./bin +) diff --git a/application/.envrc b/application/.envrc new file mode 100644 index 0000000..1b8e7bf --- /dev/null +++ b/application/.envrc @@ -0,0 +1,8 @@ +source ../.envrc + +export BINARY_NAME=opengl-tuto +export BUILD_TYPE=Debug +export PROJECT_NAME=opengl-tuto + +export CMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake +export imgui_DIR=./build diff --git a/application/.nvim_session b/application/.nvim_session new file mode 100644 index 0000000..afc157f --- /dev/null +++ b/application/.nvim_session @@ -0,0 +1,63 @@ +let SessionLoad = 1 +let s:so_save = &g:so | let s:siso_save = &g:siso | setg so=0 siso=0 | setl so=-1 siso=-1 +let v:this_session=expand(":p") +silent only +silent tabonly +cd ~/projects/open_engine/application +if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == '' + let s:wipebuf = bufnr('%') +endif +let s:shortmess_save = &shortmess +if &shortmess =~ 'A' + set shortmess=aoOA +else + set shortmess=aoO +endif +badd +1 conanfile.txt +argglobal +%argdel +$argadd conanfile.txt +edit conanfile.txt +wincmd t +let s:save_winminheight = &winminheight +let s:save_winminwidth = &winminwidth +set winminheight=0 +set winheight=1 +set winminwidth=0 +set winwidth=1 +argglobal +setlocal foldmethod=manual +setlocal foldexpr=0 +setlocal foldmarker={{{,}}} +setlocal foldignore=# +setlocal foldlevel=0 +setlocal foldminlines=1 +setlocal foldnestmax=20 +setlocal foldenable +silent! normal! zE +let &fdl = &fdl +let s:l = 3 - ((2 * winheight(0) + 30) / 60) +if s:l < 1 | let s:l = 1 | endif +keepjumps exe s:l +normal! zt +keepjumps 3 +normal! 0 +tabnext 1 +if exists('s:wipebuf') && len(win_findbuf(s:wipebuf)) == 0 && getbufvar(s:wipebuf, '&buftype') isnot# 'terminal' + silent exe 'bwipe ' . s:wipebuf +endif +unlet! s:wipebuf +set winheight=1 winwidth=20 +let &shortmess = s:shortmess_save +let &winminheight = s:save_winminheight +let &winminwidth = s:save_winminwidth +let s:sx = expand(":p:r")."x.vim" +if filereadable(s:sx) + exe "source " . fnameescape(s:sx) +endif +let &g:so = s:so_save | let &g:siso = s:siso_save +set hlsearch +nohlsearch +doautoall SessionLoadPost +unlet SessionLoad +" vim: set ft=vim : diff --git a/application/CMakeLists.txt b/application/CMakeLists.txt new file mode 100644 index 0000000..c80b674 --- /dev/null +++ b/application/CMakeLists.txt @@ -0,0 +1,31 @@ +cmake_minimum_required(VERSION 3.28) + +set(CMAKE_CXX_STANDARD 20) + +set(PROJECT_EXECUTABLE_NAME sand_box) + +project(SandBox + VERSION 0.1.0 +) + +find_package(imgui REQUIRED CONFIG) +find_package(spdlog REQUIRED CONFIG) + +file(GLOB_RECURSE SRC_FILES "src/*.cpp") +add_executable(${PROJECT_EXECUTABLE_NAME} + ${SRC_FILES} +) + +target_include_directories(${PROJECT_EXECUTABLE_NAME} PRIVATE + "${PROJECT_SOURCE_DIR}/include" +) + +target_link_libraries(${PROJECT_EXECUTABLE_NAME} PRIVATE + spdlog::spdlog + imgui::imgui + open_engine +) + +target_link_directories(${PROJECT_EXECUTABLE_NAME} PRIVATE + ${PROJECT_SOURCE_DIR}/lib +) diff --git a/application/CMakeUserPresets.json b/application/CMakeUserPresets.json new file mode 100644 index 0000000..945b382 --- /dev/null +++ b/application/CMakeUserPresets.json @@ -0,0 +1,9 @@ +{ + "version": 4, + "vendor": { + "conan": {} + }, + "include": [ + "build/CMakePresets.json" + ] +} \ No newline at end of file diff --git a/application/assets/lua_library/lib.lua b/application/assets/lua_library/lib.lua new file mode 100644 index 0000000..3e13ce8 --- /dev/null +++ b/application/assets/lua_library/lib.lua @@ -0,0 +1 @@ +---@meta diff --git a/application/assets/scripts/camera.lua b/application/assets/scripts/camera.lua new file mode 100644 index 0000000..14e23cb --- /dev/null +++ b/application/assets/scripts/camera.lua @@ -0,0 +1,53 @@ +local velocity = 5 + +function HandleMouse(camera, delta_time) + local mouse_sensitivity = 0.2 + local xoffset, yoffset = Input:GetMouseOffset() + + xoffset = xoffset * mouse_sensitivity; + yoffset = yoffset * mouse_sensitivity; + + local pitch, yaw = camera:GetPitchYaw() + yaw = yaw + xoffset; + pitch = pitch + yoffset; + + if pitch > 89.0 then + pitch = 89.0; + if pitch < -89.0 then + pitch = -89.0; + end + end + + camera:SetPitchYaw(pitch, yaw) + +end + +function Update() + local delta_time = Time:DeltaTime(); + --local inp = Input:GetKeyStatus(GLFW_KEY_W) + local transform = Parent:GetTransform() + local camera = Parent:GetCamera() + local forward = camera:forward() + local right = camera:right() + local translation + + HandleMouse(camera, delta_time) + + if Input:GetKeyStatus(GLFW_KEY_W) == 1 then + translation = normalize(forward * vec3:new(1.0, 0.0, 1.0)) * velocity * delta_time + end + + if Input:GetKeyStatus(GLFW_KEY_S) == 1 then + translation = normalize(forward * vec3:new(1.0, 0.0, 1.0)) * -velocity * delta_time + end + + if Input:GetKeyStatus(GLFW_KEY_A) == 1 then + translation = normalize(right * vec3:new(1.0, 0.0, 1.0)) * -velocity * delta_time + end + + if Input:GetKeyStatus(GLFW_KEY_D) == 1 then + translation = normalize(right * vec3:new(1.0, 0.0, 1.0)) * velocity * delta_time + end + + transform:Translate(translation) +end diff --git a/application/assets/scripts/script.lua b/application/assets/scripts/script.lua new file mode 100644 index 0000000..59a35e0 --- /dev/null +++ b/application/assets/scripts/script.lua @@ -0,0 +1,28 @@ +io.write("script loaded successfully\n") + +local time_elapsed = 0 + +function Start(trans) + io.write("lua: Start\n") +end + +function Update() + time_elapsed = time_elapsed + Time:DeltaTime() + local x = math.sin(time_elapsed * 2) * 2 + local z = math.cos(time_elapsed * 2) * 2 + + local transform = Parent:GetTransform() + transform.position = vec3:new(x, 1.0, z - 7.0) + local light = Parent:GetPointLight() + + local r = 0.5 * (1 + math.sin(time_elapsed * 2.5) * 1.1) + local g = 0.5 * (1 + math.cos(time_elapsed * 1.5) * 1.2) + local b = 0.5 * (1 + math.sin(time_elapsed * 3.5) * 1.3) + r = 1.0 + g = 1.0 + b = 1.0 + light.color = vec3:new(r, g, b) +end + +-- Todo: faire bouger le cube +-- Get inputs to script diff --git a/application/assets/shaders/fragment.frag b/application/assets/shaders/fragment.frag new file mode 100644 index 0000000..bf9b7d1 --- /dev/null +++ b/application/assets/shaders/fragment.frag @@ -0,0 +1,12 @@ +#version 330 core + +layout(location = 0) out vec4 color; + +in vec3 v_Position; +in vec4 v_Color; + +void main() +{ + color = vec4(v_Position * 0.5 + 0.5, 1.0f); + color = v_Color; +} diff --git a/application/assets/shaders/light.frag b/application/assets/shaders/light.frag new file mode 100644 index 0000000..81ea7d7 --- /dev/null +++ b/application/assets/shaders/light.frag @@ -0,0 +1,8 @@ +#version 330 core +out vec4 FragColor; + +uniform vec3 objectColor; + +void main() { + FragColor = vec4(objectColor, 1.0); +} diff --git a/application/assets/shaders/light.vert b/application/assets/shaders/light.vert new file mode 100644 index 0000000..3ea8b2a --- /dev/null +++ b/application/assets/shaders/light.vert @@ -0,0 +1,11 @@ +#version 330 core + +layout (location = 0) in vec3 aPos; + +uniform mat4 model; +uniform mat4 view; +uniform mat4 projection; + +void main() { + gl_Position = projection * view * model * vec4(aPos, 1.0); +} diff --git a/application/assets/shaders/vertex.vert b/application/assets/shaders/vertex.vert new file mode 100644 index 0000000..e9bee51 --- /dev/null +++ b/application/assets/shaders/vertex.vert @@ -0,0 +1,16 @@ +#version 330 core + +layout(location = 0) in vec3 a_Position; +layout(location = 1) in vec4 a_Color; + +uniform mat4 u_ViewProjection; + +out vec3 v_Position; +out vec4 v_Color; + +void main() +{ + v_Position = a_Position; + v_Color = a_Color; + gl_Position = u_ViewProjection * vec4(a_Position, 1.0); +} diff --git a/application/assets/textures/awesomeface.png b/application/assets/textures/awesomeface.png new file mode 100644 index 0000000..9840caf Binary files /dev/null and b/application/assets/textures/awesomeface.png differ diff --git a/application/assets/textures/container.jpg b/application/assets/textures/container.jpg new file mode 100644 index 0000000..d07bee4 Binary files /dev/null and b/application/assets/textures/container.jpg differ diff --git a/application/assets/textures/container2.png b/application/assets/textures/container2.png new file mode 100644 index 0000000..596e8da Binary files /dev/null and b/application/assets/textures/container2.png differ diff --git a/application/assets/textures/container2_specular.png b/application/assets/textures/container2_specular.png new file mode 100644 index 0000000..681bf6e Binary files /dev/null and b/application/assets/textures/container2_specular.png differ diff --git a/application/assets/textures/container2_specular2.png b/application/assets/textures/container2_specular2.png new file mode 100644 index 0000000..35e9411 Binary files /dev/null and b/application/assets/textures/container2_specular2.png differ diff --git a/application/build/.ninja_deps b/application/build/.ninja_deps new file mode 100644 index 0000000..e5675ec Binary files /dev/null and b/application/build/.ninja_deps differ diff --git a/application/build/.ninja_log b/application/build/.ninja_log new file mode 100644 index 0000000..6584687 --- /dev/null +++ b/application/build/.ninja_log @@ -0,0 +1,3 @@ +# ninja log v7 +0 25 1768009863648297358 build.ninja 15c99e15691f412f +0 25 1768009863648297358 /home/erris/projects/open_engine/application/build/cmake_install.cmake 15c99e15691f412f diff --git a/application/build/CMakeCache.txt b/application/build/CMakeCache.txt new file mode 100644 index 0000000..c5b6684 --- /dev/null +++ b/application/build/CMakeCache.txt @@ -0,0 +1,408 @@ +# This is the CMakeCache file. +# For build in directory: /home/erris/projects/open_engine/application/build +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/usr/bin/llvm-addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/llvm-ar + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING=Debug + +//LLVM archiver +CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/llvm-ar + +//`clang-scan-deps` dependency scanner +CMAKE_CXX_COMPILER_CLANG_SCAN_DEPS:FILEPATH=/usr/bin/clang-scan-deps + +//Generate index for LLVM archive +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/llvm-ranlib + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING=-m64 -stdlib=libstdc++ + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//LLVM archiver +CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/llvm-ar + +//`clang-scan-deps` dependency scanner +CMAKE_C_COMPILER_CLANG_SCAN_DEPS:FILEPATH=/usr/bin/clang-scan-deps + +//Generate index for LLVM archive +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/llvm-ranlib + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING=-m64 + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=/usr/bin/llvm-dlltool + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING=-m64 + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of build database during the build. +CMAKE_EXPORT_BUILD_DATABASE:BOOL= + +//No help, variable specified on the command line. +CMAKE_EXPORT_COMPILE_COMMANDS:UNINITIALIZED=ON + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/erris/projects/open_engine/application/build/CMakeFiles/pkgRedirects + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld.lld + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/ninja + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/llvm-nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/llvm-objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/llvm-objdump + +//Value Computed by CMake +CMAKE_PROJECT_COMPAT_VERSION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=SandBox + +//Value Computed by CMake +CMAKE_PROJECT_SPDX_LICENSE:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=0.1.0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/llvm-ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/usr/bin/llvm-readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING=-m64 + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the archiver during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the archiver during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the archiver during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the archiver during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the archiver during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/llvm-strip + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=/home/erris/projects/open_engine/application/build/conan_toolchain.cmake + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +SandBox_BINARY_DIR:STATIC=/home/erris/projects/open_engine/application/build + +//Value Computed by CMake +SandBox_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +SandBox_SOURCE_DIR:STATIC=/home/erris/projects/open_engine/application + +//The directory containing a CMake configuration file for fmt. +fmt_DIR:PATH=/home/erris/projects/open_engine/application/build + +//The directory containing a CMake configuration file for imgui. +imgui_DIR:PATH=/home/erris/projects/open_engine/application/build + +//The directory containing a CMake configuration file for spdlog. +spdlog_DIR:PATH=/home/erris/projects/open_engine/application/build + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/erris/projects/open_engine/application/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=4 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=2 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_CLANG_SCAN_DEPS +CMAKE_CXX_COMPILER_CLANG_SCAN_DEPS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_CLANG_SCAN_DEPS +CMAKE_C_COMPILER_CLANG_SCAN_DEPS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=/usr/bin/ccmake +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_BUILD_DATABASE +CMAKE_EXPORT_BUILD_DATABASE-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/erris/projects/open_engine/application +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//Name of CMakeLists files to read +CMAKE_LIST_FILE_NAME:INTERNAL=CMakeLists.txt +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 + diff --git a/application/build/CMakeFiles/4.2.1/CMakeCCompiler.cmake b/application/build/CMakeFiles/4.2.1/CMakeCCompiler.cmake new file mode 100644 index 0000000..f58f813 --- /dev/null +++ b/application/build/CMakeFiles/4.2.1/CMakeCCompiler.cmake @@ -0,0 +1,84 @@ +set(CMAKE_C_COMPILER "/usr/bin/clang") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "Clang") +set(CMAKE_C_COMPILER_VERSION "21.1.6") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_STANDARD_LATEST "23") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "c_std_23") + +set(CMAKE_C_PLATFORM_ID "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/llvm-ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/llvm-ar") +set(CMAKE_RANLIB "/usr/bin/llvm-ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/llvm-ranlib") +set(CMAKE_LINKER "/usr/bin/ld.lld") +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.45.1) +set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT GNU) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCC ) +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/clang/21/include;/usr/local/include;/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib64/gcc/x86_64-pc-linux-gnu/15.2.1;/usr/lib64;/lib64;/lib;/usr/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/application/build/CMakeFiles/4.2.1/CMakeCXXCompiler.cmake b/application/build/CMakeFiles/4.2.1/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..71b7f02 --- /dev/null +++ b/application/build/CMakeFiles/4.2.1/CMakeCXXCompiler.cmake @@ -0,0 +1,108 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/clang++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "Clang") +set(CMAKE_CXX_COMPILER_VERSION "21.1.6") +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/llvm-ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/llvm-ar") +set(CMAKE_RANLIB "/usr/bin/llvm-ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/llvm-ranlib") +set(CMAKE_LINKER "/usr/bin/ld.lld") +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.45.1) +set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT GNU) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCXX ) +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/clang/21/include;/usr/local/include;/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib64/gcc/x86_64-pc-linux-gnu/15.2.1;/usr/lib64;/lib64;/lib;/usr/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "/usr/lib/clang/21") + +set(CMAKE_CXX_COMPILER_IMPORT_STD "") +### Imported target for C++23 standard library +set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Experimental `import std` support not enabled when detecting toolchain; it must be set before `CXX` is enabled (usually a `project()` call)") + + +### Imported target for C++26 standard library +set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Experimental `import std` support not enabled when detecting toolchain; it must be set before `CXX` is enabled (usually a `project()` call)") + + + diff --git a/application/build/CMakeFiles/4.2.1/CMakeDetermineCompilerABI_C.bin b/application/build/CMakeFiles/4.2.1/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000..259ee82 Binary files /dev/null and b/application/build/CMakeFiles/4.2.1/CMakeDetermineCompilerABI_C.bin differ diff --git a/application/build/CMakeFiles/4.2.1/CMakeDetermineCompilerABI_CXX.bin b/application/build/CMakeFiles/4.2.1/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000..632a888 Binary files /dev/null and b/application/build/CMakeFiles/4.2.1/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/application/build/CMakeFiles/4.2.1/CMakeSystem.cmake b/application/build/CMakeFiles/4.2.1/CMakeSystem.cmake new file mode 100644 index 0000000..9994a95 --- /dev/null +++ b/application/build/CMakeFiles/4.2.1/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-6.18.3-arch1-1") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "6.18.3-arch1-1") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + +include("/home/erris/projects/open_engine/application/build/conan_toolchain.cmake") + +set(CMAKE_SYSTEM "Linux-6.18.3-arch1-1") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "6.18.3-arch1-1") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/application/build/CMakeFiles/4.2.1/CompilerIdC/CMakeCCompilerId.c b/application/build/CMakeFiles/4.2.1/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..ab3c359 --- /dev/null +++ b/application/build/CMakeFiles/4.2.1/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,934 @@ +#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 diff --git a/application/build/CMakeFiles/4.2.1/CompilerIdC/a.out b/application/build/CMakeFiles/4.2.1/CompilerIdC/a.out new file mode 100755 index 0000000..ee1aa04 Binary files /dev/null and b/application/build/CMakeFiles/4.2.1/CompilerIdC/a.out differ diff --git a/application/build/CMakeFiles/4.2.1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/application/build/CMakeFiles/4.2.1/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..b35f567 --- /dev/null +++ b/application/build/CMakeFiles/4.2.1/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,949 @@ +/* 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; +} diff --git a/application/build/CMakeFiles/4.2.1/CompilerIdCXX/a.out b/application/build/CMakeFiles/4.2.1/CompilerIdCXX/a.out new file mode 100755 index 0000000..bfa0344 Binary files /dev/null and b/application/build/CMakeFiles/4.2.1/CompilerIdCXX/a.out differ diff --git a/application/build/CMakeFiles/CMakeConfigureLog.yaml b/application/build/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..d49d313 --- /dev/null +++ b/application/build/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,3715 @@ + +--- +events: + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineSystem.cmake:12 (find_program)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_UNAME" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "uname" + candidate_directories: + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + - "/bin/" + searched_directories: + - "/home/erris/.local/scripts/uname" + - "/home/erris/.local/share/zinit/polaris/bin/uname" + - "/usr/local/sbin/uname" + - "/usr/local/bin/uname" + found: "/usr/bin/uname" + search_context: + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineSystem.cmake:212 (message)" + - "CMakeLists.txt:7 (project)" + message: | + The system is: Linux - 6.18.3-arch1-1 - x86_64 + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeNinjaFindMake.cmake:5 (find_program)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_MAKE_PROGRAM" + description: "Program used to build from build.ninja files." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ninja-build" + - "ninja" + - "samu" + candidate_directories: + - "/home/erris/projects/open_engine/application/build/bin/" + - "/home/erris/projects/open_engine/application/build/sbin/" + - "/home/erris/projects/open_engine/application/build/" + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + searched_directories: + - "/home/erris/projects/open_engine/application/build/bin/ninja-build" + - "/home/erris/projects/open_engine/application/build/bin/ninja" + - "/home/erris/projects/open_engine/application/build/bin/samu" + - "/home/erris/projects/open_engine/application/build/sbin/ninja-build" + - "/home/erris/projects/open_engine/application/build/sbin/ninja" + - "/home/erris/projects/open_engine/application/build/sbin/samu" + - "/home/erris/projects/open_engine/application/build/ninja-build" + - "/home/erris/projects/open_engine/application/build/ninja" + - "/home/erris/projects/open_engine/application/build/samu" + - "/home/erris/.local/scripts/ninja-build" + - "/home/erris/.local/scripts/ninja" + - "/home/erris/.local/scripts/samu" + - "/home/erris/.local/share/zinit/polaris/bin/ninja-build" + - "/home/erris/.local/share/zinit/polaris/bin/ninja" + - "/home/erris/.local/share/zinit/polaris/bin/samu" + - "/usr/local/sbin/ninja-build" + - "/usr/local/sbin/ninja" + - "/usr/local/sbin/samu" + - "/usr/local/bin/ninja-build" + - "/usr/local/bin/ninja" + - "/usr/local/bin/samu" + - "/usr/bin/ninja-build" + found: "/usr/bin/ninja" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake:115 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:67 (_cmake_find_compiler_path)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_C_COMPILER_WITH_PATH" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "clang" + candidate_directories: + - "/home/erris/projects/open_engine/application/build/bin/" + - "/home/erris/projects/open_engine/application/build/sbin/" + - "/home/erris/projects/open_engine/application/build/" + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + searched_directories: + - "/home/erris/projects/open_engine/application/build/bin/clang" + - "/home/erris/projects/open_engine/application/build/sbin/clang" + - "/home/erris/projects/open_engine/application/build/clang" + - "/home/erris/.local/scripts/clang" + - "/home/erris/.local/share/zinit/polaris/bin/clang" + - "/usr/local/sbin/clang" + - "/usr/local/bin/clang" + found: "/usr/bin/clang" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:462 (find_file)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:500 (CMAKE_DETERMINE_COMPILER_ID_WRITE)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:8 (CMAKE_DETERMINE_COMPILER_ID_BUILD)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:7 (project)" + mode: "file" + variable: "src_in" + description: "Path to a file." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "CMakeCCompilerId.c.in" + candidate_directories: + - "/usr/share/cmake/Modules/" + - "/home/erris/projects/open_engine/application/build/" + found: "/usr/share/cmake/Modules/CMakeCCompilerId.c.in" + search_context: + CMAKE_INCLUDE_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/include" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/include" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/include" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:122 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:7 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: /usr/bin/clang + Build flags: -m64 + Id flags: + + The output was: + 0 + + + Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + + The C compiler identification is Clang, found in: + /home/erris/projects/open_engine/application/build/CMakeFiles/4.2.1/CompilerIdC/a.out + + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_AR" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "llvm-ar" + - "ar" + candidate_directories: + - "/usr/bin/" + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + found: "/usr/bin/llvm-ar" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_RANLIB" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "llvm-ranlib" + - "ranlib" + candidate_directories: + - "/usr/bin/" + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + found: "/usr/bin/llvm-ranlib" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_STRIP" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "llvm-strip" + - "strip" + candidate_directories: + - "/usr/bin/" + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + found: "/usr/bin/llvm-strip" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_LINKER" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "ld.lld" + - "ld" + candidate_directories: + - "/usr/bin/" + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + found: "/usr/bin/ld.lld" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_NM" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "llvm-nm" + - "nm" + candidate_directories: + - "/usr/bin/" + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + found: "/usr/bin/llvm-nm" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_OBJDUMP" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "llvm-objdump" + - "objdump" + candidate_directories: + - "/usr/bin/" + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + found: "/usr/bin/llvm-objdump" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_OBJCOPY" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "llvm-objcopy" + - "objcopy" + candidate_directories: + - "/usr/bin/" + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + found: "/usr/bin/llvm-objcopy" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_READELF" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "llvm-readelf" + - "readelf" + candidate_directories: + - "/usr/bin/" + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + found: "/usr/bin/llvm-readelf" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_DLLTOOL" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "llvm-dlltool" + - "dlltool" + candidate_directories: + - "/usr/bin/" + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + found: "/usr/bin/llvm-dlltool" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_ADDR2LINE" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "llvm-addr2line" + - "addr2line" + candidate_directories: + - "/usr/bin/" + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + found: "/usr/bin/llvm-addr2line" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake:243 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:200 (include)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_TAPI" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "tapi" + candidate_directories: + - "/usr/bin/" + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + searched_directories: + - "/usr/bin/tapi" + - "/home/erris/.local/scripts/tapi" + - "/home/erris/.local/share/zinit/polaris/bin/tapi" + - "/usr/local/sbin/tapi" + - "/usr/local/bin/tapi" + - "/usr/lib/jvm/default/bin/tapi" + - "/usr/bin/site_perl/tapi" + - "/usr/bin/vendor_perl/tapi" + - "/usr/bin/core_perl/tapi" + - "/home/erris/.local/bin/tapi" + found: false + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/Compiler/Clang-FindBinUtils.cmake:26 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:201 (include)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_C_COMPILER_AR" + description: "LLVM archiver" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "llvm-ar-21.1" + - "llvm-ar-21" + - "llvm-ar21" + - "llvm-ar" + candidate_directories: + - "/usr/bin/" + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + searched_directories: + - "/usr/bin/llvm-ar-21.1" + - "/home/erris/.local/scripts/llvm-ar-21.1" + - "/home/erris/.local/share/zinit/polaris/bin/llvm-ar-21.1" + - "/usr/local/sbin/llvm-ar-21.1" + - "/usr/local/bin/llvm-ar-21.1" + - "/usr/lib/jvm/default/bin/llvm-ar-21.1" + - "/usr/bin/site_perl/llvm-ar-21.1" + - "/usr/bin/vendor_perl/llvm-ar-21.1" + - "/usr/bin/core_perl/llvm-ar-21.1" + - "/home/erris/.local/bin/llvm-ar-21.1" + - "/usr/bin/llvm-ar-21" + - "/home/erris/.local/scripts/llvm-ar-21" + - "/home/erris/.local/share/zinit/polaris/bin/llvm-ar-21" + - "/usr/local/sbin/llvm-ar-21" + - "/usr/local/bin/llvm-ar-21" + - "/usr/lib/jvm/default/bin/llvm-ar-21" + - "/usr/bin/site_perl/llvm-ar-21" + - "/usr/bin/vendor_perl/llvm-ar-21" + - "/usr/bin/core_perl/llvm-ar-21" + - "/home/erris/.local/bin/llvm-ar-21" + - "/usr/bin/llvm-ar21" + - "/home/erris/.local/scripts/llvm-ar21" + - "/home/erris/.local/share/zinit/polaris/bin/llvm-ar21" + - "/usr/local/sbin/llvm-ar21" + - "/usr/local/bin/llvm-ar21" + - "/usr/lib/jvm/default/bin/llvm-ar21" + - "/usr/bin/site_perl/llvm-ar21" + - "/usr/bin/vendor_perl/llvm-ar21" + - "/usr/bin/core_perl/llvm-ar21" + - "/home/erris/.local/bin/llvm-ar21" + found: "/usr/bin/llvm-ar" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/Compiler/Clang-FindBinUtils.cmake:38 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:201 (include)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_C_COMPILER_RANLIB" + description: "Generate index for LLVM archive" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "llvm-ranlib-21.1" + - "llvm-ranlib-21" + - "llvm-ranlib21" + - "llvm-ranlib" + candidate_directories: + - "/usr/bin/" + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + searched_directories: + - "/usr/bin/llvm-ranlib-21.1" + - "/home/erris/.local/scripts/llvm-ranlib-21.1" + - "/home/erris/.local/share/zinit/polaris/bin/llvm-ranlib-21.1" + - "/usr/local/sbin/llvm-ranlib-21.1" + - "/usr/local/bin/llvm-ranlib-21.1" + - "/usr/lib/jvm/default/bin/llvm-ranlib-21.1" + - "/usr/bin/site_perl/llvm-ranlib-21.1" + - "/usr/bin/vendor_perl/llvm-ranlib-21.1" + - "/usr/bin/core_perl/llvm-ranlib-21.1" + - "/home/erris/.local/bin/llvm-ranlib-21.1" + - "/usr/bin/llvm-ranlib-21" + - "/home/erris/.local/scripts/llvm-ranlib-21" + - "/home/erris/.local/share/zinit/polaris/bin/llvm-ranlib-21" + - "/usr/local/sbin/llvm-ranlib-21" + - "/usr/local/bin/llvm-ranlib-21" + - "/usr/lib/jvm/default/bin/llvm-ranlib-21" + - "/usr/bin/site_perl/llvm-ranlib-21" + - "/usr/bin/vendor_perl/llvm-ranlib-21" + - "/usr/bin/core_perl/llvm-ranlib-21" + - "/home/erris/.local/bin/llvm-ranlib-21" + - "/usr/bin/llvm-ranlib21" + - "/home/erris/.local/scripts/llvm-ranlib21" + - "/home/erris/.local/share/zinit/polaris/bin/llvm-ranlib21" + - "/usr/local/sbin/llvm-ranlib21" + - "/usr/local/bin/llvm-ranlib21" + - "/usr/lib/jvm/default/bin/llvm-ranlib21" + - "/usr/bin/site_perl/llvm-ranlib21" + - "/usr/bin/vendor_perl/llvm-ranlib21" + - "/usr/bin/core_perl/llvm-ranlib21" + - "/home/erris/.local/bin/llvm-ranlib21" + found: "/usr/bin/llvm-ranlib" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/Compiler/Clang-FindBinUtils.cmake:50 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake:201 (include)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_C_COMPILER_CLANG_SCAN_DEPS" + description: "`clang-scan-deps` dependency scanner" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "clang-scan-deps-21.1" + - "clang-scan-deps-21" + - "clang-scan-deps21" + - "clang-scan-deps" + candidate_directories: + - "/usr/bin/" + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + searched_directories: + - "/usr/bin/clang-scan-deps-21.1" + - "/home/erris/.local/scripts/clang-scan-deps-21.1" + - "/home/erris/.local/share/zinit/polaris/bin/clang-scan-deps-21.1" + - "/usr/local/sbin/clang-scan-deps-21.1" + - "/usr/local/bin/clang-scan-deps-21.1" + - "/usr/lib/jvm/default/bin/clang-scan-deps-21.1" + - "/usr/bin/site_perl/clang-scan-deps-21.1" + - "/usr/bin/vendor_perl/clang-scan-deps-21.1" + - "/usr/bin/core_perl/clang-scan-deps-21.1" + - "/home/erris/.local/bin/clang-scan-deps-21.1" + - "/usr/bin/clang-scan-deps-21" + - "/home/erris/.local/scripts/clang-scan-deps-21" + - "/home/erris/.local/share/zinit/polaris/bin/clang-scan-deps-21" + - "/usr/local/sbin/clang-scan-deps-21" + - "/usr/local/bin/clang-scan-deps-21" + - "/usr/lib/jvm/default/bin/clang-scan-deps-21" + - "/usr/bin/site_perl/clang-scan-deps-21" + - "/usr/bin/vendor_perl/clang-scan-deps-21" + - "/usr/bin/core_perl/clang-scan-deps-21" + - "/home/erris/.local/bin/clang-scan-deps-21" + - "/usr/bin/clang-scan-deps21" + - "/home/erris/.local/scripts/clang-scan-deps21" + - "/home/erris/.local/share/zinit/polaris/bin/clang-scan-deps21" + - "/usr/local/sbin/clang-scan-deps21" + - "/usr/local/bin/clang-scan-deps21" + - "/usr/lib/jvm/default/bin/clang-scan-deps21" + - "/usr/bin/site_perl/clang-scan-deps21" + - "/usr/bin/vendor_perl/clang-scan-deps21" + - "/usr/bin/core_perl/clang-scan-deps21" + - "/home/erris/.local/bin/clang-scan-deps21" + found: "/usr/bin/clang-scan-deps" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake:115 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:71 (_cmake_find_compiler_path)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_CXX_COMPILER_WITH_PATH" + description: "Path to a program." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "clang++" + candidate_directories: + - "/home/erris/projects/open_engine/application/build/bin/" + - "/home/erris/projects/open_engine/application/build/sbin/" + - "/home/erris/projects/open_engine/application/build/" + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + searched_directories: + - "/home/erris/projects/open_engine/application/build/bin/clang++" + - "/home/erris/projects/open_engine/application/build/sbin/clang++" + - "/home/erris/projects/open_engine/application/build/clang++" + - "/home/erris/.local/scripts/clang++" + - "/home/erris/.local/share/zinit/polaris/bin/clang++" + - "/usr/local/sbin/clang++" + - "/usr/local/bin/clang++" + found: "/usr/bin/clang++" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:462 (find_file)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:500 (CMAKE_DETERMINE_COMPILER_ID_WRITE)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:8 (CMAKE_DETERMINE_COMPILER_ID_BUILD)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:125 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:7 (project)" + mode: "file" + variable: "src_in" + description: "Path to a file." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "CMakeCXXCompilerId.cpp.in" + candidate_directories: + - "/usr/share/cmake/Modules/" + - "/home/erris/projects/open_engine/application/build/" + found: "/usr/share/cmake/Modules/CMakeCXXCompilerId.cpp.in" + search_context: + CMAKE_INCLUDE_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/include" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/include" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/include" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:125 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:7 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: /usr/bin/clang++ + Build flags: -m64;-stdlib=libstdc++ + Id flags: + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + + The CXX compiler identification is Clang, found in: + /home/erris/projects/open_engine/application/build/CMakeFiles/4.2.1/CompilerIdCXX/a.out + + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/Compiler/Clang-FindBinUtils.cmake:26 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:207 (include)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_CXX_COMPILER_AR" + description: "LLVM archiver" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "llvm-ar-21.1" + - "llvm-ar-21" + - "llvm-ar21" + - "llvm-ar" + candidate_directories: + - "/usr/bin/" + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + searched_directories: + - "/usr/bin/llvm-ar-21.1" + - "/home/erris/.local/scripts/llvm-ar-21.1" + - "/home/erris/.local/share/zinit/polaris/bin/llvm-ar-21.1" + - "/usr/local/sbin/llvm-ar-21.1" + - "/usr/local/bin/llvm-ar-21.1" + - "/usr/lib/jvm/default/bin/llvm-ar-21.1" + - "/usr/bin/site_perl/llvm-ar-21.1" + - "/usr/bin/vendor_perl/llvm-ar-21.1" + - "/usr/bin/core_perl/llvm-ar-21.1" + - "/home/erris/.local/bin/llvm-ar-21.1" + - "/usr/bin/llvm-ar-21" + - "/home/erris/.local/scripts/llvm-ar-21" + - "/home/erris/.local/share/zinit/polaris/bin/llvm-ar-21" + - "/usr/local/sbin/llvm-ar-21" + - "/usr/local/bin/llvm-ar-21" + - "/usr/lib/jvm/default/bin/llvm-ar-21" + - "/usr/bin/site_perl/llvm-ar-21" + - "/usr/bin/vendor_perl/llvm-ar-21" + - "/usr/bin/core_perl/llvm-ar-21" + - "/home/erris/.local/bin/llvm-ar-21" + - "/usr/bin/llvm-ar21" + - "/home/erris/.local/scripts/llvm-ar21" + - "/home/erris/.local/share/zinit/polaris/bin/llvm-ar21" + - "/usr/local/sbin/llvm-ar21" + - "/usr/local/bin/llvm-ar21" + - "/usr/lib/jvm/default/bin/llvm-ar21" + - "/usr/bin/site_perl/llvm-ar21" + - "/usr/bin/vendor_perl/llvm-ar21" + - "/usr/bin/core_perl/llvm-ar21" + - "/home/erris/.local/bin/llvm-ar21" + found: "/usr/bin/llvm-ar" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/Compiler/Clang-FindBinUtils.cmake:38 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:207 (include)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_CXX_COMPILER_RANLIB" + description: "Generate index for LLVM archive" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "llvm-ranlib-21.1" + - "llvm-ranlib-21" + - "llvm-ranlib21" + - "llvm-ranlib" + candidate_directories: + - "/usr/bin/" + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + searched_directories: + - "/usr/bin/llvm-ranlib-21.1" + - "/home/erris/.local/scripts/llvm-ranlib-21.1" + - "/home/erris/.local/share/zinit/polaris/bin/llvm-ranlib-21.1" + - "/usr/local/sbin/llvm-ranlib-21.1" + - "/usr/local/bin/llvm-ranlib-21.1" + - "/usr/lib/jvm/default/bin/llvm-ranlib-21.1" + - "/usr/bin/site_perl/llvm-ranlib-21.1" + - "/usr/bin/vendor_perl/llvm-ranlib-21.1" + - "/usr/bin/core_perl/llvm-ranlib-21.1" + - "/home/erris/.local/bin/llvm-ranlib-21.1" + - "/usr/bin/llvm-ranlib-21" + - "/home/erris/.local/scripts/llvm-ranlib-21" + - "/home/erris/.local/share/zinit/polaris/bin/llvm-ranlib-21" + - "/usr/local/sbin/llvm-ranlib-21" + - "/usr/local/bin/llvm-ranlib-21" + - "/usr/lib/jvm/default/bin/llvm-ranlib-21" + - "/usr/bin/site_perl/llvm-ranlib-21" + - "/usr/bin/vendor_perl/llvm-ranlib-21" + - "/usr/bin/core_perl/llvm-ranlib-21" + - "/home/erris/.local/bin/llvm-ranlib-21" + - "/usr/bin/llvm-ranlib21" + - "/home/erris/.local/scripts/llvm-ranlib21" + - "/home/erris/.local/share/zinit/polaris/bin/llvm-ranlib21" + - "/usr/local/sbin/llvm-ranlib21" + - "/usr/local/bin/llvm-ranlib21" + - "/usr/lib/jvm/default/bin/llvm-ranlib21" + - "/usr/bin/site_perl/llvm-ranlib21" + - "/usr/bin/vendor_perl/llvm-ranlib21" + - "/usr/bin/core_perl/llvm-ranlib21" + - "/home/erris/.local/bin/llvm-ranlib21" + found: "/usr/bin/llvm-ranlib" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "find-v1" + backtrace: + - "/usr/share/cmake/Modules/Compiler/Clang-FindBinUtils.cmake:50 (find_program)" + - "/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:207 (include)" + - "CMakeLists.txt:7 (project)" + mode: "program" + variable: "CMAKE_CXX_COMPILER_CLANG_SCAN_DEPS" + description: "`clang-scan-deps` dependency scanner" + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: false + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: false + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "clang-scan-deps-21.1" + - "clang-scan-deps-21" + - "clang-scan-deps21" + - "clang-scan-deps" + candidate_directories: + - "/usr/bin/" + - "/home/erris/.local/scripts/" + - "/home/erris/.local/share/zinit/polaris/bin/" + - "/usr/local/sbin/" + - "/usr/local/bin/" + - "/usr/lib/jvm/default/bin/" + - "/usr/bin/site_perl/" + - "/usr/bin/vendor_perl/" + - "/usr/bin/core_perl/" + - "/home/erris/.local/bin/" + searched_directories: + - "/usr/bin/clang-scan-deps-21.1" + - "/home/erris/.local/scripts/clang-scan-deps-21.1" + - "/home/erris/.local/share/zinit/polaris/bin/clang-scan-deps-21.1" + - "/usr/local/sbin/clang-scan-deps-21.1" + - "/usr/local/bin/clang-scan-deps-21.1" + - "/usr/lib/jvm/default/bin/clang-scan-deps-21.1" + - "/usr/bin/site_perl/clang-scan-deps-21.1" + - "/usr/bin/vendor_perl/clang-scan-deps-21.1" + - "/usr/bin/core_perl/clang-scan-deps-21.1" + - "/home/erris/.local/bin/clang-scan-deps-21.1" + - "/usr/bin/clang-scan-deps-21" + - "/home/erris/.local/scripts/clang-scan-deps-21" + - "/home/erris/.local/share/zinit/polaris/bin/clang-scan-deps-21" + - "/usr/local/sbin/clang-scan-deps-21" + - "/usr/local/bin/clang-scan-deps-21" + - "/usr/lib/jvm/default/bin/clang-scan-deps-21" + - "/usr/bin/site_perl/clang-scan-deps-21" + - "/usr/bin/vendor_perl/clang-scan-deps-21" + - "/usr/bin/core_perl/clang-scan-deps-21" + - "/home/erris/.local/bin/clang-scan-deps-21" + - "/usr/bin/clang-scan-deps21" + - "/home/erris/.local/scripts/clang-scan-deps21" + - "/home/erris/.local/share/zinit/polaris/bin/clang-scan-deps21" + - "/usr/local/sbin/clang-scan-deps21" + - "/usr/local/bin/clang-scan-deps21" + - "/usr/lib/jvm/default/bin/clang-scan-deps21" + - "/usr/bin/site_perl/clang-scan-deps21" + - "/usr/bin/vendor_perl/clang-scan-deps21" + - "/usr/bin/core_perl/clang-scan-deps21" + - "/home/erris/.local/bin/clang-scan-deps21" + found: "/usr/bin/clang-scan-deps" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + - + kind: "try_compile-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:7 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "/home/erris/projects/open_engine/application/build/CMakeFiles/CMakeScratch/TryCompile-gXyt5o" + binary: "/home/erris/projects/open_engine/application/build/CMakeFiles/CMakeScratch/TryCompile-gXyt5o" + cmakeVariables: + CMAKE_CXX_COMPILER_CLANG_SCAN_DEPS: "/usr/bin/clang-scan-deps" + CMAKE_C_FLAGS: "-m64" + CMAKE_C_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "-m64" + CMAKE_MODULE_PATH: "/home/erris/projects/open_engine/application/build" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/home/erris/projects/open_engine/application/build/CMakeFiles/CMakeScratch/TryCompile-gXyt5o' + + Run Build Command(s): /usr/bin/ninja -v cmTC_24a75 + [1/2] /usr/bin/clang -D_GLIBCXX_USE_CXX11_ABI=0 -m64 -v -MD -MT CMakeFiles/cmTC_24a75.dir/CMakeCCompilerABI.c.o -MF CMakeFiles/cmTC_24a75.dir/CMakeCCompilerABI.c.o.d -o CMakeFiles/cmTC_24a75.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake/Modules/CMakeCCompilerABI.c + clang version 21.1.6 + Target: x86_64-pc-linux-gnu + Thread model: posix + InstalledDir: /usr/bin + Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-pc-linux-gnu/15.2.1 + Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1 + Selected GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1 + Candidate multilib: .;@m64 + Candidate multilib: 32;@m32 + Selected multilib: .;@m64 + (in-process) + "/usr/bin/clang-21" -cc1 -triple x86_64-pc-linux-gnu -emit-obj -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -debugger-tuning=gdb -fdebug-compilation-dir=/home/erris/projects/open_engine/application/build/CMakeFiles/CMakeScratch/TryCompile-gXyt5o -v -fcoverage-compilation-dir=/home/erris/projects/open_engine/application/build/CMakeFiles/CMakeScratch/TryCompile-gXyt5o -resource-dir /usr/lib/clang/21 -dependency-file CMakeFiles/cmTC_24a75.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_24a75.dir/CMakeCCompilerABI.c.o -sys-header-deps -D _GLIBCXX_USE_CXX11_ABI=0 -internal-isystem /usr/lib/clang/21/include -internal-isystem /usr/local/include -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/include -internal-externc-isystem /include -internal-externc-isystem /usr/include -ferror-limit 19 -stack-protector 2 -fgnuc-version=4.2.1 -fskip-odr-check-in-gmf -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_24a75.dir/CMakeCCompilerABI.c.o -x c /usr/share/cmake/Modules/CMakeCCompilerABI.c + clang -cc1 version 21.1.6 based upon LLVM 21.1.6 default target x86_64-pc-linux-gnu + ignoring nonexistent directory "/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/include" + ignoring nonexistent directory "/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/lib/clang/21/include + /usr/local/include + /usr/include + End of search list. + [2/2] : && /usr/bin/clang -m64 -m64 -v -Wl,-v CMakeFiles/cmTC_24a75.dir/CMakeCCompilerABI.c.o -o cmTC_24a75 && : + clang version 21.1.6 + Target: x86_64-pc-linux-gnu + Thread model: posix + InstalledDir: /usr/bin + Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-pc-linux-gnu/15.2.1 + Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1 + Selected GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1 + Candidate multilib: .;@m64 + Candidate multilib: 32;@m32 + Selected multilib: .;@m64 + "/usr/bin/ld" --hash-style=gnu --build-id --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_24a75 /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/Scrt1.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/crti.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o -L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1 -L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64 -L/lib/../lib64 -L/usr/lib64 -L/lib -L/usr/lib -v CMakeFiles/cmTC_24a75.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/crtn.o + GNU ld (GNU Binutils) 2.45.1 + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:217 (message)" + - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:7 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/clang/21/include] + add: [/usr/local/include] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/clang/21/include] ==> [/usr/lib/clang/21/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/clang/21/include;/usr/local/include;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:253 (message)" + - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:7 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|"|[0-9]+>[ -]*Build:[ 0-9]+ ms[ ]*)?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: '/home/erris/projects/open_engine/application/build/CMakeFiles/CMakeScratch/TryCompile-gXyt5o'] + ignore line: [] + ignore line: [Run Build Command(s): /usr/bin/ninja -v cmTC_24a75] + ignore line: [[1/2] /usr/bin/clang -D_GLIBCXX_USE_CXX11_ABI=0 -m64 -v -MD -MT CMakeFiles/cmTC_24a75.dir/CMakeCCompilerABI.c.o -MF CMakeFiles/cmTC_24a75.dir/CMakeCCompilerABI.c.o.d -o CMakeFiles/cmTC_24a75.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake/Modules/CMakeCCompilerABI.c] + ignore line: [clang version 21.1.6] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /usr/bin] + ignore line: [Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-pc-linux-gnu/15.2.1] + ignore line: [Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1] + ignore line: [Selected GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1] + ignore line: [Candidate multilib: .] + ignore line: [@m64] + ignore line: [Candidate multilib: 32] + ignore line: [@m32] + ignore line: [Selected multilib: .] + ignore line: [@m64] + ignore line: [ (in-process)] + ignore line: [ "/usr/bin/clang-21" -cc1 -triple x86_64-pc-linux-gnu -emit-obj -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -debugger-tuning=gdb -fdebug-compilation-dir=/home/erris/projects/open_engine/application/build/CMakeFiles/CMakeScratch/TryCompile-gXyt5o -v -fcoverage-compilation-dir=/home/erris/projects/open_engine/application/build/CMakeFiles/CMakeScratch/TryCompile-gXyt5o -resource-dir /usr/lib/clang/21 -dependency-file CMakeFiles/cmTC_24a75.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_24a75.dir/CMakeCCompilerABI.c.o -sys-header-deps -D _GLIBCXX_USE_CXX11_ABI=0 -internal-isystem /usr/lib/clang/21/include -internal-isystem /usr/local/include -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/include -internal-externc-isystem /include -internal-externc-isystem /usr/include -ferror-limit 19 -stack-protector 2 -fgnuc-version=4.2.1 -fskip-odr-check-in-gmf -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_24a75.dir/CMakeCCompilerABI.c.o -x c /usr/share/cmake/Modules/CMakeCCompilerABI.c] + ignore line: [clang -cc1 version 21.1.6 based upon LLVM 21.1.6 default target x86_64-pc-linux-gnu] + ignore line: [ignoring nonexistent directory "/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/include"] + ignore line: [ignoring nonexistent directory "/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/clang/21/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [[2/2] : && /usr/bin/clang -m64 -m64 -v -Wl -v CMakeFiles/cmTC_24a75.dir/CMakeCCompilerABI.c.o -o cmTC_24a75 && :] + ignore line: [clang version 21.1.6] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /usr/bin] + ignore line: [Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-pc-linux-gnu/15.2.1] + ignore line: [Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1] + ignore line: [Selected GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1] + ignore line: [Candidate multilib: .] + ignore line: [@m64] + ignore line: [Candidate multilib: 32] + ignore line: [@m32] + ignore line: [Selected multilib: .] + ignore line: [@m64] + link line: [ "/usr/bin/ld" --hash-style=gnu --build-id --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_24a75 /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/Scrt1.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/crti.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o -L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1 -L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64 -L/lib/../lib64 -L/usr/lib64 -L/lib -L/usr/lib -v CMakeFiles/cmTC_24a75.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/crtn.o] + arg [/usr/bin/ld] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [-pie] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-o] ==> ignore + arg [cmTC_24a75] ==> ignore + arg [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/Scrt1.o] ==> obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/Scrt1.o] + arg [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/crti.o] ==> obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/crti.o] + arg [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o] ==> obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o] + arg [-L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1] ==> dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1] + arg [-L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64] ==> dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64] + arg [-L/lib/../lib64] ==> dir [/lib/../lib64] + arg [-L/usr/lib64] ==> dir [/usr/lib64] + arg [-L/lib] ==> dir [/lib] + arg [-L/usr/lib] ==> dir [/usr/lib] + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_24a75.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o] ==> obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o] + arg [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/crtn.o] ==> obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/crtn.o] + linker tool for 'C': /usr/bin/ld + collapse obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/Scrt1.o] ==> [/usr/lib64/Scrt1.o] + collapse obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/crti.o] ==> [/usr/lib64/crti.o] + collapse obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o] ==> [/usr/lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o] + collapse obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o] ==> [/usr/lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o] + collapse obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/crtn.o] ==> [/usr/lib64/crtn.o] + collapse library dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1] ==> [/usr/lib64/gcc/x86_64-pc-linux-gnu/15.2.1] + collapse library dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64] ==> [/usr/lib64] + collapse library dir [/lib/../lib64] ==> [/lib64] + collapse library dir [/usr/lib64] ==> [/usr/lib64] + collapse library dir [/lib] ==> [/lib] + collapse library dir [/usr/lib] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit objs: [/usr/lib64/Scrt1.o;/usr/lib64/crti.o;/usr/lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o;/usr/lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o;/usr/lib64/crtn.o] + implicit dirs: [/usr/lib64/gcc/x86_64-pc-linux-gnu/15.2.1;/usr/lib64;/lib64;/lib;/usr/lib] + implicit fwks: [] + + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake:38 (message)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:299 (cmake_determine_linker_id)" + - "/usr/share/cmake/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:7 (project)" + message: | + Running the C compiler's linker: "/usr/bin/ld" "-v" + GNU ld (GNU Binutils) 2.45.1 + - + kind: "try_compile-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" + - "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:7 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "/home/erris/projects/open_engine/application/build/CMakeFiles/CMakeScratch/TryCompile-8ZNyNz" + binary: "/home/erris/projects/open_engine/application/build/CMakeFiles/CMakeScratch/TryCompile-8ZNyNz" + cmakeVariables: + CMAKE_CXX_COMPILER_CLANG_SCAN_DEPS: "/usr/bin/clang-scan-deps" + CMAKE_CXX_FLAGS: "-m64 -stdlib=libstdc++" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "-m64" + CMAKE_MODULE_PATH: "/home/erris/projects/open_engine/application/build" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: '/home/erris/projects/open_engine/application/build/CMakeFiles/CMakeScratch/TryCompile-8ZNyNz' + + Run Build Command(s): /usr/bin/ninja -v cmTC_cc77c + [1/2] /usr/bin/clang++ -D_GLIBCXX_USE_CXX11_ABI=0 -m64 -stdlib=libstdc++ -std=c++20 -v -MD -MT CMakeFiles/cmTC_cc77c.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_cc77c.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_cc77c.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp + clang version 21.1.6 + Target: x86_64-pc-linux-gnu + Thread model: posix + InstalledDir: /usr/bin + Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-pc-linux-gnu/15.2.1 + Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1 + Selected GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1 + Candidate multilib: .;@m64 + Candidate multilib: 32;@m32 + Selected multilib: .;@m64 + (in-process) + "/usr/bin/clang++" -cc1 -triple x86_64-pc-linux-gnu -emit-obj -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -debugger-tuning=gdb -fdebug-compilation-dir=/home/erris/projects/open_engine/application/build/CMakeFiles/CMakeScratch/TryCompile-8ZNyNz -v -fcoverage-compilation-dir=/home/erris/projects/open_engine/application/build/CMakeFiles/CMakeScratch/TryCompile-8ZNyNz -resource-dir /usr/lib/clang/21 -dependency-file CMakeFiles/cmTC_cc77c.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_cc77c.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D _GLIBCXX_USE_CXX11_ABI=0 -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../include/c++/15.2.1 -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../include/c++/15.2.1/x86_64-pc-linux-gnu -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../include/c++/15.2.1/backward -internal-isystem /usr/lib/clang/21/include -internal-isystem /usr/local/include -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/include -internal-externc-isystem /include -internal-externc-isystem /usr/include -std=c++20 -fdeprecated-macro -ferror-limit 19 -stack-protector 2 -fgnuc-version=4.2.1 -fno-implicit-modules -fskip-odr-check-in-gmf -fcxx-exceptions -fexceptions -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_cc77c.dir/CMakeCXXCompilerABI.cpp.o -x c++ /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp + clang -cc1 version 21.1.6 based upon LLVM 21.1.6 default target x86_64-pc-linux-gnu + ignoring nonexistent directory "/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/include" + ignoring nonexistent directory "/include" + #include "..." search starts here: + #include <...> search starts here: + /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../include/c++/15.2.1 + /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../include/c++/15.2.1/x86_64-pc-linux-gnu + /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../include/c++/15.2.1/backward + /usr/lib/clang/21/include + /usr/local/include + /usr/include + End of search list. + [2/2] : && /usr/bin/clang++ -m64 -stdlib=libstdc++ -m64 -v -Wl,-v CMakeFiles/cmTC_cc77c.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_cc77c && : + clang version 21.1.6 + Target: x86_64-pc-linux-gnu + Thread model: posix + InstalledDir: /usr/bin + Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-pc-linux-gnu/15.2.1 + Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1 + Selected GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1 + Candidate multilib: .;@m64 + Candidate multilib: 32;@m32 + Selected multilib: .;@m64 + "/usr/bin/ld" --hash-style=gnu --build-id --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_cc77c /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/Scrt1.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/crti.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o -L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1 -L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64 -L/lib/../lib64 -L/usr/lib64 -L/lib -L/usr/lib -v CMakeFiles/cmTC_cc77c.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/crtn.o + GNU ld (GNU Binutils) 2.45.1 + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:217 (message)" + - "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:7 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../include/c++/15.2.1] + add: [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../include/c++/15.2.1/x86_64-pc-linux-gnu] + add: [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../include/c++/15.2.1/backward] + add: [/usr/lib/clang/21/include] + add: [/usr/local/include] + add: [/usr/include] + end of search list found + collapse include dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../include/c++/15.2.1] ==> [/usr/include/c++/15.2.1] + collapse include dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../include/c++/15.2.1/x86_64-pc-linux-gnu] ==> [/usr/include/c++/15.2.1/x86_64-pc-linux-gnu] + collapse include dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../include/c++/15.2.1/backward] ==> [/usr/include/c++/15.2.1/backward] + collapse include dir [/usr/lib/clang/21/include] ==> [/usr/lib/clang/21/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/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/clang/21/include;/usr/local/include;/usr/include] + + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:253 (message)" + - "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:7 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|"|[0-9]+>[ -]*Build:[ 0-9]+ ms[ ]*)?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] + ignore line: [Change Dir: '/home/erris/projects/open_engine/application/build/CMakeFiles/CMakeScratch/TryCompile-8ZNyNz'] + ignore line: [] + ignore line: [Run Build Command(s): /usr/bin/ninja -v cmTC_cc77c] + ignore line: [[1/2] /usr/bin/clang++ -D_GLIBCXX_USE_CXX11_ABI=0 -m64 -stdlib=libstdc++ -std=c++20 -v -MD -MT CMakeFiles/cmTC_cc77c.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_cc77c.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_cc77c.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [clang version 21.1.6] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /usr/bin] + ignore line: [Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-pc-linux-gnu/15.2.1] + ignore line: [Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1] + ignore line: [Selected GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1] + ignore line: [Candidate multilib: .] + ignore line: [@m64] + ignore line: [Candidate multilib: 32] + ignore line: [@m32] + ignore line: [Selected multilib: .] + ignore line: [@m64] + ignore line: [ (in-process)] + ignore line: [ "/usr/bin/clang++" -cc1 -triple x86_64-pc-linux-gnu -emit-obj -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -debugger-tuning=gdb -fdebug-compilation-dir=/home/erris/projects/open_engine/application/build/CMakeFiles/CMakeScratch/TryCompile-8ZNyNz -v -fcoverage-compilation-dir=/home/erris/projects/open_engine/application/build/CMakeFiles/CMakeScratch/TryCompile-8ZNyNz -resource-dir /usr/lib/clang/21 -dependency-file CMakeFiles/cmTC_cc77c.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_cc77c.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D _GLIBCXX_USE_CXX11_ABI=0 -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../include/c++/15.2.1 -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../include/c++/15.2.1/x86_64-pc-linux-gnu -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../include/c++/15.2.1/backward -internal-isystem /usr/lib/clang/21/include -internal-isystem /usr/local/include -internal-isystem /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/include -internal-externc-isystem /include -internal-externc-isystem /usr/include -std=c++20 -fdeprecated-macro -ferror-limit 19 -stack-protector 2 -fgnuc-version=4.2.1 -fno-implicit-modules -fskip-odr-check-in-gmf -fcxx-exceptions -fexceptions -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_cc77c.dir/CMakeCXXCompilerABI.cpp.o -x c++ /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [clang -cc1 version 21.1.6 based upon LLVM 21.1.6 default target x86_64-pc-linux-gnu] + ignore line: [ignoring nonexistent directory "/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../x86_64-pc-linux-gnu/include"] + ignore line: [ignoring nonexistent directory "/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../include/c++/15.2.1] + ignore line: [ /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../include/c++/15.2.1/x86_64-pc-linux-gnu] + ignore line: [ /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../include/c++/15.2.1/backward] + ignore line: [ /usr/lib/clang/21/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [[2/2] : && /usr/bin/clang++ -m64 -stdlib=libstdc++ -m64 -v -Wl -v CMakeFiles/cmTC_cc77c.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_cc77c && :] + ignore line: [clang version 21.1.6] + ignore line: [Target: x86_64-pc-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /usr/bin] + ignore line: [Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-pc-linux-gnu/15.2.1] + ignore line: [Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1] + ignore line: [Selected GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1] + ignore line: [Candidate multilib: .] + ignore line: [@m64] + ignore line: [Candidate multilib: 32] + ignore line: [@m32] + ignore line: [Selected multilib: .] + ignore line: [@m64] + link line: [ "/usr/bin/ld" --hash-style=gnu --build-id --eh-frame-hdr -m elf_x86_64 -pie -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_cc77c /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/Scrt1.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/crti.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o -L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1 -L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64 -L/lib/../lib64 -L/usr/lib64 -L/lib -L/usr/lib -v CMakeFiles/cmTC_cc77c.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/crtn.o] + arg [/usr/bin/ld] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [-pie] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-o] ==> ignore + arg [cmTC_cc77c] ==> ignore + arg [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/Scrt1.o] ==> obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/Scrt1.o] + arg [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/crti.o] ==> obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/crti.o] + arg [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o] ==> obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o] + arg [-L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1] ==> dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1] + arg [-L/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64] ==> dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64] + arg [-L/lib/../lib64] ==> dir [/lib/../lib64] + arg [-L/usr/lib64] ==> dir [/usr/lib64] + arg [-L/lib] ==> dir [/lib] + arg [-L/usr/lib] ==> dir [/usr/lib] + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_cc77c.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o] ==> obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o] + arg [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/crtn.o] ==> obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/crtn.o] + linker tool for 'CXX': /usr/bin/ld + collapse obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/Scrt1.o] ==> [/usr/lib64/Scrt1.o] + collapse obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/crti.o] ==> [/usr/lib64/crti.o] + collapse obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o] ==> [/usr/lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o] + collapse obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o] ==> [/usr/lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o] + collapse obj [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64/crtn.o] ==> [/usr/lib64/crtn.o] + collapse library dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1] ==> [/usr/lib64/gcc/x86_64-pc-linux-gnu/15.2.1] + collapse library dir [/usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/15.2.1/../../../../lib64] ==> [/usr/lib64] + collapse library dir [/lib/../lib64] ==> [/lib64] + collapse library dir [/usr/lib64] ==> [/usr/lib64] + collapse library dir [/lib] ==> [/lib] + collapse library dir [/usr/lib] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit objs: [/usr/lib64/Scrt1.o;/usr/lib64/crti.o;/usr/lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtbeginS.o;/usr/lib64/gcc/x86_64-pc-linux-gnu/15.2.1/crtendS.o;/usr/lib64/crtn.o] + implicit dirs: [/usr/lib64/gcc/x86_64-pc-linux-gnu/15.2.1;/usr/lib64;/lib64;/lib;/usr/lib] + implicit fwks: [] + + + - + kind: "message-v1" + backtrace: + - "/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake:38 (message)" + - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:299 (cmake_determine_linker_id)" + - "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:7 (project)" + message: | + Running the CXX compiler's linker: "/usr/bin/ld" "-v" + GNU ld (GNU Binutils) 2.45.1 + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/spdlog-Target-none.cmake:23 (conan_package_library_targets)" + - "build/spdlogTargets.cmake:24 (include)" + - "build/spdlog-config.cmake:16 (include)" + - "CMakeLists.txt:11 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "spdlog" + candidate_directories: + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/" + found: "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/libspdlog.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/spdlog-Target-none.cmake:60 (conan_package_library_targets)" + - "build/spdlogTargets.cmake:24 (include)" + - "build/spdlog-config.cmake:16 (include)" + - "CMakeLists.txt:11 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "spdlog" + candidate_directories: + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/" + found: "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/libspdlog.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/fmt-Target-none.cmake:23 (conan_package_library_targets)" + - "build/fmtTargets.cmake:24 (include)" + - "build/fmt-config.cmake:16 (include)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "build/spdlog-config.cmake:24 (find_dependency)" + - "CMakeLists.txt:11 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "fmt" + candidate_directories: + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/" + found: "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/libfmt.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/fmt-Target-none.cmake:60 (conan_package_library_targets)" + - "build/fmtTargets.cmake:24 (include)" + - "build/fmt-config.cmake:16 (include)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "build/spdlog-config.cmake:24 (find_dependency)" + - "CMakeLists.txt:11 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "fmt" + candidate_directories: + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/" + found: "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/libfmt.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find_package-v1" + backtrace: + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "build/spdlog-config.cmake:24 (find_dependency)" + - "CMakeLists.txt:11 (find_package)" + name: "fmt" + configs: + - + filename: "fmtConfig.cmake" + kind: "cmake" + - + filename: "fmt-config.cmake" + kind: "cmake" + version_request: + exact: false + settings: + required: "required_explicit" + quiet: false + global: false + policy_scope: true + bypass_provider: false + names: + - "fmt" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "/home/erris/projects/open_engine/application/build/CMakeFiles/pkgRedirects/fmtConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/erris/projects/open_engine/application/build/CMakeFiles/pkgRedirects/fmt-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/erris/projects/open_engine/application/build/fmtConfig.cmake" + mode: "config" + reason: "no_exist" + found: + path: "/home/erris/projects/open_engine/application/build/fmt-config.cmake" + mode: "config" + version: "12.0.0" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + - + kind: "find_package-v1" + backtrace: + - "CMakeLists.txt:11 (find_package)" + name: "spdlog" + configs: + - + filename: "spdlogConfig.cmake" + kind: "cmake" + - + filename: "spdlog-config.cmake" + kind: "cmake" + version_request: + exact: false + settings: + required: "required_explicit" + quiet: false + global: false + policy_scope: true + bypass_provider: false + names: + - "spdlog" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "/home/erris/projects/open_engine/application/build/CMakeFiles/pkgRedirects/spdlogConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/erris/projects/open_engine/application/build/CMakeFiles/pkgRedirects/spdlog-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/erris/projects/open_engine/application/build/spdlogConfig.cmake" + mode: "config" + reason: "no_exist" + found: + path: "/home/erris/projects/open_engine/application/build/spdlog-config.cmake" + mode: "config" + version: "1.16.0" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_MODULE_PATH: + - "/home/erris/projects/open_engine/application/build" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/imgui-Target-none.cmake:23 (conan_package_library_targets)" + - "build/imguiTargets.cmake:24 (include)" + - "build/imgui-config.cmake:16 (include)" + - "CMakeLists.txt:12 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "imgui" + candidate_directories: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib/" + found: "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib/libimgui.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find_package-v1" + backtrace: + - "CMakeLists.txt:12 (find_package)" + name: "imgui" + configs: + - + filename: "imguiConfig.cmake" + kind: "cmake" + - + filename: "imgui-config.cmake" + kind: "cmake" + version_request: + exact: false + settings: + required: "required_explicit" + quiet: false + global: false + policy_scope: true + bypass_provider: false + names: + - "imgui" + path_suffixes: + - "" + paths: + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + CMAKE_FIND_USE_PACKAGE_ROOT_PATH: true + CMAKE_FIND_USE_CMAKE_PACKAGE_REGISTRY: true + CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY: true + CMAKE_FIND_ROOT_PATH_MODE: "BOTH" + candidates: + - + path: "/home/erris/projects/open_engine/application/build/CMakeFiles/pkgRedirects/imguiConfig.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/erris/projects/open_engine/application/build/CMakeFiles/pkgRedirects/imgui-config.cmake" + mode: "config" + reason: "no_exist" + - + path: "/home/erris/projects/open_engine/application/build/imguiConfig.cmake" + mode: "config" + reason: "no_exist" + found: + path: "/home/erris/projects/open_engine/application/build/imgui-config.cmake" + mode: "config" + version: "1.92.5-docking" + search_context: + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_MODULE_PATH: + - "/home/erris/projects/open_engine/application/build" +... + +--- +events: + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/spdlog-Target-none.cmake:23 (conan_package_library_targets)" + - "build/spdlogTargets.cmake:24 (include)" + - "build/spdlog-config.cmake:16 (include)" + - "CMakeLists.txt:11 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "spdlog" + candidate_directories: + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/" + found: "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/libspdlog.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/spdlog-Target-none.cmake:60 (conan_package_library_targets)" + - "build/spdlogTargets.cmake:24 (include)" + - "build/spdlog-config.cmake:16 (include)" + - "CMakeLists.txt:11 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "spdlog" + candidate_directories: + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/" + found: "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/libspdlog.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/fmt-Target-none.cmake:23 (conan_package_library_targets)" + - "build/fmtTargets.cmake:24 (include)" + - "build/fmt-config.cmake:16 (include)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "build/spdlog-config.cmake:24 (find_dependency)" + - "CMakeLists.txt:11 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "fmt" + candidate_directories: + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/" + found: "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/libfmt.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/fmt-Target-none.cmake:60 (conan_package_library_targets)" + - "build/fmtTargets.cmake:24 (include)" + - "build/fmt-config.cmake:16 (include)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "build/spdlog-config.cmake:24 (find_dependency)" + - "CMakeLists.txt:11 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "fmt" + candidate_directories: + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/" + found: "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/libfmt.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/imgui-Target-none.cmake:23 (conan_package_library_targets)" + - "build/imguiTargets.cmake:24 (include)" + - "build/imgui-config.cmake:16 (include)" + - "CMakeLists.txt:12 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "imgui" + candidate_directories: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib/" + found: "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib/libimgui.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" +... + +--- +events: + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/spdlog-Target-none.cmake:23 (conan_package_library_targets)" + - "build/spdlogTargets.cmake:24 (include)" + - "build/spdlog-config.cmake:16 (include)" + - "CMakeLists.txt:11 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "spdlog" + candidate_directories: + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/" + found: "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/libspdlog.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/spdlog-Target-none.cmake:60 (conan_package_library_targets)" + - "build/spdlogTargets.cmake:24 (include)" + - "build/spdlog-config.cmake:16 (include)" + - "CMakeLists.txt:11 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "spdlog" + candidate_directories: + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/" + found: "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/libspdlog.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/fmt-Target-none.cmake:23 (conan_package_library_targets)" + - "build/fmtTargets.cmake:24 (include)" + - "build/fmt-config.cmake:16 (include)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "build/spdlog-config.cmake:24 (find_dependency)" + - "CMakeLists.txt:11 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "fmt" + candidate_directories: + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/" + found: "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/libfmt.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/fmt-Target-none.cmake:60 (conan_package_library_targets)" + - "build/fmtTargets.cmake:24 (include)" + - "build/fmt-config.cmake:16 (include)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "build/spdlog-config.cmake:24 (find_dependency)" + - "CMakeLists.txt:11 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "fmt" + candidate_directories: + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/" + found: "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/libfmt.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/imgui-Target-none.cmake:23 (conan_package_library_targets)" + - "build/imguiTargets.cmake:24 (include)" + - "build/imgui-config.cmake:16 (include)" + - "CMakeLists.txt:12 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "imgui" + candidate_directories: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib/" + found: "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib/libimgui.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" +... + +--- +events: + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/spdlog-Target-none.cmake:23 (conan_package_library_targets)" + - "build/spdlogTargets.cmake:24 (include)" + - "build/spdlog-config.cmake:16 (include)" + - "CMakeLists.txt:11 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "spdlog" + candidate_directories: + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/" + found: "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/libspdlog.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/spdlog-Target-none.cmake:60 (conan_package_library_targets)" + - "build/spdlogTargets.cmake:24 (include)" + - "build/spdlog-config.cmake:16 (include)" + - "CMakeLists.txt:11 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "spdlog" + candidate_directories: + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/" + found: "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/libspdlog.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/fmt-Target-none.cmake:23 (conan_package_library_targets)" + - "build/fmtTargets.cmake:24 (include)" + - "build/fmt-config.cmake:16 (include)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "build/spdlog-config.cmake:24 (find_dependency)" + - "CMakeLists.txt:11 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "fmt" + candidate_directories: + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/" + found: "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/libfmt.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/fmt-Target-none.cmake:60 (conan_package_library_targets)" + - "build/fmtTargets.cmake:24 (include)" + - "build/fmt-config.cmake:16 (include)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "build/spdlog-config.cmake:24 (find_dependency)" + - "CMakeLists.txt:11 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "fmt" + candidate_directories: + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/" + found: "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/libfmt.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/imgui-Target-none.cmake:23 (conan_package_library_targets)" + - "build/imguiTargets.cmake:24 (include)" + - "build/imgui-config.cmake:16 (include)" + - "CMakeLists.txt:12 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "imgui" + candidate_directories: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib/" + found: "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib/libimgui.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" +... + +--- +events: + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/imgui-Target-none.cmake:23 (conan_package_library_targets)" + - "build/imguiTargets.cmake:24 (include)" + - "build/imgui-config.cmake:16 (include)" + - "CMakeLists.txt:11 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "imgui" + candidate_directories: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib/" + found: "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib/libimgui.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/share/nvim/mason/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/spdlog-Target-none.cmake:23 (conan_package_library_targets)" + - "build/spdlogTargets.cmake:24 (include)" + - "build/spdlog-config.cmake:16 (include)" + - "CMakeLists.txt:12 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "spdlog" + candidate_directories: + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/" + found: "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/libspdlog.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/share/nvim/mason/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/spdlog-Target-none.cmake:60 (conan_package_library_targets)" + - "build/spdlogTargets.cmake:24 (include)" + - "build/spdlog-config.cmake:16 (include)" + - "CMakeLists.txt:12 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "spdlog" + candidate_directories: + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/" + found: "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/libspdlog.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/share/nvim/mason/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/fmt-Target-none.cmake:23 (conan_package_library_targets)" + - "build/fmtTargets.cmake:24 (include)" + - "build/fmt-config.cmake:16 (include)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "build/spdlog-config.cmake:24 (find_dependency)" + - "CMakeLists.txt:12 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "fmt" + candidate_directories: + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/" + found: "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/libfmt.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/share/nvim/mason/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/fmt-Target-none.cmake:60 (conan_package_library_targets)" + - "build/fmtTargets.cmake:24 (include)" + - "build/fmt-config.cmake:16 (include)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "build/spdlog-config.cmake:24 (find_dependency)" + - "CMakeLists.txt:12 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "fmt" + candidate_directories: + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/" + found: "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/libfmt.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/share/nvim/mason/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" +... + +--- +events: + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/imgui-Target-none.cmake:23 (conan_package_library_targets)" + - "build/imguiTargets.cmake:24 (include)" + - "build/imgui-config.cmake:16 (include)" + - "CMakeLists.txt:11 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "imgui" + candidate_directories: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib/" + found: "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib/libimgui.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/spdlog-Target-none.cmake:23 (conan_package_library_targets)" + - "build/spdlogTargets.cmake:24 (include)" + - "build/spdlog-config.cmake:16 (include)" + - "CMakeLists.txt:12 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "spdlog" + candidate_directories: + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/" + found: "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/libspdlog.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/spdlog-Target-none.cmake:60 (conan_package_library_targets)" + - "build/spdlogTargets.cmake:24 (include)" + - "build/spdlog-config.cmake:16 (include)" + - "CMakeLists.txt:12 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "spdlog" + candidate_directories: + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/" + found: "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib/libspdlog.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/fmt-Target-none.cmake:23 (conan_package_library_targets)" + - "build/fmtTargets.cmake:24 (include)" + - "build/fmt-config.cmake:16 (include)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "build/spdlog-config.cmake:24 (find_dependency)" + - "CMakeLists.txt:12 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "fmt" + candidate_directories: + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/" + found: "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/libfmt.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" + - + kind: "find-v1" + backtrace: + - "build/cmakedeps_macros.cmake:32 (find_library)" + - "build/fmt-Target-none.cmake:60 (conan_package_library_targets)" + - "build/fmtTargets.cmake:24 (include)" + - "build/fmt-config.cmake:16 (include)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:93 (find_package)" + - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:125 (__find_dependency_common)" + - "build/spdlog-config.cmake:24 (find_dependency)" + - "CMakeLists.txt:12 (find_package)" + mode: "library" + variable: "CONAN_FOUND_LIBRARY" + description: "Path to a library." + settings: + SearchFramework: "NEVER" + SearchAppBundle: "NEVER" + CMAKE_FIND_USE_CMAKE_PATH: true + CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH: true + CMAKE_FIND_USE_CMAKE_SYSTEM_PATH: true + CMAKE_FIND_USE_INSTALL_PREFIX: true + names: + - "fmt" + candidate_directories: + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/" + found: "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib/libfmt.a" + search_context: + CMAKE_LIBRARY_PATH: + - "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" + - "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" + - "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" + CMAKE_PREFIX_PATH: + - "/home/erris/projects/open_engine/application/build" + ENV{PATH}: + - "/home/erris/.local/scripts" + - "/home/erris/.local/share/zinit/polaris/bin" + - "/usr/local/sbin" + - "/usr/local/bin" + - "/usr/bin" + - "/usr/lib/jvm/default/bin" + - "/usr/bin/site_perl" + - "/usr/bin/vendor_perl" + - "/usr/bin/core_perl" + - "/home/erris/.local/bin" + - "/home/erris/.local/bin" + CMAKE_INSTALL_PREFIX: "/usr/local" + CMAKE_SYSTEM_PREFIX_PATH: + - "/usr/local" + - "/usr" + - "/" + - "/usr" + - "/usr/local" + - "/usr/X11R6" + - "/usr/pkg" + - "/opt" + CMAKE_SYSTEM_LIBRARY_PATH: + - "/usr/lib/X11" +... diff --git a/application/build/CMakeFiles/InstallScripts.json b/application/build/CMakeFiles/InstallScripts.json new file mode 100644 index 0000000..4741bd5 --- /dev/null +++ b/application/build/CMakeFiles/InstallScripts.json @@ -0,0 +1,7 @@ +{ + "InstallScripts" : + [ + "/home/erris/projects/open_engine/application/build/cmake_install.cmake" + ], + "Parallel" : false +} diff --git a/application/build/CMakeFiles/TargetDirectories.txt b/application/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..4249dfe --- /dev/null +++ b/application/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +/home/erris/projects/open_engine/application/build/CMakeFiles/sand_box.dir +/home/erris/projects/open_engine/application/build/CMakeFiles/edit_cache.dir +/home/erris/projects/open_engine/application/build/CMakeFiles/rebuild_cache.dir diff --git a/application/build/CMakeFiles/cmake.check_cache b/application/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/application/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/application/build/CMakeFiles/rules.ninja b/application/build/CMakeFiles/rules.ninja new file mode 100644 index 0000000..8fc4cdb --- /dev/null +++ b/application/build/CMakeFiles/rules.ninja @@ -0,0 +1,96 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 4.2 + +# 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: SandBox +# Configurations: Debug +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for generating CXX dependencies. + +rule CXX_SCAN__sand_box_Debug + depfile = $DEP_FILE + command = "/usr/bin/clang-scan-deps" -format=p1689 -- /usr/bin/clang++ $DEFINES $INCLUDES $FLAGS -x c++ $in -c -o $OBJ_FILE -resource-dir "/usr/lib/clang/21" -MT $DYNDEP_INTERMEDIATE_FILE -MD -MF $DEP_FILE > $DYNDEP_INTERMEDIATE_FILE.tmp && mv $DYNDEP_INTERMEDIATE_FILE.tmp $DYNDEP_INTERMEDIATE_FILE + description = Scanning $in for CXX dependencies + + +############################################# +# Rule to generate ninja dyndep files for CXX. + +rule CXX_DYNDEP__sand_box_Debug + command = /usr/bin/cmake -E cmake_ninja_dyndep --tdi=CMakeFiles/sand_box.dir/CXXDependInfo.json --lang=CXX --modmapfmt=clang --dd=$out @$out.rsp + description = Generating CXX dyndep file $out + rspfile = $out.rsp + rspfile_content = $in + restat = 1 + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__sand_box_scanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}/usr/bin/clang++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE @$DYNDEP_MODULE_MAP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__sand_box_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}/usr/bin/clang++ $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__sand_box_Debug + depfile = $DEP_FILE + deps = gcc + command = $PRE_LINK && /usr/bin/clang++ $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/erris/projects/open_engine/application -B/home/erris/projects/open_engine/application/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: + diff --git a/application/build/CMakeFiles/sand_box.dir/CXXDependInfo.json b/application/build/CMakeFiles/sand_box.dir/CXXDependInfo.json new file mode 100644 index 0000000..87be107 --- /dev/null +++ b/application/build/CMakeFiles/sand_box.dir/CXXDependInfo.json @@ -0,0 +1,30 @@ +{ + "bmi-installation" : null, + "compiler-frontend-variant" : "GNU", + "compiler-id" : "Clang", + "compiler-simulate-id" : "", + "config" : "Debug", + "cxx-modules" : {}, + "database-info" : null, + "dir-cur-bld" : "/home/erris/projects/open_engine/application/build", + "dir-cur-src" : "/home/erris/projects/open_engine/application", + "dir-top-bld" : "/home/erris/projects/open_engine/application/build", + "dir-top-src" : "/home/erris/projects/open_engine/application", + "exports" : [], + "forward-modules-from-target-dirs" : [], + "include-dirs" : + [ + "/home/erris/projects/open_engine/application/include" + ], + "language" : "CXX", + "linked-target-dirs" : [], + "module-dir" : "/home/erris/projects/open_engine/application/build/CMakeFiles/sand_box.dir", + "sources" : + { + "CMakeFiles/sand_box.dir/src/sandbox.cpp.o" : + { + "language" : "CXX", + "source" : "/home/erris/projects/open_engine/application/src/sandbox.cpp" + } + } +} \ No newline at end of file diff --git a/application/build/CMakeFiles/sand_box.dir/src/sandbox.cpp.o.ddi.tmp b/application/build/CMakeFiles/sand_box.dir/src/sandbox.cpp.o.ddi.tmp new file mode 100644 index 0000000..39b2fef --- /dev/null +++ b/application/build/CMakeFiles/sand_box.dir/src/sandbox.cpp.o.ddi.tmp @@ -0,0 +1,5 @@ +{ + "revision": 0, + "rules": [], + "version": 1 +} diff --git a/application/build/CMakePresets.json b/application/build/CMakePresets.json new file mode 100644 index 0000000..c390af0 --- /dev/null +++ b/application/build/CMakePresets.json @@ -0,0 +1,37 @@ +{ + "version": 3, + "vendor": { + "conan": {} + }, + "cmakeMinimumRequired": { + "major": 3, + "minor": 15, + "patch": 0 + }, + "configurePresets": [ + { + "name": "conan-default", + "displayName": "'conan-default' config", + "description": "'conan-default' configure using 'Unix Makefiles' generator", + "generator": "Unix Makefiles", + "cacheVariables": { + "CMAKE_POLICY_DEFAULT_CMP0091": "NEW" + }, + "toolchainFile": "conan_toolchain.cmake", + "binaryDir": "/home/erris/projects/open_engine/application/build" + } + ], + "buildPresets": [ + { + "name": "conan-default", + "configurePreset": "conan-default", + "jobs": 16 + } + ], + "testPresets": [ + { + "name": "conan-default", + "configurePreset": "conan-default" + } + ] +} \ No newline at end of file diff --git a/application/build/build.ninja b/application/build/build.ninja new file mode 100644 index 0000000..7e78a68 --- /dev/null +++ b/application/build/build.ninja @@ -0,0 +1,166 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 4.2 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: SandBox +# 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/erris/projects/open_engine/application/build/ +# ============================================================================= +# Object build statements for EXECUTABLE target sand_box + + +############################################# +# Order-only phony target for sand_box + +build cmake_object_order_depends_target_sand_box: phony || . + +build CMakeFiles/sand_box.dir/src/sandbox.cpp.o.ddi: CXX_SCAN__sand_box_Debug /home/erris/projects/open_engine/application/src/sandbox.cpp || cmake_object_order_depends_target_sand_box + DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 + DEP_FILE = CMakeFiles/sand_box.dir/src/sandbox.cpp.o.ddi.d + DYNDEP_INTERMEDIATE_FILE = CMakeFiles/sand_box.dir/src/sandbox.cpp.o.ddi + FLAGS = -m64 -stdlib=libstdc++ -g -std=c++20 + INCLUDES = -I/home/erris/projects/open_engine/application/include + OBJ_FILE = CMakeFiles/sand_box.dir/src/sandbox.cpp.o + PREPROCESSED_OUTPUT_FILE = CMakeFiles/sand_box.dir/src/sandbox.cpp.o.ddi.i + +build CMakeFiles/sand_box.dir/src/sandbox.cpp.o: CXX_COMPILER__sand_box_scanned_Debug /home/erris/projects/open_engine/application/src/sandbox.cpp | CMakeFiles/sand_box.dir/src/sandbox.cpp.o.modmap || cmake_object_order_depends_target_sand_box CMakeFiles/sand_box.dir/CXX.dd + CONFIG = Debug + DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 + DEP_FILE = CMakeFiles/sand_box.dir/src/sandbox.cpp.o.d + DYNDEP_MODULE_MAP_FILE = CMakeFiles/sand_box.dir/src/sandbox.cpp.o.modmap + FLAGS = -m64 -stdlib=libstdc++ -g -std=c++20 + INCLUDES = -I/home/erris/projects/open_engine/application/include + OBJECT_DIR = CMakeFiles/sand_box.dir + OBJECT_FILE_DIR = CMakeFiles/sand_box.dir/src + TARGET_SUPPORT_DIR = CMakeFiles/sand_box.dir + dyndep = CMakeFiles/sand_box.dir/CXX.dd + +build CMakeFiles/sand_box.dir/CXX.dd | CMakeFiles/sand_box.dir/CXXModules.json CMakeFiles/sand_box.dir/src/sandbox.cpp.o.modmap: CXX_DYNDEP__sand_box_Debug CMakeFiles/sand_box.dir/src/sandbox.cpp.o.ddi | /home/erris/projects/open_engine/application/build/CMakeFiles/sand_box.dir/CXXDependInfo.json + + +# ============================================================================= +# Link build statements for EXECUTABLE target sand_box + + +############################################# +# Link the executable sand_box + +build sand_box: CXX_EXECUTABLE_LINKER__sand_box_Debug CMakeFiles/sand_box.dir/src/sandbox.cpp.o + CONFIG = Debug + DEP_FILE = CMakeFiles/sand_box.dir/link.d + FLAGS = -m64 -stdlib=libstdc++ -g + LINK_FLAGS = -m64 -Xlinker --dependency-file=CMakeFiles/sand_box.dir/link.d + LINK_LIBRARIES = -Wl,-rpath,/home/erris/projects/open_engine/application/lib -lopen_engine + LINK_PATH = -L/home/erris/projects/open_engine/application/lib + OBJECT_DIR = CMakeFiles/sand_box.dir + POST_BUILD = : + PRE_LINK = : + TARGET_FILE = sand_box + TARGET_PDB = sand_box.dbg + TARGET_SUPPORT_DIR = CMakeFiles/sand_box.dir + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/erris/projects/open_engine/application/build && /usr/bin/ccmake -S/home/erris/projects/open_engine/application -B/home/erris/projects/open_engine/application/build + DESC = Running CMake cache editor... + pool = console + 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/erris/projects/open_engine/application/build && /usr/bin/cmake --regenerate-during-build -S/home/erris/projects/open_engine/application -B/home/erris/projects/open_engine/application/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/erris/projects/open_engine/application/build + +build all: phony sand_box + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja /home/erris/projects/open_engine/application/build/cmake_install.cmake: RERUN_CMAKE | /home/erris/projects/open_engine/application/CMakeLists.txt /usr/share/cmake/Modules/CMakeCInformation.cmake /usr/share/cmake/Modules/CMakeCXXInformation.cmake /usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake /usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake /usr/share/cmake/Modules/CMakeGenericSystem.cmake /usr/share/cmake/Modules/CMakeInitializeConfigs.cmake /usr/share/cmake/Modules/CMakeLanguageInformation.cmake /usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake /usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake /usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake /usr/share/cmake/Modules/Compiler/Clang-C.cmake /usr/share/cmake/Modules/Compiler/Clang-CXX.cmake /usr/share/cmake/Modules/Compiler/Clang.cmake /usr/share/cmake/Modules/Compiler/GNU.cmake /usr/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake /usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake /usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake /usr/share/cmake/Modules/Linker/GNU-C.cmake /usr/share/cmake/Modules/Linker/GNU-CXX.cmake /usr/share/cmake/Modules/Linker/GNU.cmake /usr/share/cmake/Modules/Platform/Linker/GNU.cmake /usr/share/cmake/Modules/Platform/Linker/Linux-GNU-C.cmake /usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake /usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake /usr/share/cmake/Modules/Platform/Linux-Clang-C.cmake /usr/share/cmake/Modules/Platform/Linux-Clang-CXX.cmake /usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake /usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake /usr/share/cmake/Modules/Platform/Linux-GNU.cmake /usr/share/cmake/Modules/Platform/Linux-Initialize.cmake /usr/share/cmake/Modules/Platform/Linux.cmake /usr/share/cmake/Modules/Platform/UnixPaths.cmake CMakeCache.txt CMakeFiles/4.2.1/CMakeCCompiler.cmake CMakeFiles/4.2.1/CMakeCXXCompiler.cmake CMakeFiles/4.2.1/CMakeSystem.cmake cmakedeps_macros.cmake conan_toolchain.cmake fmt-Target-none.cmake fmt-config-version.cmake fmt-config.cmake fmt-none-x86_64-data.cmake fmtTargets.cmake imgui-Target-none.cmake imgui-config-version.cmake imgui-config.cmake imgui-none-x86_64-data.cmake imguiTargets.cmake spdlog-Target-none.cmake spdlog-config-version.cmake spdlog-config.cmake spdlog-none-x86_64-data.cmake spdlogTargets.cmake + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build /home/erris/projects/open_engine/application/CMakeLists.txt /usr/share/cmake/Modules/CMakeCInformation.cmake /usr/share/cmake/Modules/CMakeCXXInformation.cmake /usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake /usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake /usr/share/cmake/Modules/CMakeGenericSystem.cmake /usr/share/cmake/Modules/CMakeInitializeConfigs.cmake /usr/share/cmake/Modules/CMakeLanguageInformation.cmake /usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake /usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake /usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake /usr/share/cmake/Modules/Compiler/Clang-C.cmake /usr/share/cmake/Modules/Compiler/Clang-CXX.cmake /usr/share/cmake/Modules/Compiler/Clang.cmake /usr/share/cmake/Modules/Compiler/GNU.cmake /usr/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake /usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake /usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake /usr/share/cmake/Modules/Linker/GNU-C.cmake /usr/share/cmake/Modules/Linker/GNU-CXX.cmake /usr/share/cmake/Modules/Linker/GNU.cmake /usr/share/cmake/Modules/Platform/Linker/GNU.cmake /usr/share/cmake/Modules/Platform/Linker/Linux-GNU-C.cmake /usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake /usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake /usr/share/cmake/Modules/Platform/Linux-Clang-C.cmake /usr/share/cmake/Modules/Platform/Linux-Clang-CXX.cmake /usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake /usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake /usr/share/cmake/Modules/Platform/Linux-GNU.cmake /usr/share/cmake/Modules/Platform/Linux-Initialize.cmake /usr/share/cmake/Modules/Platform/Linux.cmake /usr/share/cmake/Modules/Platform/UnixPaths.cmake CMakeCache.txt CMakeFiles/4.2.1/CMakeCCompiler.cmake CMakeFiles/4.2.1/CMakeCXXCompiler.cmake CMakeFiles/4.2.1/CMakeSystem.cmake cmakedeps_macros.cmake conan_toolchain.cmake fmt-Target-none.cmake fmt-config-version.cmake fmt-config.cmake fmt-none-x86_64-data.cmake fmtTargets.cmake imgui-Target-none.cmake imgui-config-version.cmake imgui-config.cmake imgui-none-x86_64-data.cmake imguiTargets.cmake spdlog-Target-none.cmake spdlog-config-version.cmake spdlog-config.cmake spdlog-none-x86_64-data.cmake spdlogTargets.cmake: phony + + +############################################# +# Clean all the built files. + +build clean: CLEAN + + +############################################# +# Print all primary targets available. + +build help: HELP + + +############################################# +# Make the all target the default. + +default all diff --git a/application/build/cmake_install.cmake b/application/build/cmake_install.cmake new file mode 100644 index 0000000..4a30306 --- /dev/null +++ b/application/build/cmake_install.cmake @@ -0,0 +1,66 @@ +# Install script for directory: /home/erris/projects/open_engine/application + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "0") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set path to fallback-tool for dependency-resolution. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "/usr/bin/llvm-objdump") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/home/erris/projects/open_engine/application/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() +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "/home/erris/projects/open_engine/application/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/application/build/cmakedeps_macros.cmake b/application/build/cmakedeps_macros.cmake new file mode 100644 index 0000000..8a9e117 --- /dev/null +++ b/application/build/cmakedeps_macros.cmake @@ -0,0 +1,101 @@ + +macro(conan_find_apple_frameworks FRAMEWORKS_FOUND FRAMEWORKS FRAMEWORKS_DIRS) + if(APPLE) + foreach(_FRAMEWORK ${FRAMEWORKS}) + # https://cmake.org/pipermail/cmake-developers/2017-August/030199.html + find_library(CONAN_FRAMEWORK_${_FRAMEWORK}_FOUND NAMES ${_FRAMEWORK} PATHS ${FRAMEWORKS_DIRS} CMAKE_FIND_ROOT_PATH_BOTH) + if(CONAN_FRAMEWORK_${_FRAMEWORK}_FOUND) + list(APPEND ${FRAMEWORKS_FOUND} ${CONAN_FRAMEWORK_${_FRAMEWORK}_FOUND}) + message(VERBOSE "Framework found! ${FRAMEWORKS_FOUND}") + else() + message(FATAL_ERROR "Framework library ${_FRAMEWORK} not found in paths: ${FRAMEWORKS_DIRS}") + endif() + endforeach() + endif() +endmacro() + +function(conan_package_library_targets libraries package_libdir package_bindir library_type + is_host_windows deps_target out_libraries_target config_suffix package_name no_soname_mode) + set(_out_libraries_target "") + + foreach(_LIBRARY_NAME ${libraries}) + if(CMAKE_SYSTEM_NAME MATCHES "Windows" AND NOT DEFINED MINGW AND CMAKE_VERSION VERSION_LESS "3.29") + # Backport logic from https://github.com/Kitware/CMake/commit/c6efbd78d86798573654d1a791f76de0e71bd93f + # which is only needed on versions older than 3.29 + # this allows finding static library files created by meson + # We are not affected by PATH-derived folders, because we call find_library with NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH + set(_original_find_library_suffixes "${CMAKE_FIND_LIBRARY_SUFFIXES}") + set(_original_find_library_prefixes "${CMAKE_FIND_LIBRARY_PREFIXES}") + set(CMAKE_FIND_LIBRARY_PREFIXES "" "lib") + set(CMAKE_FIND_LIBRARY_SUFFIXES ".dll.lib" ".lib" ".a") + endif() + find_library(CONAN_FOUND_LIBRARY NAMES ${_LIBRARY_NAME} PATHS ${package_libdir} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(DEFINED _original_find_library_suffixes) + set(CMAKE_FIND_LIBRARY_SUFFIXES "${_original_find_library_suffixes}") + set(CMAKE_FIND_LIBRARY_PREFIXES "${_original_find_library_prefixes}") + unset(_original_find_library_suffixes) + unset(_original_find_library_prefixes) + endif() + if(CONAN_FOUND_LIBRARY) + message(VERBOSE "Conan: Library ${_LIBRARY_NAME} found ${CONAN_FOUND_LIBRARY}") + + # Create a micro-target for each lib/a found + # Allow only some characters for the target name + string(REGEX REPLACE "[^A-Za-z0-9.+_-]" "_" _LIBRARY_NAME ${_LIBRARY_NAME}) + set(_LIB_NAME CONAN_LIB::${package_name}_${_LIBRARY_NAME}${config_suffix}) + + if(is_host_windows AND library_type STREQUAL "SHARED") + # Store and reset the variable, so it doesn't leak + set(_OLD_CMAKE_FIND_LIBRARY_SUFFIXES ${CMAKE_FIND_LIBRARY_SUFFIXES}) + set(CMAKE_FIND_LIBRARY_SUFFIXES .dll ${CMAKE_FIND_LIBRARY_SUFFIXES}) + find_library(CONAN_SHARED_FOUND_LIBRARY NAMES ${_LIBRARY_NAME} PATHS ${package_bindir} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + set(CMAKE_FIND_LIBRARY_SUFFIXES ${_OLD_CMAKE_FIND_LIBRARY_SUFFIXES}) + if(NOT CONAN_SHARED_FOUND_LIBRARY) + message(DEBUG "DLL library not found, creating UNKNOWN IMPORTED target, searched for: ${_LIBRARY_NAME}") + if(NOT TARGET ${_LIB_NAME}) + add_library(${_LIB_NAME} UNKNOWN IMPORTED) + endif() + set_target_properties(${_LIB_NAME} PROPERTIES IMPORTED_LOCATION${config_suffix} ${CONAN_FOUND_LIBRARY}) + else() + if(NOT TARGET ${_LIB_NAME}) + add_library(${_LIB_NAME} SHARED IMPORTED) + endif() + set_target_properties(${_LIB_NAME} PROPERTIES IMPORTED_LOCATION${config_suffix} ${CONAN_SHARED_FOUND_LIBRARY}) + set_target_properties(${_LIB_NAME} PROPERTIES IMPORTED_IMPLIB${config_suffix} ${CONAN_FOUND_LIBRARY}) + message(DEBUG "Found DLL and STATIC at ${CONAN_SHARED_FOUND_LIBRARY}, ${CONAN_FOUND_LIBRARY}") + endif() + unset(CONAN_SHARED_FOUND_LIBRARY CACHE) + else() + if(NOT TARGET ${_LIB_NAME}) + # library_type can be STATIC, still UNKNOWN (if no package type available in the recipe) or SHARED (but no windows) + add_library(${_LIB_NAME} ${library_type} IMPORTED) + endif() + message(DEBUG "Created target ${_LIB_NAME} ${library_type} IMPORTED") + set_target_properties(${_LIB_NAME} PROPERTIES IMPORTED_LOCATION${config_suffix} ${CONAN_FOUND_LIBRARY} IMPORTED_NO_SONAME ${no_soname_mode}) + endif() + list(APPEND _out_libraries_target ${_LIB_NAME}) + message(VERBOSE "Conan: Found: ${CONAN_FOUND_LIBRARY}") + else() + message(FATAL_ERROR "Library '${_LIBRARY_NAME}' not found in package. If '${_LIBRARY_NAME}' is a system library, declare it with 'cpp_info.system_libs' property") + endif() + unset(CONAN_FOUND_LIBRARY CACHE) + endforeach() + + # Add the dependencies target for all the imported libraries + foreach(_T ${_out_libraries_target}) + set_property(TARGET ${_T} APPEND PROPERTY INTERFACE_LINK_LIBRARIES ${deps_target}) + endforeach() + + set(${out_libraries_target} ${_out_libraries_target} PARENT_SCOPE) +endfunction() + +macro(check_build_type_defined) + # Check that the -DCMAKE_BUILD_TYPE argument is always present + get_property(isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) + if(NOT isMultiConfig AND NOT CMAKE_BUILD_TYPE) + message(FATAL_ERROR "Please, set the CMAKE_BUILD_TYPE variable when calling to CMake " + "adding the '-DCMAKE_BUILD_TYPE=' argument.") + endif() +endmacro() diff --git a/application/build/compile_commands.json b/application/build/compile_commands.json new file mode 100644 index 0000000..a7e0b81 --- /dev/null +++ b/application/build/compile_commands.json @@ -0,0 +1,8 @@ +[ +{ + "directory": "/home/erris/projects/open_engine/application/build", + "command": "/usr/bin/clang++ -D_GLIBCXX_USE_CXX11_ABI=0 -I/home/erris/projects/open_engine/application/include -m64 -stdlib=libstdc++ -g -std=c++20 @CMakeFiles/sand_box.dir/src/sandbox.cpp.o.modmap -o CMakeFiles/sand_box.dir/src/sandbox.cpp.o -c /home/erris/projects/open_engine/application/src/sandbox.cpp", + "file": "/home/erris/projects/open_engine/application/src/sandbox.cpp", + "output": "/home/erris/projects/open_engine/application/build/CMakeFiles/sand_box.dir/src/sandbox.cpp.o" +} +] diff --git a/application/build/conan_toolchain.cmake b/application/build/conan_toolchain.cmake new file mode 100644 index 0000000..8630cbc --- /dev/null +++ b/application/build/conan_toolchain.cmake @@ -0,0 +1,196 @@ +# Conan automatically generated toolchain file +# DO NOT EDIT MANUALLY, it will be overwritten + +# Avoid including toolchain file several times (bad if appending to variables like +# CMAKE_CXX_FLAGS. See https://github.com/android/ndk/issues/323 +include_guard() +message(STATUS "Using Conan toolchain: ${CMAKE_CURRENT_LIST_FILE}") +if(${CMAKE_VERSION} VERSION_LESS "3.15") + message(FATAL_ERROR "The 'CMakeToolchain' generator only works with CMake >= 3.15") +endif() + +########## 'user_toolchain' block ############# +# Include one or more CMake user toolchain from tools.cmake.cmaketoolchain:user_toolchain + + + +########## 'generic_system' block ############# +# Definition of system, platform and toolset + + + + + +########## 'compilers' block ############# + +set(CMAKE_C_COMPILER "clang") +set(CMAKE_CXX_COMPILER "clang++") + + +########## 'arch_flags' block ############# +# Define C++ flags, C flags and linker flags from 'settings.arch' +message(STATUS "Conan toolchain: Defining architecture flag: -m64") +string(APPEND CONAN_CXX_FLAGS " -m64") +string(APPEND CONAN_C_FLAGS " -m64") +string(APPEND CONAN_SHARED_LINKER_FLAGS " -m64") +string(APPEND CONAN_EXE_LINKER_FLAGS " -m64") + + +########## 'libcxx' block ############# +# Definition of libcxx from 'compiler.libcxx' setting, defining the +# right CXX_FLAGS for that libcxx + +message(STATUS "Conan toolchain: Defining libcxx as C++ flags: -stdlib=libstdc++") +string(APPEND CONAN_CXX_FLAGS " -stdlib=libstdc++") +message(STATUS "Conan toolchain: Adding glibcxx compile definition: _GLIBCXX_USE_CXX11_ABI=0") +add_compile_definitions(_GLIBCXX_USE_CXX11_ABI=0) + + +########## 'cppstd' block ############# +# Define the C++ and C standards from 'compiler.cppstd' and 'compiler.cstd' + +function(conan_modify_std_watch variable access value current_list_file stack) + set(conan_watched_std_variable "20") + if (${variable} STREQUAL "CMAKE_C_STANDARD") + set(conan_watched_std_variable "") + endif() + if ("${access}" STREQUAL "MODIFIED_ACCESS" AND NOT "${value}" STREQUAL "${conan_watched_std_variable}") + message(STATUS "Warning: Standard ${variable} value defined in conan_toolchain.cmake to ${conan_watched_std_variable} has been modified to ${value} by ${current_list_file}") + endif() + unset(conan_watched_std_variable) +endfunction() + +message(STATUS "Conan toolchain: C++ Standard 20 with extensions OFF") +set(CMAKE_CXX_STANDARD 20) +set(CMAKE_CXX_EXTENSIONS OFF) +set(CMAKE_CXX_STANDARD_REQUIRED ON) +variable_watch(CMAKE_CXX_STANDARD conan_modify_std_watch) + + +########## 'extra_flags' block ############# +# Include extra C++, C and linker flags from configuration tools.build:flags +# and from CMakeToolchain.extra__flags + +# Conan conf flags start: +# Conan conf flags end + + +########## 'cmake_flags_init' block ############# +# Define CMAKE__FLAGS from CONAN__FLAGS + +foreach(config IN LISTS CMAKE_CONFIGURATION_TYPES) + string(TOUPPER ${config} config) + if(DEFINED CONAN_CXX_FLAGS_${config}) + string(APPEND CMAKE_CXX_FLAGS_${config}_INIT " ${CONAN_CXX_FLAGS_${config}}") + endif() + if(DEFINED CONAN_C_FLAGS_${config}) + string(APPEND CMAKE_C_FLAGS_${config}_INIT " ${CONAN_C_FLAGS_${config}}") + endif() + if(DEFINED CONAN_SHARED_LINKER_FLAGS_${config}) + string(APPEND CMAKE_SHARED_LINKER_FLAGS_${config}_INIT " ${CONAN_SHARED_LINKER_FLAGS_${config}}") + endif() + if(DEFINED CONAN_EXE_LINKER_FLAGS_${config}) + string(APPEND CMAKE_EXE_LINKER_FLAGS_${config}_INIT " ${CONAN_EXE_LINKER_FLAGS_${config}}") + endif() +endforeach() + +if(DEFINED CONAN_CXX_FLAGS) + string(APPEND CMAKE_CXX_FLAGS_INIT " ${CONAN_CXX_FLAGS}") +endif() +if(DEFINED CONAN_C_FLAGS) + string(APPEND CMAKE_C_FLAGS_INIT " ${CONAN_C_FLAGS}") +endif() +if(DEFINED CONAN_SHARED_LINKER_FLAGS) + string(APPEND CMAKE_SHARED_LINKER_FLAGS_INIT " ${CONAN_SHARED_LINKER_FLAGS}") +endif() +if(DEFINED CONAN_EXE_LINKER_FLAGS) + string(APPEND CMAKE_EXE_LINKER_FLAGS_INIT " ${CONAN_EXE_LINKER_FLAGS}") +endif() +if(DEFINED CONAN_OBJCXX_FLAGS) + string(APPEND CMAKE_OBJCXX_FLAGS_INIT " ${CONAN_OBJCXX_FLAGS}") +endif() +if(DEFINED CONAN_OBJC_FLAGS) + string(APPEND CMAKE_OBJC_FLAGS_INIT " ${CONAN_OBJC_FLAGS}") +endif() + + +########## 'extra_variables' block ############# +# Definition of extra CMake variables from tools.cmake.cmaketoolchain:extra_variables + + + +########## 'try_compile' block ############# +# Blocks after this one will not be added when running CMake try/checks +get_property( _CMAKE_IN_TRY_COMPILE GLOBAL PROPERTY IN_TRY_COMPILE ) +if(_CMAKE_IN_TRY_COMPILE) + message(STATUS "Running toolchain IN_TRY_COMPILE") + return() +endif() + + +########## 'find_paths' block ############# +# Define paths to find packages, programs, libraries, etc. +if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/conan_cmakedeps_paths.cmake") + message(STATUS "Conan toolchain: Including CMakeDeps generated conan_cmakedeps_paths.cmake") + include("${CMAKE_CURRENT_LIST_DIR}/conan_cmakedeps_paths.cmake") +else() + +set(CMAKE_FIND_PACKAGE_PREFER_CONFIG ON) + +# Definition of CMAKE_MODULE_PATH +# the generators folder (where conan generates files, like this toolchain) +list(PREPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}) + +# Definition of CMAKE_PREFIX_PATH, CMAKE_XXXXX_PATH +# The Conan local "generators" folder, where this toolchain is saved. +list(PREPEND CMAKE_PREFIX_PATH ${CMAKE_CURRENT_LIST_DIR} ) +list(PREPEND CMAKE_LIBRARY_PATH "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib") +list(PREPEND CMAKE_INCLUDE_PATH "/home/erris/.conan2/p/b/imguic69fe98538919/p/include" "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/include" "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/include") +set(CONAN_RUNTIME_LIB_DIRS "/home/erris/.conan2/p/b/imguic69fe98538919/p/lib" "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p/lib" "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p/lib" ) + +endif() + + +########## 'pkg_config' block ############# +# Define pkg-config from 'tools.gnu:pkg_config' executable and paths + +if (DEFINED ENV{PKG_CONFIG_PATH}) +set(ENV{PKG_CONFIG_PATH} "${CMAKE_CURRENT_LIST_DIR}:$ENV{PKG_CONFIG_PATH}") +else() +set(ENV{PKG_CONFIG_PATH} "${CMAKE_CURRENT_LIST_DIR}:") +endif() + + +########## 'rpath' block ############# +# Defining CMAKE_SKIP_RPATH + + + +########## 'output_dirs' block ############# +# Definition of CMAKE_INSTALL_XXX folders + +set(CMAKE_INSTALL_BINDIR "bin") +set(CMAKE_INSTALL_SBINDIR "bin") +set(CMAKE_INSTALL_LIBEXECDIR "bin") +set(CMAKE_INSTALL_LIBDIR "lib") +set(CMAKE_INSTALL_INCLUDEDIR "include") +set(CMAKE_INSTALL_OLDINCLUDEDIR "include") + + +########## 'variables' block ############# +# Definition of CMake variables from CMakeToolchain.variables values + +# Variables +# Variables per configuration + + + +########## 'preprocessor' block ############# +# Preprocessor definitions from CMakeToolchain.preprocessor_definitions values + +# Preprocessor definitions per configuration + + + +if(CMAKE_POLICY_DEFAULT_CMP0091) # Avoid unused and not-initialized warnings +endif() diff --git a/application/build/conanbuild.sh b/application/build/conanbuild.sh new file mode 100644 index 0000000..b4d488b --- /dev/null +++ b/application/build/conanbuild.sh @@ -0,0 +1 @@ +. "/home/erris/projects/open_engine/application/build/conanbuildenv-x86_64.sh" \ No newline at end of file diff --git a/application/build/conanbuildenv-x86_64.sh b/application/build/conanbuildenv-x86_64.sh new file mode 100644 index 0000000..fb835b7 --- /dev/null +++ b/application/build/conanbuildenv-x86_64.sh @@ -0,0 +1,14 @@ +script_folder="/home/erris/projects/open_engine/application/build" +echo "echo Restoring environment" > "$script_folder/deactivate_conanbuildenv-x86_64.sh" +for v in +do + is_defined="true" + value=$(printenv $v) || is_defined="" || true + if [ -n "$value" ] || [ -n "$is_defined" ] + then + echo export "$v='$value'" >> "$script_folder/deactivate_conanbuildenv-x86_64.sh" + else + echo unset $v >> "$script_folder/deactivate_conanbuildenv-x86_64.sh" + fi +done + diff --git a/application/build/conandeps_legacy.cmake b/application/build/conandeps_legacy.cmake new file mode 100644 index 0000000..6520390 --- /dev/null +++ b/application/build/conandeps_legacy.cmake @@ -0,0 +1,7 @@ +message(STATUS "Conan: Using CMakeDeps conandeps_legacy.cmake aggregator via include()") +message(STATUS "Conan: It is recommended to use explicit find_package() per dependency instead") + +find_package(imgui) +find_package(spdlog) + +set(CONANDEPS_LEGACY imgui::imgui spdlog::spdlog ) \ No newline at end of file diff --git a/application/build/conanrun.sh b/application/build/conanrun.sh new file mode 100644 index 0000000..c45d416 --- /dev/null +++ b/application/build/conanrun.sh @@ -0,0 +1 @@ +. "/home/erris/projects/open_engine/application/build/conanrunenv-x86_64.sh" \ No newline at end of file diff --git a/application/build/conanrunenv-x86_64.sh b/application/build/conanrunenv-x86_64.sh new file mode 100644 index 0000000..d59f91c --- /dev/null +++ b/application/build/conanrunenv-x86_64.sh @@ -0,0 +1,14 @@ +script_folder="/home/erris/projects/open_engine/application/build" +echo "echo Restoring environment" > "$script_folder/deactivate_conanrunenv-x86_64.sh" +for v in +do + is_defined="true" + value=$(printenv $v) || is_defined="" || true + if [ -n "$value" ] || [ -n "$is_defined" ] + then + echo export "$v='$value'" >> "$script_folder/deactivate_conanrunenv-x86_64.sh" + else + echo unset $v >> "$script_folder/deactivate_conanrunenv-x86_64.sh" + fi +done + diff --git a/application/build/deactivate_conanbuild.sh b/application/build/deactivate_conanbuild.sh new file mode 100644 index 0000000..766a524 --- /dev/null +++ b/application/build/deactivate_conanbuild.sh @@ -0,0 +1 @@ +. "/home/erris/projects/open_engine/application/build/deactivate_conanbuildenv-x86_64.sh" \ No newline at end of file diff --git a/application/build/deactivate_conanrun.sh b/application/build/deactivate_conanrun.sh new file mode 100644 index 0000000..ee6b351 --- /dev/null +++ b/application/build/deactivate_conanrun.sh @@ -0,0 +1 @@ +. "/home/erris/projects/open_engine/application/build/deactivate_conanrunenv-x86_64.sh" \ No newline at end of file diff --git a/application/build/fmt-Target-none.cmake b/application/build/fmt-Target-none.cmake new file mode 100644 index 0000000..b855dc4 --- /dev/null +++ b/application/build/fmt-Target-none.cmake @@ -0,0 +1,103 @@ +# Avoid multiple calls to find_package to append duplicated properties to the targets +include_guard()########### VARIABLES ####################################################################### +############################################################################################# +set(fmt_FRAMEWORKS_FOUND_NONE "") # Will be filled later +conan_find_apple_frameworks(fmt_FRAMEWORKS_FOUND_NONE "${fmt_FRAMEWORKS_NONE}" "${fmt_FRAMEWORK_DIRS_NONE}") + +set(fmt_LIBRARIES_TARGETS "") # Will be filled later + + +######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) +if(NOT TARGET fmt_DEPS_TARGET) + add_library(fmt_DEPS_TARGET INTERFACE IMPORTED) +endif() + +set_property(TARGET fmt_DEPS_TARGET + APPEND PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${fmt_FRAMEWORKS_FOUND_NONE}> + $<$:${fmt_SYSTEM_LIBS_NONE}> + $<$:>) + +####### Find the libraries declared in cpp_info.libs, create an IMPORTED target for each one and link the +####### fmt_DEPS_TARGET to all of them +conan_package_library_targets("${fmt_LIBS_NONE}" # libraries + "${fmt_LIB_DIRS_NONE}" # package_libdir + "${fmt_BIN_DIRS_NONE}" # package_bindir + "${fmt_LIBRARY_TYPE_NONE}" + "${fmt_IS_HOST_WINDOWS_NONE}" + fmt_DEPS_TARGET + fmt_LIBRARIES_TARGETS # out_libraries_targets + "_NONE" + "fmt" # package_name + "${fmt_NO_SONAME_MODE_NONE}") # soname + +# FIXME: What is the result of this for multi-config? All configs adding themselves to path? +set(CMAKE_MODULE_PATH ${fmt_BUILD_DIRS_NONE} ${CMAKE_MODULE_PATH}) + +########## COMPONENTS TARGET PROPERTIES None ######################################## + + ########## COMPONENT fmt::fmt ############# + + set(fmt_fmt_fmt_FRAMEWORKS_FOUND_NONE "") + conan_find_apple_frameworks(fmt_fmt_fmt_FRAMEWORKS_FOUND_NONE "${fmt_fmt_fmt_FRAMEWORKS_NONE}" "${fmt_fmt_fmt_FRAMEWORK_DIRS_NONE}") + + set(fmt_fmt_fmt_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET fmt_fmt_fmt_DEPS_TARGET) + add_library(fmt_fmt_fmt_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET fmt_fmt_fmt_DEPS_TARGET + APPEND PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${fmt_fmt_fmt_FRAMEWORKS_FOUND_NONE}> + $<$:${fmt_fmt_fmt_SYSTEM_LIBS_NONE}> + $<$:${fmt_fmt_fmt_DEPENDENCIES_NONE}> + ) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'fmt_fmt_fmt_DEPS_TARGET' to all of them + conan_package_library_targets("${fmt_fmt_fmt_LIBS_NONE}" + "${fmt_fmt_fmt_LIB_DIRS_NONE}" + "${fmt_fmt_fmt_BIN_DIRS_NONE}" # package_bindir + "${fmt_fmt_fmt_LIBRARY_TYPE_NONE}" + "${fmt_fmt_fmt_IS_HOST_WINDOWS_NONE}" + fmt_fmt_fmt_DEPS_TARGET + fmt_fmt_fmt_LIBRARIES_TARGETS + "_NONE" + "fmt_fmt_fmt" + "${fmt_fmt_fmt_NO_SONAME_MODE_NONE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET fmt::fmt + APPEND PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${fmt_fmt_fmt_OBJECTS_NONE}> + $<$:${fmt_fmt_fmt_LIBRARIES_TARGETS}> + ) + + if("${fmt_fmt_fmt_LIBS_NONE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET fmt::fmt + APPEND PROPERTY INTERFACE_LINK_LIBRARIES + fmt_fmt_fmt_DEPS_TARGET) + endif() + + set_property(TARGET fmt::fmt APPEND PROPERTY INTERFACE_LINK_OPTIONS + $<$:${fmt_fmt_fmt_LINKER_FLAGS_NONE}>) + set_property(TARGET fmt::fmt APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${fmt_fmt_fmt_INCLUDE_DIRS_NONE}>) + set_property(TARGET fmt::fmt APPEND PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${fmt_fmt_fmt_LIB_DIRS_NONE}>) + set_property(TARGET fmt::fmt APPEND PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${fmt_fmt_fmt_COMPILE_DEFINITIONS_NONE}>) + set_property(TARGET fmt::fmt APPEND PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${fmt_fmt_fmt_COMPILE_OPTIONS_NONE}>) + + + ########## AGGREGATED GLOBAL TARGET WITH THE COMPONENTS ##################### + set_property(TARGET fmt::fmt APPEND PROPERTY INTERFACE_LINK_LIBRARIES fmt::fmt) + +########## For the modules (FindXXX) +set(fmt_LIBRARIES_NONE fmt::fmt) diff --git a/application/build/fmt-config-version.cmake b/application/build/fmt-config-version.cmake new file mode 100644 index 0000000..088722b --- /dev/null +++ b/application/build/fmt-config-version.cmake @@ -0,0 +1,11 @@ +set(PACKAGE_VERSION "12.0.0") + +if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) + set(PACKAGE_VERSION_COMPATIBLE FALSE) +else() + set(PACKAGE_VERSION_COMPATIBLE TRUE) + + if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) + set(PACKAGE_VERSION_EXACT TRUE) + endif() +endif() \ No newline at end of file diff --git a/application/build/fmt-config.cmake b/application/build/fmt-config.cmake new file mode 100644 index 0000000..b8dcb75 --- /dev/null +++ b/application/build/fmt-config.cmake @@ -0,0 +1,41 @@ +########## MACROS ########################################################################### +############################################################################################# + +# Requires CMake > 3.15 +if(${CMAKE_VERSION} VERSION_LESS "3.15") + message(FATAL_ERROR "The 'CMakeDeps' generator only works with CMake >= 3.15") +endif() + +if(fmt_FIND_QUIETLY) + set(fmt_MESSAGE_MODE VERBOSE) +else() + set(fmt_MESSAGE_MODE STATUS) +endif() + +include(${CMAKE_CURRENT_LIST_DIR}/cmakedeps_macros.cmake) +include(${CMAKE_CURRENT_LIST_DIR}/fmtTargets.cmake) +include(CMakeFindDependencyMacro) + +check_build_type_defined() + +foreach(_DEPENDENCY ${fmt_FIND_DEPENDENCY_NAMES} ) + # Check that we have not already called a find_package with the transitive dependency + if(NOT ${_DEPENDENCY}_FOUND) + find_dependency(${_DEPENDENCY} REQUIRED ${${_DEPENDENCY}_FIND_MODE}) + endif() +endforeach() + +set(fmt_VERSION_STRING "12.0.0") +set(fmt_INCLUDE_DIRS ${fmt_INCLUDE_DIRS_NONE} ) +set(fmt_INCLUDE_DIR ${fmt_INCLUDE_DIRS_NONE} ) +set(fmt_LIBRARIES ${fmt_LIBRARIES_NONE} ) +set(fmt_DEFINITIONS ${fmt_DEFINITIONS_NONE} ) + + +# Only the last installed configuration BUILD_MODULES are included to avoid the collision +foreach(_BUILD_MODULE ${fmt_BUILD_MODULES_PATHS_NONE} ) + message(${fmt_MESSAGE_MODE} "Conan: Including build module from '${_BUILD_MODULE}'") + include(${_BUILD_MODULE}) +endforeach() + + diff --git a/application/build/fmt-none-x86_64-data.cmake b/application/build/fmt-none-x86_64-data.cmake new file mode 100644 index 0000000..83e2e9d --- /dev/null +++ b/application/build/fmt-none-x86_64-data.cmake @@ -0,0 +1,81 @@ +########### AGGREGATED COMPONENTS AND DEPENDENCIES FOR THE MULTI CONFIG ##################### +############################################################################################# + +list(APPEND fmt_COMPONENT_NAMES fmt::fmt) +list(REMOVE_DUPLICATES fmt_COMPONENT_NAMES) +if(DEFINED fmt_FIND_DEPENDENCY_NAMES) + list(APPEND fmt_FIND_DEPENDENCY_NAMES ) + list(REMOVE_DUPLICATES fmt_FIND_DEPENDENCY_NAMES) +else() + set(fmt_FIND_DEPENDENCY_NAMES ) +endif() + +########### VARIABLES ####################################################################### +############################################################################################# +set(fmt_PACKAGE_FOLDER_NONE "/home/erris/.conan2/p/b/fmt5642fd8dce3e5/p") +set(fmt_BUILD_MODULES_PATHS_NONE ) + + +set(fmt_INCLUDE_DIRS_NONE "${fmt_PACKAGE_FOLDER_NONE}/include") +set(fmt_RES_DIRS_NONE ) +set(fmt_DEFINITIONS_NONE ) +set(fmt_SHARED_LINK_FLAGS_NONE ) +set(fmt_EXE_LINK_FLAGS_NONE ) +set(fmt_OBJECTS_NONE ) +set(fmt_COMPILE_DEFINITIONS_NONE ) +set(fmt_COMPILE_OPTIONS_C_NONE ) +set(fmt_COMPILE_OPTIONS_CXX_NONE ) +set(fmt_LIB_DIRS_NONE "${fmt_PACKAGE_FOLDER_NONE}/lib") +set(fmt_BIN_DIRS_NONE ) +set(fmt_LIBRARY_TYPE_NONE STATIC) +set(fmt_IS_HOST_WINDOWS_NONE 0) +set(fmt_LIBS_NONE fmt) +set(fmt_SYSTEM_LIBS_NONE m) +set(fmt_FRAMEWORK_DIRS_NONE ) +set(fmt_FRAMEWORKS_NONE ) +set(fmt_BUILD_DIRS_NONE ) +set(fmt_NO_SONAME_MODE_NONE FALSE) + + +# COMPOUND VARIABLES +set(fmt_COMPILE_OPTIONS_NONE + "$<$:${fmt_COMPILE_OPTIONS_CXX_NONE}>" + "$<$:${fmt_COMPILE_OPTIONS_C_NONE}>") +set(fmt_LINKER_FLAGS_NONE + "$<$,SHARED_LIBRARY>:${fmt_SHARED_LINK_FLAGS_NONE}>" + "$<$,MODULE_LIBRARY>:${fmt_SHARED_LINK_FLAGS_NONE}>" + "$<$,EXECUTABLE>:${fmt_EXE_LINK_FLAGS_NONE}>") + + +set(fmt_COMPONENTS_NONE fmt::fmt) +########### COMPONENT fmt::fmt VARIABLES ############################################ + +set(fmt_fmt_fmt_INCLUDE_DIRS_NONE "${fmt_PACKAGE_FOLDER_NONE}/include") +set(fmt_fmt_fmt_LIB_DIRS_NONE "${fmt_PACKAGE_FOLDER_NONE}/lib") +set(fmt_fmt_fmt_BIN_DIRS_NONE ) +set(fmt_fmt_fmt_LIBRARY_TYPE_NONE STATIC) +set(fmt_fmt_fmt_IS_HOST_WINDOWS_NONE 0) +set(fmt_fmt_fmt_RES_DIRS_NONE ) +set(fmt_fmt_fmt_DEFINITIONS_NONE ) +set(fmt_fmt_fmt_OBJECTS_NONE ) +set(fmt_fmt_fmt_COMPILE_DEFINITIONS_NONE ) +set(fmt_fmt_fmt_COMPILE_OPTIONS_C_NONE "") +set(fmt_fmt_fmt_COMPILE_OPTIONS_CXX_NONE "") +set(fmt_fmt_fmt_LIBS_NONE fmt) +set(fmt_fmt_fmt_SYSTEM_LIBS_NONE m) +set(fmt_fmt_fmt_FRAMEWORK_DIRS_NONE ) +set(fmt_fmt_fmt_FRAMEWORKS_NONE ) +set(fmt_fmt_fmt_DEPENDENCIES_NONE ) +set(fmt_fmt_fmt_SHARED_LINK_FLAGS_NONE ) +set(fmt_fmt_fmt_EXE_LINK_FLAGS_NONE ) +set(fmt_fmt_fmt_NO_SONAME_MODE_NONE FALSE) + +# COMPOUND VARIABLES +set(fmt_fmt_fmt_LINKER_FLAGS_NONE + $<$,SHARED_LIBRARY>:${fmt_fmt_fmt_SHARED_LINK_FLAGS_NONE}> + $<$,MODULE_LIBRARY>:${fmt_fmt_fmt_SHARED_LINK_FLAGS_NONE}> + $<$,EXECUTABLE>:${fmt_fmt_fmt_EXE_LINK_FLAGS_NONE}> +) +set(fmt_fmt_fmt_COMPILE_OPTIONS_NONE + "$<$:${fmt_fmt_fmt_COMPILE_OPTIONS_CXX_NONE}>" + "$<$:${fmt_fmt_fmt_COMPILE_OPTIONS_C_NONE}>") \ No newline at end of file diff --git a/application/build/fmtTargets.cmake b/application/build/fmtTargets.cmake new file mode 100644 index 0000000..b8237fe --- /dev/null +++ b/application/build/fmtTargets.cmake @@ -0,0 +1,25 @@ +# Load the debug and release variables +file(GLOB DATA_FILES "${CMAKE_CURRENT_LIST_DIR}/fmt-*-data.cmake") + +foreach(f ${DATA_FILES}) + include(${f}) +endforeach() + +# Create the targets for all the components +foreach(_COMPONENT ${fmt_COMPONENT_NAMES} ) + if(NOT TARGET ${_COMPONENT}) + add_library(${_COMPONENT} INTERFACE IMPORTED) + message(${fmt_MESSAGE_MODE} "Conan: Component target declared '${_COMPONENT}'") + endif() +endforeach() + +if(NOT TARGET fmt::fmt) + add_library(fmt::fmt INTERFACE IMPORTED) + message(${fmt_MESSAGE_MODE} "Conan: Target declared 'fmt::fmt'") +endif() +# Load the debug and release library finders +file(GLOB CONFIG_FILES "${CMAKE_CURRENT_LIST_DIR}/fmt-Target-*.cmake") + +foreach(f ${CONFIG_FILES}) + include(${f}) +endforeach() \ No newline at end of file diff --git a/application/build/imgui-Target-none.cmake b/application/build/imgui-Target-none.cmake new file mode 100644 index 0000000..9757f0b --- /dev/null +++ b/application/build/imgui-Target-none.cmake @@ -0,0 +1,71 @@ +# Avoid multiple calls to find_package to append duplicated properties to the targets +include_guard()########### VARIABLES ####################################################################### +############################################################################################# +set(imgui_FRAMEWORKS_FOUND_NONE "") # Will be filled later +conan_find_apple_frameworks(imgui_FRAMEWORKS_FOUND_NONE "${imgui_FRAMEWORKS_NONE}" "${imgui_FRAMEWORK_DIRS_NONE}") + +set(imgui_LIBRARIES_TARGETS "") # Will be filled later + + +######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) +if(NOT TARGET imgui_DEPS_TARGET) + add_library(imgui_DEPS_TARGET INTERFACE IMPORTED) +endif() + +set_property(TARGET imgui_DEPS_TARGET + APPEND PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${imgui_FRAMEWORKS_FOUND_NONE}> + $<$:${imgui_SYSTEM_LIBS_NONE}> + $<$:>) + +####### Find the libraries declared in cpp_info.libs, create an IMPORTED target for each one and link the +####### imgui_DEPS_TARGET to all of them +conan_package_library_targets("${imgui_LIBS_NONE}" # libraries + "${imgui_LIB_DIRS_NONE}" # package_libdir + "${imgui_BIN_DIRS_NONE}" # package_bindir + "${imgui_LIBRARY_TYPE_NONE}" + "${imgui_IS_HOST_WINDOWS_NONE}" + imgui_DEPS_TARGET + imgui_LIBRARIES_TARGETS # out_libraries_targets + "_NONE" + "imgui" # package_name + "${imgui_NO_SONAME_MODE_NONE}") # soname + +# FIXME: What is the result of this for multi-config? All configs adding themselves to path? +set(CMAKE_MODULE_PATH ${imgui_BUILD_DIRS_NONE} ${CMAKE_MODULE_PATH}) + +########## GLOBAL TARGET PROPERTIES None ######################################## + set_property(TARGET imgui::imgui + APPEND PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${imgui_OBJECTS_NONE}> + $<$:${imgui_LIBRARIES_TARGETS}> + ) + + if("${imgui_LIBS_NONE}" STREQUAL "") + # If the package is not declaring any "cpp_info.libs" the package deps, system libs, + # frameworks etc are not linked to the imported targets and we need to do it to the + # global target + set_property(TARGET imgui::imgui + APPEND PROPERTY INTERFACE_LINK_LIBRARIES + imgui_DEPS_TARGET) + endif() + + set_property(TARGET imgui::imgui + APPEND PROPERTY INTERFACE_LINK_OPTIONS + $<$:${imgui_LINKER_FLAGS_NONE}>) + set_property(TARGET imgui::imgui + APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${imgui_INCLUDE_DIRS_NONE}>) + # Necessary to find LINK shared libraries in Linux + set_property(TARGET imgui::imgui + APPEND PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${imgui_LIB_DIRS_NONE}>) + set_property(TARGET imgui::imgui + APPEND PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${imgui_COMPILE_DEFINITIONS_NONE}>) + set_property(TARGET imgui::imgui + APPEND PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${imgui_COMPILE_OPTIONS_NONE}>) + +########## For the modules (FindXXX) +set(imgui_LIBRARIES_NONE imgui::imgui) diff --git a/application/build/imgui-config-version.cmake b/application/build/imgui-config-version.cmake new file mode 100644 index 0000000..a35a4d9 --- /dev/null +++ b/application/build/imgui-config-version.cmake @@ -0,0 +1,21 @@ +set(PACKAGE_VERSION "1.92.5-docking") + +if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) + set(PACKAGE_VERSION_COMPATIBLE FALSE) +else() + if("1.92.5-docking" MATCHES "^([0-9]+)\\.") + set(CVF_VERSION_MAJOR ${CMAKE_MATCH_1}) + else() + set(CVF_VERSION_MAJOR "1.92.5-docking") + endif() + + if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + else() + set(PACKAGE_VERSION_COMPATIBLE FALSE) + endif() + + if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) + set(PACKAGE_VERSION_EXACT TRUE) + endif() +endif() \ No newline at end of file diff --git a/application/build/imgui-config.cmake b/application/build/imgui-config.cmake new file mode 100644 index 0000000..e10b0cc --- /dev/null +++ b/application/build/imgui-config.cmake @@ -0,0 +1,41 @@ +########## MACROS ########################################################################### +############################################################################################# + +# Requires CMake > 3.15 +if(${CMAKE_VERSION} VERSION_LESS "3.15") + message(FATAL_ERROR "The 'CMakeDeps' generator only works with CMake >= 3.15") +endif() + +if(imgui_FIND_QUIETLY) + set(imgui_MESSAGE_MODE VERBOSE) +else() + set(imgui_MESSAGE_MODE STATUS) +endif() + +include(${CMAKE_CURRENT_LIST_DIR}/cmakedeps_macros.cmake) +include(${CMAKE_CURRENT_LIST_DIR}/imguiTargets.cmake) +include(CMakeFindDependencyMacro) + +check_build_type_defined() + +foreach(_DEPENDENCY ${imgui_FIND_DEPENDENCY_NAMES} ) + # Check that we have not already called a find_package with the transitive dependency + if(NOT ${_DEPENDENCY}_FOUND) + find_dependency(${_DEPENDENCY} REQUIRED ${${_DEPENDENCY}_FIND_MODE}) + endif() +endforeach() + +set(imgui_VERSION_STRING "1.92.5-docking") +set(imgui_INCLUDE_DIRS ${imgui_INCLUDE_DIRS_NONE} ) +set(imgui_INCLUDE_DIR ${imgui_INCLUDE_DIRS_NONE} ) +set(imgui_LIBRARIES ${imgui_LIBRARIES_NONE} ) +set(imgui_DEFINITIONS ${imgui_DEFINITIONS_NONE} ) + + +# Only the last installed configuration BUILD_MODULES are included to avoid the collision +foreach(_BUILD_MODULE ${imgui_BUILD_MODULES_PATHS_NONE} ) + message(${imgui_MESSAGE_MODE} "Conan: Including build module from '${_BUILD_MODULE}'") + include(${_BUILD_MODULE}) +endforeach() + + diff --git a/application/build/imgui-none-x86_64-data.cmake b/application/build/imgui-none-x86_64-data.cmake new file mode 100644 index 0000000..0475f7c --- /dev/null +++ b/application/build/imgui-none-x86_64-data.cmake @@ -0,0 +1,49 @@ +########### AGGREGATED COMPONENTS AND DEPENDENCIES FOR THE MULTI CONFIG ##################### +############################################################################################# + +set(imgui_COMPONENT_NAMES "") +if(DEFINED imgui_FIND_DEPENDENCY_NAMES) + list(APPEND imgui_FIND_DEPENDENCY_NAMES ) + list(REMOVE_DUPLICATES imgui_FIND_DEPENDENCY_NAMES) +else() + set(imgui_FIND_DEPENDENCY_NAMES ) +endif() + +########### VARIABLES ####################################################################### +############################################################################################# +set(imgui_PACKAGE_FOLDER_NONE "/home/erris/.conan2/p/b/imguic69fe98538919/p") +set(imgui_BUILD_MODULES_PATHS_NONE ) + + +set(imgui_INCLUDE_DIRS_NONE "${imgui_PACKAGE_FOLDER_NONE}/include") +set(imgui_RES_DIRS_NONE ) +set(imgui_DEFINITIONS_NONE ) +set(imgui_SHARED_LINK_FLAGS_NONE ) +set(imgui_EXE_LINK_FLAGS_NONE ) +set(imgui_OBJECTS_NONE ) +set(imgui_COMPILE_DEFINITIONS_NONE ) +set(imgui_COMPILE_OPTIONS_C_NONE ) +set(imgui_COMPILE_OPTIONS_CXX_NONE ) +set(imgui_LIB_DIRS_NONE "${imgui_PACKAGE_FOLDER_NONE}/lib") +set(imgui_BIN_DIRS_NONE ) +set(imgui_LIBRARY_TYPE_NONE STATIC) +set(imgui_IS_HOST_WINDOWS_NONE 0) +set(imgui_LIBS_NONE imgui) +set(imgui_SYSTEM_LIBS_NONE m) +set(imgui_FRAMEWORK_DIRS_NONE ) +set(imgui_FRAMEWORKS_NONE ) +set(imgui_BUILD_DIRS_NONE ) +set(imgui_NO_SONAME_MODE_NONE FALSE) + + +# COMPOUND VARIABLES +set(imgui_COMPILE_OPTIONS_NONE + "$<$:${imgui_COMPILE_OPTIONS_CXX_NONE}>" + "$<$:${imgui_COMPILE_OPTIONS_C_NONE}>") +set(imgui_LINKER_FLAGS_NONE + "$<$,SHARED_LIBRARY>:${imgui_SHARED_LINK_FLAGS_NONE}>" + "$<$,MODULE_LIBRARY>:${imgui_SHARED_LINK_FLAGS_NONE}>" + "$<$,EXECUTABLE>:${imgui_EXE_LINK_FLAGS_NONE}>") + + +set(imgui_COMPONENTS_NONE ) \ No newline at end of file diff --git a/application/build/imguiTargets.cmake b/application/build/imguiTargets.cmake new file mode 100644 index 0000000..912b838 --- /dev/null +++ b/application/build/imguiTargets.cmake @@ -0,0 +1,25 @@ +# Load the debug and release variables +file(GLOB DATA_FILES "${CMAKE_CURRENT_LIST_DIR}/imgui-*-data.cmake") + +foreach(f ${DATA_FILES}) + include(${f}) +endforeach() + +# Create the targets for all the components +foreach(_COMPONENT ${imgui_COMPONENT_NAMES} ) + if(NOT TARGET ${_COMPONENT}) + add_library(${_COMPONENT} INTERFACE IMPORTED) + message(${imgui_MESSAGE_MODE} "Conan: Component target declared '${_COMPONENT}'") + endif() +endforeach() + +if(NOT TARGET imgui::imgui) + add_library(imgui::imgui INTERFACE IMPORTED) + message(${imgui_MESSAGE_MODE} "Conan: Target declared 'imgui::imgui'") +endif() +# Load the debug and release library finders +file(GLOB CONFIG_FILES "${CMAKE_CURRENT_LIST_DIR}/imgui-Target-*.cmake") + +foreach(f ${CONFIG_FILES}) + include(${f}) +endforeach() \ No newline at end of file diff --git a/application/build/spdlog-Target-none.cmake b/application/build/spdlog-Target-none.cmake new file mode 100644 index 0000000..2a36acc --- /dev/null +++ b/application/build/spdlog-Target-none.cmake @@ -0,0 +1,103 @@ +# Avoid multiple calls to find_package to append duplicated properties to the targets +include_guard()########### VARIABLES ####################################################################### +############################################################################################# +set(spdlog_FRAMEWORKS_FOUND_NONE "") # Will be filled later +conan_find_apple_frameworks(spdlog_FRAMEWORKS_FOUND_NONE "${spdlog_FRAMEWORKS_NONE}" "${spdlog_FRAMEWORK_DIRS_NONE}") + +set(spdlog_LIBRARIES_TARGETS "") # Will be filled later + + +######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) +if(NOT TARGET spdlog_DEPS_TARGET) + add_library(spdlog_DEPS_TARGET INTERFACE IMPORTED) +endif() + +set_property(TARGET spdlog_DEPS_TARGET + APPEND PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${spdlog_FRAMEWORKS_FOUND_NONE}> + $<$:${spdlog_SYSTEM_LIBS_NONE}> + $<$:fmt::fmt>) + +####### Find the libraries declared in cpp_info.libs, create an IMPORTED target for each one and link the +####### spdlog_DEPS_TARGET to all of them +conan_package_library_targets("${spdlog_LIBS_NONE}" # libraries + "${spdlog_LIB_DIRS_NONE}" # package_libdir + "${spdlog_BIN_DIRS_NONE}" # package_bindir + "${spdlog_LIBRARY_TYPE_NONE}" + "${spdlog_IS_HOST_WINDOWS_NONE}" + spdlog_DEPS_TARGET + spdlog_LIBRARIES_TARGETS # out_libraries_targets + "_NONE" + "spdlog" # package_name + "${spdlog_NO_SONAME_MODE_NONE}") # soname + +# FIXME: What is the result of this for multi-config? All configs adding themselves to path? +set(CMAKE_MODULE_PATH ${spdlog_BUILD_DIRS_NONE} ${CMAKE_MODULE_PATH}) + +########## COMPONENTS TARGET PROPERTIES None ######################################## + + ########## COMPONENT spdlog::spdlog ############# + + set(spdlog_spdlog_spdlog_FRAMEWORKS_FOUND_NONE "") + conan_find_apple_frameworks(spdlog_spdlog_spdlog_FRAMEWORKS_FOUND_NONE "${spdlog_spdlog_spdlog_FRAMEWORKS_NONE}" "${spdlog_spdlog_spdlog_FRAMEWORK_DIRS_NONE}") + + set(spdlog_spdlog_spdlog_LIBRARIES_TARGETS "") + + ######## Create an interface target to contain all the dependencies (frameworks, system and conan deps) + if(NOT TARGET spdlog_spdlog_spdlog_DEPS_TARGET) + add_library(spdlog_spdlog_spdlog_DEPS_TARGET INTERFACE IMPORTED) + endif() + + set_property(TARGET spdlog_spdlog_spdlog_DEPS_TARGET + APPEND PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${spdlog_spdlog_spdlog_FRAMEWORKS_FOUND_NONE}> + $<$:${spdlog_spdlog_spdlog_SYSTEM_LIBS_NONE}> + $<$:${spdlog_spdlog_spdlog_DEPENDENCIES_NONE}> + ) + + ####### Find the libraries declared in cpp_info.component["xxx"].libs, + ####### create an IMPORTED target for each one and link the 'spdlog_spdlog_spdlog_DEPS_TARGET' to all of them + conan_package_library_targets("${spdlog_spdlog_spdlog_LIBS_NONE}" + "${spdlog_spdlog_spdlog_LIB_DIRS_NONE}" + "${spdlog_spdlog_spdlog_BIN_DIRS_NONE}" # package_bindir + "${spdlog_spdlog_spdlog_LIBRARY_TYPE_NONE}" + "${spdlog_spdlog_spdlog_IS_HOST_WINDOWS_NONE}" + spdlog_spdlog_spdlog_DEPS_TARGET + spdlog_spdlog_spdlog_LIBRARIES_TARGETS + "_NONE" + "spdlog_spdlog_spdlog" + "${spdlog_spdlog_spdlog_NO_SONAME_MODE_NONE}") + + + ########## TARGET PROPERTIES ##################################### + set_property(TARGET spdlog::spdlog + APPEND PROPERTY INTERFACE_LINK_LIBRARIES + $<$:${spdlog_spdlog_spdlog_OBJECTS_NONE}> + $<$:${spdlog_spdlog_spdlog_LIBRARIES_TARGETS}> + ) + + if("${spdlog_spdlog_spdlog_LIBS_NONE}" STREQUAL "") + # If the component is not declaring any "cpp_info.components['foo'].libs" the system, frameworks etc are not + # linked to the imported targets and we need to do it to the global target + set_property(TARGET spdlog::spdlog + APPEND PROPERTY INTERFACE_LINK_LIBRARIES + spdlog_spdlog_spdlog_DEPS_TARGET) + endif() + + set_property(TARGET spdlog::spdlog APPEND PROPERTY INTERFACE_LINK_OPTIONS + $<$:${spdlog_spdlog_spdlog_LINKER_FLAGS_NONE}>) + set_property(TARGET spdlog::spdlog APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES + $<$:${spdlog_spdlog_spdlog_INCLUDE_DIRS_NONE}>) + set_property(TARGET spdlog::spdlog APPEND PROPERTY INTERFACE_LINK_DIRECTORIES + $<$:${spdlog_spdlog_spdlog_LIB_DIRS_NONE}>) + set_property(TARGET spdlog::spdlog APPEND PROPERTY INTERFACE_COMPILE_DEFINITIONS + $<$:${spdlog_spdlog_spdlog_COMPILE_DEFINITIONS_NONE}>) + set_property(TARGET spdlog::spdlog APPEND PROPERTY INTERFACE_COMPILE_OPTIONS + $<$:${spdlog_spdlog_spdlog_COMPILE_OPTIONS_NONE}>) + + + ########## AGGREGATED GLOBAL TARGET WITH THE COMPONENTS ##################### + set_property(TARGET spdlog::spdlog APPEND PROPERTY INTERFACE_LINK_LIBRARIES spdlog::spdlog) + +########## For the modules (FindXXX) +set(spdlog_LIBRARIES_NONE spdlog::spdlog) diff --git a/application/build/spdlog-config-version.cmake b/application/build/spdlog-config-version.cmake new file mode 100644 index 0000000..9dda1ea --- /dev/null +++ b/application/build/spdlog-config-version.cmake @@ -0,0 +1,21 @@ +set(PACKAGE_VERSION "1.16.0") + +if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) + set(PACKAGE_VERSION_COMPATIBLE FALSE) +else() + if("1.16.0" MATCHES "^([0-9]+)\\.") + set(CVF_VERSION_MAJOR ${CMAKE_MATCH_1}) + else() + set(CVF_VERSION_MAJOR "1.16.0") + endif() + + if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR) + set(PACKAGE_VERSION_COMPATIBLE TRUE) + else() + set(PACKAGE_VERSION_COMPATIBLE FALSE) + endif() + + if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) + set(PACKAGE_VERSION_EXACT TRUE) + endif() +endif() \ No newline at end of file diff --git a/application/build/spdlog-config.cmake b/application/build/spdlog-config.cmake new file mode 100644 index 0000000..4d3ae37 --- /dev/null +++ b/application/build/spdlog-config.cmake @@ -0,0 +1,41 @@ +########## MACROS ########################################################################### +############################################################################################# + +# Requires CMake > 3.15 +if(${CMAKE_VERSION} VERSION_LESS "3.15") + message(FATAL_ERROR "The 'CMakeDeps' generator only works with CMake >= 3.15") +endif() + +if(spdlog_FIND_QUIETLY) + set(spdlog_MESSAGE_MODE VERBOSE) +else() + set(spdlog_MESSAGE_MODE STATUS) +endif() + +include(${CMAKE_CURRENT_LIST_DIR}/cmakedeps_macros.cmake) +include(${CMAKE_CURRENT_LIST_DIR}/spdlogTargets.cmake) +include(CMakeFindDependencyMacro) + +check_build_type_defined() + +foreach(_DEPENDENCY ${spdlog_FIND_DEPENDENCY_NAMES} ) + # Check that we have not already called a find_package with the transitive dependency + if(NOT ${_DEPENDENCY}_FOUND) + find_dependency(${_DEPENDENCY} REQUIRED ${${_DEPENDENCY}_FIND_MODE}) + endif() +endforeach() + +set(spdlog_VERSION_STRING "1.16.0") +set(spdlog_INCLUDE_DIRS ${spdlog_INCLUDE_DIRS_NONE} ) +set(spdlog_INCLUDE_DIR ${spdlog_INCLUDE_DIRS_NONE} ) +set(spdlog_LIBRARIES ${spdlog_LIBRARIES_NONE} ) +set(spdlog_DEFINITIONS ${spdlog_DEFINITIONS_NONE} ) + + +# Only the last installed configuration BUILD_MODULES are included to avoid the collision +foreach(_BUILD_MODULE ${spdlog_BUILD_MODULES_PATHS_NONE} ) + message(${spdlog_MESSAGE_MODE} "Conan: Including build module from '${_BUILD_MODULE}'") + include(${_BUILD_MODULE}) +endforeach() + + diff --git a/application/build/spdlog-none-x86_64-data.cmake b/application/build/spdlog-none-x86_64-data.cmake new file mode 100644 index 0000000..110e043 --- /dev/null +++ b/application/build/spdlog-none-x86_64-data.cmake @@ -0,0 +1,86 @@ +########### AGGREGATED COMPONENTS AND DEPENDENCIES FOR THE MULTI CONFIG ##################### +############################################################################################# + +list(APPEND spdlog_COMPONENT_NAMES spdlog::spdlog) +list(REMOVE_DUPLICATES spdlog_COMPONENT_NAMES) +if(DEFINED spdlog_FIND_DEPENDENCY_NAMES) + list(APPEND spdlog_FIND_DEPENDENCY_NAMES fmt) + list(REMOVE_DUPLICATES spdlog_FIND_DEPENDENCY_NAMES) +else() + set(spdlog_FIND_DEPENDENCY_NAMES fmt) +endif() +set(fmt_FIND_MODE "NO_MODULE") + +########### VARIABLES ####################################################################### +############################################################################################# +set(spdlog_PACKAGE_FOLDER_NONE "/home/erris/.conan2/p/b/spdlof53067f4b30d1/p") +set(spdlog_BUILD_MODULES_PATHS_NONE ) + + +set(spdlog_INCLUDE_DIRS_NONE "${spdlog_PACKAGE_FOLDER_NONE}/include") +set(spdlog_RES_DIRS_NONE ) +set(spdlog_DEFINITIONS_NONE "-DSPDLOG_FMT_EXTERNAL" + "-DSPDLOG_COMPILED_LIB") +set(spdlog_SHARED_LINK_FLAGS_NONE ) +set(spdlog_EXE_LINK_FLAGS_NONE ) +set(spdlog_OBJECTS_NONE ) +set(spdlog_COMPILE_DEFINITIONS_NONE "SPDLOG_FMT_EXTERNAL" + "SPDLOG_COMPILED_LIB") +set(spdlog_COMPILE_OPTIONS_C_NONE ) +set(spdlog_COMPILE_OPTIONS_CXX_NONE ) +set(spdlog_LIB_DIRS_NONE "${spdlog_PACKAGE_FOLDER_NONE}/lib") +set(spdlog_BIN_DIRS_NONE ) +set(spdlog_LIBRARY_TYPE_NONE STATIC) +set(spdlog_IS_HOST_WINDOWS_NONE 0) +set(spdlog_LIBS_NONE spdlog) +set(spdlog_SYSTEM_LIBS_NONE pthread) +set(spdlog_FRAMEWORK_DIRS_NONE ) +set(spdlog_FRAMEWORKS_NONE ) +set(spdlog_BUILD_DIRS_NONE ) +set(spdlog_NO_SONAME_MODE_NONE FALSE) + + +# COMPOUND VARIABLES +set(spdlog_COMPILE_OPTIONS_NONE + "$<$:${spdlog_COMPILE_OPTIONS_CXX_NONE}>" + "$<$:${spdlog_COMPILE_OPTIONS_C_NONE}>") +set(spdlog_LINKER_FLAGS_NONE + "$<$,SHARED_LIBRARY>:${spdlog_SHARED_LINK_FLAGS_NONE}>" + "$<$,MODULE_LIBRARY>:${spdlog_SHARED_LINK_FLAGS_NONE}>" + "$<$,EXECUTABLE>:${spdlog_EXE_LINK_FLAGS_NONE}>") + + +set(spdlog_COMPONENTS_NONE spdlog::spdlog) +########### COMPONENT spdlog::spdlog VARIABLES ############################################ + +set(spdlog_spdlog_spdlog_INCLUDE_DIRS_NONE "${spdlog_PACKAGE_FOLDER_NONE}/include") +set(spdlog_spdlog_spdlog_LIB_DIRS_NONE "${spdlog_PACKAGE_FOLDER_NONE}/lib") +set(spdlog_spdlog_spdlog_BIN_DIRS_NONE ) +set(spdlog_spdlog_spdlog_LIBRARY_TYPE_NONE STATIC) +set(spdlog_spdlog_spdlog_IS_HOST_WINDOWS_NONE 0) +set(spdlog_spdlog_spdlog_RES_DIRS_NONE ) +set(spdlog_spdlog_spdlog_DEFINITIONS_NONE "-DSPDLOG_FMT_EXTERNAL" + "-DSPDLOG_COMPILED_LIB") +set(spdlog_spdlog_spdlog_OBJECTS_NONE ) +set(spdlog_spdlog_spdlog_COMPILE_DEFINITIONS_NONE "SPDLOG_FMT_EXTERNAL" + "SPDLOG_COMPILED_LIB") +set(spdlog_spdlog_spdlog_COMPILE_OPTIONS_C_NONE "") +set(spdlog_spdlog_spdlog_COMPILE_OPTIONS_CXX_NONE "") +set(spdlog_spdlog_spdlog_LIBS_NONE spdlog) +set(spdlog_spdlog_spdlog_SYSTEM_LIBS_NONE pthread) +set(spdlog_spdlog_spdlog_FRAMEWORK_DIRS_NONE ) +set(spdlog_spdlog_spdlog_FRAMEWORKS_NONE ) +set(spdlog_spdlog_spdlog_DEPENDENCIES_NONE fmt::fmt) +set(spdlog_spdlog_spdlog_SHARED_LINK_FLAGS_NONE ) +set(spdlog_spdlog_spdlog_EXE_LINK_FLAGS_NONE ) +set(spdlog_spdlog_spdlog_NO_SONAME_MODE_NONE FALSE) + +# COMPOUND VARIABLES +set(spdlog_spdlog_spdlog_LINKER_FLAGS_NONE + $<$,SHARED_LIBRARY>:${spdlog_spdlog_spdlog_SHARED_LINK_FLAGS_NONE}> + $<$,MODULE_LIBRARY>:${spdlog_spdlog_spdlog_SHARED_LINK_FLAGS_NONE}> + $<$,EXECUTABLE>:${spdlog_spdlog_spdlog_EXE_LINK_FLAGS_NONE}> +) +set(spdlog_spdlog_spdlog_COMPILE_OPTIONS_NONE + "$<$:${spdlog_spdlog_spdlog_COMPILE_OPTIONS_CXX_NONE}>" + "$<$:${spdlog_spdlog_spdlog_COMPILE_OPTIONS_C_NONE}>") \ No newline at end of file diff --git a/application/build/spdlogTargets.cmake b/application/build/spdlogTargets.cmake new file mode 100644 index 0000000..482500e --- /dev/null +++ b/application/build/spdlogTargets.cmake @@ -0,0 +1,25 @@ +# Load the debug and release variables +file(GLOB DATA_FILES "${CMAKE_CURRENT_LIST_DIR}/spdlog-*-data.cmake") + +foreach(f ${DATA_FILES}) + include(${f}) +endforeach() + +# Create the targets for all the components +foreach(_COMPONENT ${spdlog_COMPONENT_NAMES} ) + if(NOT TARGET ${_COMPONENT}) + add_library(${_COMPONENT} INTERFACE IMPORTED) + message(${spdlog_MESSAGE_MODE} "Conan: Component target declared '${_COMPONENT}'") + endif() +endforeach() + +if(NOT TARGET spdlog::spdlog) + add_library(spdlog::spdlog INTERFACE IMPORTED) + message(${spdlog_MESSAGE_MODE} "Conan: Target declared 'spdlog::spdlog'") +endif() +# Load the debug and release library finders +file(GLOB CONFIG_FILES "${CMAKE_CURRENT_LIST_DIR}/spdlog-Target-*.cmake") + +foreach(f ${CONFIG_FILES}) + include(${f}) +endforeach() \ No newline at end of file diff --git a/application/compile_commands.json b/application/compile_commands.json new file mode 100644 index 0000000..a7e0b81 --- /dev/null +++ b/application/compile_commands.json @@ -0,0 +1,8 @@ +[ +{ + "directory": "/home/erris/projects/open_engine/application/build", + "command": "/usr/bin/clang++ -D_GLIBCXX_USE_CXX11_ABI=0 -I/home/erris/projects/open_engine/application/include -m64 -stdlib=libstdc++ -g -std=c++20 @CMakeFiles/sand_box.dir/src/sandbox.cpp.o.modmap -o CMakeFiles/sand_box.dir/src/sandbox.cpp.o -c /home/erris/projects/open_engine/application/src/sandbox.cpp", + "file": "/home/erris/projects/open_engine/application/src/sandbox.cpp", + "output": "/home/erris/projects/open_engine/application/build/CMakeFiles/sand_box.dir/src/sandbox.cpp.o" +} +] diff --git a/application/conanfile.txt b/application/conanfile.txt new file mode 100644 index 0000000..e5bf227 --- /dev/null +++ b/application/conanfile.txt @@ -0,0 +1,7 @@ +[requires] +imgui/1.92.5-docking +spdlog/1.16.0 + +[generators] +CMakeDeps +CMakeToolchain diff --git a/application/imgui.ini b/application/imgui.ini new file mode 100644 index 0000000..72570a3 --- /dev/null +++ b/application/imgui.ini @@ -0,0 +1,77 @@ +[Window][Debug##Default] +Pos=60,60 +Size=166,153 +Collapsed=0 + +[Window][Dear ImGui Demo] +Pos=899,10 +Size=358,368 +Collapsed=0 + +[Window][Dear ImGui Style Editor] +Pos=136,23 +Size=353,682 +Collapsed=0 + +[Window][Example: Log] +Pos=431,613 +Size=409,223 +Collapsed=0 +DockId=0x00000006,0 + +[Window][My First Tool] +Pos=181,56 +Size=388,464 +Collapsed=0 + +[Window][DockSpace Demo] +Size=1259,688 +Collapsed=0 + +[Window][Dear ImGui Debug Log] +Pos=1349,371 +Size=644,567 +Collapsed=0 + +[Window][Example: Console] +Pos=0,19 +Size=519,669 +Collapsed=0 +DockId=0x00000003,0 + +[Window][Example: Assets Browser] +Pos=842,613 +Size=326,223 +Collapsed=0 +DockId=0x00000009,0 + +[Window][Example: Property editor] +Pos=0,19 +Size=429,817 +Collapsed=0 +DockId=0x00000005,0 + +[Window][Example: Property editor/##tree_37EC733C] +IsChild=1 +Size=300,782 + +[Table][0xB6880529,2] +RefScale=13 +Column 0 Sort=0v + +[Table][0x2048C668,2] +RefScale=13 +Column 0 Width=4 +Column 1 Weight=2.0000 + +[Docking][Data] +DockSpace ID=0xC0DFADC4 Pos=0,19 Size=1259,669 Split=X Selected=0x5E5F7166 + DockNode ID=0x00000005 Parent=0xC0DFADC4 SizeRef=429,817 Selected=0x256ED220 + DockNode ID=0x0000000A Parent=0xC0DFADC4 SizeRef=1143,817 Split=X + DockNode ID=0x00000003 Parent=0x0000000A SizeRef=519,669 Selected=0x1BCA3180 + DockNode ID=0x00000004 Parent=0x0000000A SizeRef=751,669 Split=Y + DockNode ID=0x00000007 Parent=0x00000004 SizeRef=860,592 CentralNode=1 + DockNode ID=0x00000008 Parent=0x00000004 SizeRef=860,223 Split=X Selected=0x38CCB771 + DockNode ID=0x00000006 Parent=0x00000008 SizeRef=649,223 Selected=0x38CCB771 + DockNode ID=0x00000009 Parent=0x00000008 SizeRef=517,223 Selected=0xD2C213DD + diff --git a/application/include/.nvim_session b/application/include/.nvim_session new file mode 100644 index 0000000..79aa8f5 --- /dev/null +++ b/application/include/.nvim_session @@ -0,0 +1,286 @@ +let SessionLoad = 1 +let s:so_save = &g:so | let s:siso_save = &g:siso | setg so=0 siso=0 | setl so=-1 siso=-1 +let v:this_session=expand(":p") +silent only +silent tabonly +cd ~/projects/open_engine +if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == '' + let s:wipebuf = bufnr('%') +endif +let s:shortmess_save = &shortmess +if &shortmess =~ 'A' + set shortmess=aoOA +else + set shortmess=aoO +endif +badd +1 ~/projects/open_engine +badd +4 ~/projects/open_engine/.clangd +badd +4 ~/projects/open_engine/open_engine/src/open_engine/opengl/opengl_shader.cpp +badd +212 ~/projects/open_engine/application/include/sandbox.hpp +badd +67 ~/projects/open_engine/open_engine/src/open_engine/renderer/shader.cpp +badd +45 ~/projects/open_engine/open_engine/include/open_engine/opengl/opengl_shader.hpp +badd +23 ~/projects/open_engine/open_engine/include/open_engine/input/linux_input.hpp +badd +105 ~/projects/open_engine/open_engine/src/open_engine/input/linux_input.cpp +badd +31 ~/projects/open_engine/open_engine/include/open_engine/input/input_system.hpp +badd +1 ~/projects/open_engine/open_engine/include/open_engine.hpp +badd +29 ~/projects/open_engine/open_engine/include/open_engine/renderer/shader.hpp +badd +3392 ~/projects/open_engine/open_engine/vendor/glad/include/glad/glad.h +badd +3 ~/projects/open_engine/assets/shaders/texture.glsl +badd +39 ~/projects/open_engine/open_engine/include/open_engine/logging.hpp +badd +1 ~/projects/open_engine/open_engine/src/open_engine/application.cpp +badd +1 ~/projects/open_engine/open_engine/include/open_engine/pch.hpp +badd +35 /usr/include/alloca.h +badd +1 ~/projects/open_engine/DAP\ Watches +badd +1 ~/projects/open_engine/DAP\ Stacks +badd +1 ~/projects/open_engine/DAP\ Breakpoints +badd +1 ~/projects/open_engine/DAP\ Scopes +badd +1 ~/projects/open_engine/DAP\ Console +badd +1 ~/projects/open_engine/\[dap-repl-27] +badd +1529 /usr/include/c++/15.2.1/bits/shared_ptr_base.h +badd +40 ~/projects/open_engine/open_engine/CMakeLists.txt +badd +1 ~/projects/open_engine/.envrc +badd +1 ~/projects/open_engine/.project_config +badd +17 ~/projects/open_engine/imgui.ini +badd +1 ~/projects/open_engine/compile_commands.json +badd +28 ~/projects/open_engine/open_engine/include/open_engine/core.hpp +badd +96 ~/projects/open_engine/open_engine/src/open_engine/window/linux_window.cpp +badd +36 ~/projects/open_engine/open_engine/include/open_engine/window/window.hpp +badd +609 /usr/include/GLFW/glfw3.h +badd +650 ~/.conan2/p/b/imguic69fe98538919/p/include/imgui.h +argglobal +%argdel +$argadd ~/projects/open_engine +set stal=2 +tabnew +setlocal\ bufhidden=wipe +tabnew +setlocal\ bufhidden=wipe +tabnew +setlocal\ bufhidden=wipe +tabrewind +edit ~/projects/open_engine/open_engine/include/open_engine/input/input_system.hpp +let s:save_splitbelow = &splitbelow +let s:save_splitright = &splitright +set splitbelow splitright +wincmd _ | wincmd | +vsplit +1wincmd h +wincmd w +wincmd _ | wincmd | +split +1wincmd k +wincmd w +let &splitbelow = s:save_splitbelow +let &splitright = s:save_splitright +wincmd t +let s:save_winminheight = &winminheight +let s:save_winminwidth = &winminwidth +set winminheight=0 +set winheight=1 +set winminwidth=0 +set winwidth=1 +exe 'vert 1resize ' . ((&columns * 124 + 127) / 255) +exe '2resize ' . ((&lines * 29 + 31) / 62) +exe 'vert 2resize ' . ((&columns * 2 + 127) / 255) +exe '3resize ' . ((&lines * 29 + 31) / 62) +exe 'vert 3resize ' . ((&columns * 2 + 127) / 255) +argglobal +balt ~/projects/open_engine/open_engine/src/open_engine/input/linux_input.cpp +setlocal foldmethod=manual +setlocal foldexpr=0 +setlocal foldmarker={{{,}}} +setlocal foldignore=# +setlocal foldlevel=0 +setlocal foldminlines=1 +setlocal foldnestmax=20 +setlocal foldenable +silent! normal! zE +let &fdl = &fdl +let s:l = 28 - ((27 * winheight(0) + 29) / 59) +if s:l < 1 | let s:l = 1 | endif +keepjumps exe s:l +normal! zt +keepjumps 28 +normal! 062| +lcd ~/projects/open_engine +wincmd w +argglobal +if bufexists(fnamemodify("~/projects/open_engine/open_engine/src/open_engine/input/linux_input.cpp", ":p")) | buffer ~/projects/open_engine/open_engine/src/open_engine/input/linux_input.cpp | else | edit ~/projects/open_engine/open_engine/src/open_engine/input/linux_input.cpp | endif +if &buftype ==# 'terminal' + silent file ~/projects/open_engine/open_engine/src/open_engine/input/linux_input.cpp +endif +balt /usr/include/GLFW/glfw3.h +setlocal foldmethod=manual +setlocal foldexpr=0 +setlocal foldmarker={{{,}}} +setlocal foldignore=# +setlocal foldlevel=0 +setlocal foldminlines=1 +setlocal foldnestmax=20 +setlocal foldenable +silent! normal! zE +let &fdl = &fdl +let s:l = 105 - ((27 * winheight(0) + 14) / 29) +if s:l < 1 | let s:l = 1 | endif +keepjumps exe s:l +normal! zt +keepjumps 105 +normal! 05| +lcd ~/projects/open_engine +wincmd w +argglobal +if bufexists(fnamemodify("~/projects/open_engine/open_engine/include/open_engine/input/linux_input.hpp", ":p")) | buffer ~/projects/open_engine/open_engine/include/open_engine/input/linux_input.hpp | else | edit ~/projects/open_engine/open_engine/include/open_engine/input/linux_input.hpp | endif +if &buftype ==# 'terminal' + silent file ~/projects/open_engine/open_engine/include/open_engine/input/linux_input.hpp +endif +balt ~/projects/open_engine/open_engine/include/open_engine/input/input_system.hpp +setlocal foldmethod=manual +setlocal foldexpr=0 +setlocal foldmarker={{{,}}} +setlocal foldignore=# +setlocal foldlevel=0 +setlocal foldminlines=1 +setlocal foldnestmax=20 +setlocal foldenable +silent! normal! zE +let &fdl = &fdl +let s:l = 23 - ((18 * winheight(0) + 14) / 29) +if s:l < 1 | let s:l = 1 | endif +keepjumps exe s:l +normal! zt +keepjumps 23 +normal! 086| +lcd ~/projects/open_engine +wincmd w +exe 'vert 1resize ' . ((&columns * 124 + 127) / 255) +exe '2resize ' . ((&lines * 29 + 31) / 62) +exe 'vert 2resize ' . ((&columns * 2 + 127) / 255) +exe '3resize ' . ((&lines * 29 + 31) / 62) +exe 'vert 3resize ' . ((&columns * 2 + 127) / 255) +tabnext +edit ~/projects/open_engine/open_engine/src/open_engine/application.cpp +let s:save_splitbelow = &splitbelow +let s:save_splitright = &splitright +set splitbelow splitright +wincmd _ | wincmd | +vsplit +1wincmd h +wincmd w +let &splitbelow = s:save_splitbelow +let &splitright = s:save_splitright +wincmd t +let s:save_winminheight = &winminheight +let s:save_winminwidth = &winminwidth +set winminheight=0 +set winheight=1 +set winminwidth=0 +set winwidth=1 +exe 'vert 1resize ' . ((&columns * 126 + 127) / 255) +exe 'vert 2resize ' . ((&columns * 0 + 127) / 255) +argglobal +balt ~/projects/open_engine/open_engine/src/open_engine/window/linux_window.cpp +setlocal foldmethod=manual +setlocal foldexpr=0 +setlocal foldmarker={{{,}}} +setlocal foldignore=# +setlocal foldlevel=0 +setlocal foldminlines=1 +setlocal foldnestmax=20 +setlocal foldenable +silent! normal! zE +let &fdl = &fdl +let s:l = 49 - ((33 * winheight(0) + 29) / 59) +if s:l < 1 | let s:l = 1 | endif +keepjumps exe s:l +normal! zt +keepjumps 49 +normal! 044| +lcd ~/projects/open_engine +wincmd w +argglobal +if bufexists(fnamemodify("~/projects/open_engine/open_engine/src/open_engine/window/linux_window.cpp", ":p")) | buffer ~/projects/open_engine/open_engine/src/open_engine/window/linux_window.cpp | else | edit ~/projects/open_engine/open_engine/src/open_engine/window/linux_window.cpp | endif +if &buftype ==# 'terminal' + silent file ~/projects/open_engine/open_engine/src/open_engine/window/linux_window.cpp +endif +balt ~/projects/open_engine/open_engine/src/open_engine/application.cpp +setlocal foldmethod=manual +setlocal foldexpr=0 +setlocal foldmarker={{{,}}} +setlocal foldignore=# +setlocal foldlevel=0 +setlocal foldminlines=1 +setlocal foldnestmax=20 +setlocal foldenable +silent! normal! zE +let &fdl = &fdl +let s:l = 97 - ((29 * winheight(0) + 29) / 59) +if s:l < 1 | let s:l = 1 | endif +keepjumps exe s:l +normal! zt +keepjumps 97 +normal! 044| +lcd ~/projects/open_engine +wincmd w +exe 'vert 1resize ' . ((&columns * 126 + 127) / 255) +exe 'vert 2resize ' . ((&columns * 0 + 127) / 255) +tabnext +edit ~/projects/open_engine/application/include/sandbox.hpp +wincmd t +let s:save_winminheight = &winminheight +let s:save_winminwidth = &winminwidth +set winminheight=0 +set winheight=1 +set winminwidth=0 +set winwidth=1 +argglobal +setlocal foldmethod=manual +setlocal foldexpr=0 +setlocal foldmarker={{{,}}} +setlocal foldignore=# +setlocal foldlevel=0 +setlocal foldminlines=1 +setlocal foldnestmax=20 +setlocal foldenable +silent! normal! zE +let &fdl = &fdl +let s:l = 212 - ((29 * winheight(0) + 29) / 59) +if s:l < 1 | let s:l = 1 | endif +keepjumps exe s:l +normal! zt +keepjumps 212 +normal! 055| +lcd ~/projects/open_engine/application/include +tabnext +edit ~/projects/open_engine/assets/shaders/texture.glsl +argglobal +setlocal foldmethod=manual +setlocal foldexpr=0 +setlocal foldmarker={{{,}}} +setlocal foldignore=# +setlocal foldlevel=0 +setlocal foldminlines=1 +setlocal foldnestmax=20 +setlocal foldenable +silent! normal! zE +let &fdl = &fdl +let s:l = 6 - ((5 * winheight(0) + 29) / 59) +if s:l < 1 | let s:l = 1 | endif +keepjumps exe s:l +normal! zt +keepjumps 6 +normal! 0 +lcd ~/projects/open_engine +tabnext 3 +set stal=1 +if exists('s:wipebuf') && len(win_findbuf(s:wipebuf)) == 0 && getbufvar(s:wipebuf, '&buftype') isnot# 'terminal' + silent exe 'bwipe ' . s:wipebuf +endif +unlet! s:wipebuf +set winheight=1 winwidth=20 +let &shortmess = s:shortmess_save +let s:sx = expand(":p:r")."x.vim" +if filereadable(s:sx) + exe "source " . fnameescape(s:sx) +endif +let &g:so = s:so_save | let &g:siso = s:siso_save +set hlsearch +doautoall SessionLoadPost +unlet SessionLoad +" vim: set ft=vim : diff --git a/application/include/sandbox.hpp b/application/include/sandbox.hpp new file mode 100755 index 0000000..d257f58 --- /dev/null +++ b/application/include/sandbox.hpp @@ -0,0 +1,251 @@ +#ifndef SANDBOX_HPP +#define SANDBOX_HPP + +#include + +#include +#include + +#include +#include +#include +#include +#include +#include + +class SandboxLayer : public OpenEngine::Layer +{ + public: + OpenEngine::Ref CreateSquare() + { + OpenEngine::Ref square_vertex_array(OpenEngine::VertexArray::Create()); + + float square_vertices[5 * 4] = { + -0.5f, -0.5f, 0.0f, 0.0f, 0.0f, + 0.5f, -0.5f, 0.0f, 1.0f, 0.0f, + 0.5f, 0.5f, 0.0f, 1.0f, 1.0f, + -0.5f, 0.5f, 0.0f, 0.0f, 1.0f, + }; + + OpenEngine::Ref vertex_buffer; + vertex_buffer.reset(OpenEngine::VertexBuffer::Create(square_vertices, sizeof(square_vertices))); + + OpenEngine::BufferLayout layout = { + { OpenEngine::ShaderDataType::Float3, "a_Position" }, + { OpenEngine::ShaderDataType::Float2, "a_TextCoord" } + }; + + vertex_buffer->SetLayout(layout); + square_vertex_array->AddVertexBuffer(vertex_buffer); + + uint32_t indices[6] = { 0, 1, 2, 2, 3, 0 }; + OpenEngine::Ref index_buffer; + index_buffer.reset(OpenEngine::IndexBuffer::Create(indices, sizeof(indices) / sizeof(uint32_t))); + + square_vertex_array->SetIndexBuffer(index_buffer); + + return square_vertex_array; + } + + SandboxLayer() + : Layer("Sandbox") + { + //vertex_array.reset(OpenEngine::VertexArray::Create()); + square = CreateSquare(); + + //float vertices[3 * 7] = { + // -0.5f, -0.5f, 0.0f, 0.8f, 0.2f, 0.8f, 1.0f, + // 0.5f, -0.5f, 0.0f, 1.0f, 1.0f, 1.0f, 1.0f, + // 0.0f, 0.5f, 0.0f, 0.8f, 0.8f, 0.2f, 1.0f + //}; + + //OpenEngine::Ref vertex_buffer; + //vertex_buffer.reset(OpenEngine::VertexBuffer::Create(vertices, sizeof(vertices))); + + //OpenEngine::BufferLayout layout = { + // {OpenEngine::ShaderDataType::Float3, "a_Position"}, + // {OpenEngine::ShaderDataType::Float4, "a_Color"} + //}; + + //vertex_buffer->SetLayout(layout); + //vertex_array->AddVertexBuffer(vertex_buffer); + + //uint32_t indices[3] = { 0, 1, 2 }; + //OpenEngine::Ref index_buffer; + //index_buffer.reset(OpenEngine::IndexBuffer::Create(indices, sizeof(indices) / sizeof(uint32_t))); + + //shader = OpenEngine::Shader::Create("./assets/shaders/texture.glsl"); + //vertex_array->SetIndexBuffer(index_buffer); + + //texture_shader = OpenEngine::Shader::Create("./assets/shaders/texture.glsl"); + auto texture_shader = shader_library.Load("./assets/shaders/texture.glsl"); + texture = OpenEngine::Texture2D::Create("./assets/textures/container.jpg"); + face = OpenEngine::Texture2D::Create("./assets/textures/awesomeface.png"); + + std::dynamic_pointer_cast(texture_shader)->Bind(); + std::dynamic_pointer_cast(texture_shader)->SetInt("u_Texture", 0); + + for (auto joystick : OpenEngine::Input::GetJoystickList()) + OE_TRACE("Joystick {}: {}", joystick.first, joystick.second); + + bindings = { + {"fwd/bckwd", 1}, + {"right/left", 0}, + {"yaw", 2} + }; + } + + void moveCamera() + { + if (current_joystick != -1) { + float raw_axis = OpenEngine::Input::GetJoystickAxis(current_joystick, bindings["yaw"]); + float rotation = remap(raw_axis, -1, 1, -180, 180); + camera.GetCamera().SetRotation(rotation); + } + } + + void moveSquare(glm::vec3& position) + { + float velocity = 1 * OpenEngine::Time::Get().DeltaTime(); + if (OpenEngine::Input::IsKeyPressed(OE_KEY_I)) + position.y += velocity; + if (OpenEngine::Input::IsKeyPressed(OE_KEY_Y)) + position.x -= velocity; + if (OpenEngine::Input::IsKeyPressed(OE_KEY_U)) + position.y -= velocity; + if (OpenEngine::Input::IsKeyPressed(OE_KEY_O)) + position.x += velocity; + } + + void moveSquareF(glm::vec3& position) + { + if (current_joystick != -1) { + float test = OpenEngine::Input::GetJoystickAxis(current_joystick, bindings["fwd/bckwd"]); + position.y = test; + float test2 = OpenEngine::Input::GetJoystickAxis(current_joystick, bindings["right/left"]); + position.x = test2; + } + } + + float remap(float value, float minInput, float maxInput, float minOutput, float maxOutput) { + // 1. Normalize the input to a 0.0 - 1.0 range + float t = (value - minInput) / (maxInput - minInput); + + // 2. Use glm::mix to interpolate between the output range + return glm::mix(minOutput, maxOutput, t); + } + + void OnUpdate() override + { + static glm::mat4 scale = glm::scale(glm::mat4(1.0f), glm::vec3(1.0f)); + + OpenEngine::RenderCommand::SetClearColor({1.0f, 0.0f, 1.0f, 1.0f}); + OpenEngine::RenderCommand::Clear(); + + OpenEngine::Renderer::BeginScene(camera.GetCamera()); + + //shader->Bind(); + //vertex_array->Bind(); + + moveCamera(); + + //glm::mat4 transform = glm::translate(glm::mat4(1.0f), triangle_position); + //OpenEngine::Renderer::Submit(shader, vertex_array, transform); + + auto texture_shader = shader_library.Get("texture"); + + texture_shader->Bind(); + texture->Bind(); + glm::mat4 square_transform = glm::translate(glm::mat4(1.0f), square_pos) * scale; + OpenEngine::Renderer::Submit(texture_shader, square, square_transform); + moveSquare(square_pos); + moveSquareF(square_pos); + + face->Bind(); + OpenEngine::Renderer::Submit(texture_shader, square, square_transform); + + OpenEngine::Renderer::EndScene(); + + //if (OpenEngine::Input::IsKeyPressed(OE_KEY_ESCAPE)) + // OpenEngine::Application::Get().StopRunning(); + camera.OnUpdate(); + } + + void OnEvent(OpenEngine::Event& event) override + { + OpenEngine::EventDispatcher dispatcher(event); + dispatcher.Dispatch(BIND_EVENT_FN(SandboxLayer::QuitRunning)); + + camera.OnEvent(event); + } + + bool QuitRunning(OpenEngine::KeyPressedEvent& event) + { + if (event.GetKeyCode() == OE_KEY_ESCAPE) { + OpenEngine::Application::Get().StopRunning(); + return true; + } + + return false; + } + + void OnImGuiRender() override + { + static std::vector axis_labels; + static std::vector axis_pointers; + + if (axis_labels.empty()) { + axis_labels.reserve(MAX_AXIS); + axis_pointers.reserve(MAX_AXIS); + + for (int i = 0; i < MAX_AXIS; ++i) { + axis_labels.push_back("Axis " + std::to_string(i + 1)); + axis_pointers.push_back(axis_labels.back().c_str()); + } + } + + auto joysticks = OpenEngine::Input::GetJoystickList(); + ImGui::Begin("Settings"); + ImGui::ColorEdit3("Square Color", glm::value_ptr(square_color)); + ImGui::TextColored(ImVec4(1,1,0,1), "Important Stuff"); + ImGui::BeginChild("Child"); + ImGui::Text("-1"); + ImGui::RadioButton("None", ¤t_joystick, -1); + for (const auto& joystick : joysticks) { + ImGui::PushID(joystick.first); + ImGui::Text("%d", joystick.first); + ImGui::RadioButton(joystick.second.c_str(), ¤t_joystick, joystick.first); + ImGui::PopID(); + } + ImGui::Text("Bindings"); + for (auto& binding : bindings) + ImGui::Combo(binding.first.c_str(), (int*)&binding.second, axis_pointers.data(), (int)axis_pointers.size()); + ImGui::EndChild(); + ImGui::End(); + } + + OpenEngine::ShaderLibrary shader_library; + //OpenEngine::Ref shader; + //OpenEngine::OrthographicCamera camera = {-1.6f, 1.6f, -0.9f, 0.9f}; + OpenEngine::OrthographicCameraController camera = {1280.0f / 1440.0f, 1.0f}; + //OpenEngine::Ref vertex_array; + OpenEngine::Ref square; + + glm::vec3 triangle_position{0.0f}; + glm::vec3 square_pos{0.0f}; + glm::vec3 square_color{0.0f}; + + OpenEngine::Ref texture, face; + //OpenEngine::Ref texture_shader; + int current_joystick = -1; + std::unordered_map bindings; +}; + +class Sandbox : public OpenEngine::Application +{ + public: + Sandbox(); + ~Sandbox(); +}; + +#endif // SANDBOX_HPP diff --git a/application/justfile b/application/justfile new file mode 100755 index 0000000..91db711 --- /dev/null +++ b/application/justfile @@ -0,0 +1,31 @@ +default: build_and_run + +alias c := config +alias b := build +alias r := run +alias br := build_and_run +alias cln := clean +alias v := valgrind + +run: + @echo Running ${BINARY_NAME} + @./build/${BINARY_NAME} + +build: + time cmake --build build --config ${BUILD_TYPE} + +build_and_run: build + just run + +clean: + rm build -rf + +config: + @echo Configuring project with build type: ${BUILD_TYPE} + cmake -S . -G Ninja -B build \ + -DCMAKE_BUILD_TYPE=${BUILD_TYPE} \ + -DCMAKE_EXPORT_COMPILE_COMMANDS=${COMPILE_COMMANDS} \ + ; cp build/compile_commands.json . + +valgrind: build + valgrind --track-origins=yes ./build/${BINARY_NAME} diff --git a/application/lib/libglad.a b/application/lib/libglad.a new file mode 100644 index 0000000..71007d2 Binary files /dev/null and b/application/lib/libglad.a differ diff --git a/application/lib/libopen_engine.a b/application/lib/libopen_engine.a new file mode 100644 index 0000000..932fe71 Binary files /dev/null and b/application/lib/libopen_engine.a differ diff --git a/application/src/sandbox.cpp b/application/src/sandbox.cpp new file mode 100644 index 0000000..6f26339 --- /dev/null +++ b/application/src/sandbox.cpp @@ -0,0 +1,16 @@ +#include + +Sandbox::Sandbox() +{ + PushLayer(new SandboxLayer()); +} + +Sandbox::~Sandbox() +{ +} + +OpenEngine::Application* OpenEngine::CreateApplication() +{ + OE_INFO("Sandbox Starting..."); + return new Sandbox(); +} diff --git a/conanfile.txt b/conanfile.txt new file mode 100644 index 0000000..e5bf227 --- /dev/null +++ b/conanfile.txt @@ -0,0 +1,7 @@ +[requires] +imgui/1.92.5-docking +spdlog/1.16.0 + +[generators] +CMakeDeps +CMakeToolchain diff --git a/open_engine/.envrc b/open_engine/.envrc new file mode 100644 index 0000000..c6a98b9 --- /dev/null +++ b/open_engine/.envrc @@ -0,0 +1,8 @@ +source ../.envrc + +export BINARY_NAME=open_engine +export BUILD_TYPE=Debug +export PROJECT_NAME=open_engine + +##export CMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake +export imgui_DIR=./build diff --git a/open_engine/.luarc.json b/open_engine/.luarc.json new file mode 100644 index 0000000..40538cb --- /dev/null +++ b/open_engine/.luarc.json @@ -0,0 +1,5 @@ +{ + "workspace.library": ["./resources/lua_library/"], + "runtime.version": "Lua 5.3", + "hint.enable": true +} diff --git a/open_engine/.nvim_session b/open_engine/.nvim_session new file mode 100644 index 0000000..e34a5b9 --- /dev/null +++ b/open_engine/.nvim_session @@ -0,0 +1,54 @@ +let SessionLoad = 1 +let s:so_save = &g:so | let s:siso_save = &g:siso | setg so=0 siso=0 | setl so=-1 siso=-1 +let v:this_session=expand(":p") +silent only +silent tabonly +cd ~/projects/open_engine/open_engine +if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == '' + let s:wipebuf = bufnr('%') +endif +let s:shortmess_save = &shortmess +if &shortmess =~ 'A' + set shortmess=aoOA +else + set shortmess=aoO +endif +badd +1 .luarc.json +argglobal +%argdel +$argadd .luarc.json +edit .luarc.json +argglobal +setlocal foldmethod=manual +setlocal foldexpr=0 +setlocal foldmarker={{{,}}} +setlocal foldignore=# +setlocal foldlevel=0 +setlocal foldminlines=1 +setlocal foldnestmax=20 +setlocal foldenable +silent! normal! zE +let &fdl = &fdl +let s:l = 2 - ((1 * winheight(0) + 30) / 60) +if s:l < 1 | let s:l = 1 | endif +keepjumps exe s:l +normal! zt +keepjumps 2 +normal! 0 +tabnext 1 +if exists('s:wipebuf') && len(win_findbuf(s:wipebuf)) == 0 && getbufvar(s:wipebuf, '&buftype') isnot# 'terminal' + silent exe 'bwipe ' . s:wipebuf +endif +unlet! s:wipebuf +set winheight=1 winwidth=20 +let &shortmess = s:shortmess_save +let s:sx = expand(":p:r")."x.vim" +if filereadable(s:sx) + exe "source " . fnameescape(s:sx) +endif +let &g:so = s:so_save | let &g:siso = s:siso_save +set hlsearch +nohlsearch +doautoall SessionLoadPost +unlet SessionLoad +" vim: set ft=vim : diff --git a/open_engine/CMakeLists.txt b/open_engine/CMakeLists.txt new file mode 100644 index 0000000..0473123 --- /dev/null +++ b/open_engine/CMakeLists.txt @@ -0,0 +1,54 @@ +cmake_minimum_required(VERSION 3.28) + +set(CMAKE_CXX_STANDARD 20) + +set(PROJECT_EXECUTABLE_NAME open_engine) + +project(OpenEngine + VERSION 0.0.1 +) + +add_definitions( -DOE_ENABLE_ASSERTS ) + +find_package(imgui REQUIRED) + +file(GLOB_RECURSE SRC_FILES "src/*.cpp") +add_library(${PROJECT_EXECUTABLE_NAME} STATIC + ${SRC_FILES} + "vendor/stb_image/stb_image.cpp" +) + +target_precompile_headers(${PROJECT_EXECUTABLE_NAME} PRIVATE + include/open_engine/pch.hpp +) + +target_include_directories(${PROJECT_EXECUTABLE_NAME} PRIVATE + "${CMAKE_CURRENT_SOURCE_DIR}/include/open_engine" + "${CMAKE_CURRENT_SOURCE_DIR}/vendor/stb_image" +) + +target_include_directories(${PROJECT_EXECUTABLE_NAME} PUBLIC + "${CMAKE_CURRENT_SOURCE_DIR}/include" + "/home/erris/.conan2/p/b/imguic69fe98538919/p/include" +) + +#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address -fno-omit-frame-pointer") +#set(CMAKE_LINKER_FLAGS "${CMAKE_LINKER_FLAGS} -fsanitize=address") + +target_link_libraries(${PROJECT_EXECUTABLE_NAME} PUBLIC + imgui::imgui + spdlog + glad + glfw + glm + dl + X11 +) + +#target_link_directories(${PROJECT_EXECUTABLE_NAME} PRIVATE +# ${PROJECT_SOURCE_DIR}/lib +#) + +add_subdirectory(vendor/glad + ./lib +) diff --git a/open_engine/assets/lua_library/lib.lua b/open_engine/assets/lua_library/lib.lua new file mode 100644 index 0000000..3e13ce8 --- /dev/null +++ b/open_engine/assets/lua_library/lib.lua @@ -0,0 +1 @@ +---@meta diff --git a/open_engine/assets/shaders/fragment.frag b/open_engine/assets/shaders/fragment.frag new file mode 100644 index 0000000..bf9b7d1 --- /dev/null +++ b/open_engine/assets/shaders/fragment.frag @@ -0,0 +1,12 @@ +#version 330 core + +layout(location = 0) out vec4 color; + +in vec3 v_Position; +in vec4 v_Color; + +void main() +{ + color = vec4(v_Position * 0.5 + 0.5, 1.0f); + color = v_Color; +} diff --git a/open_engine/assets/shaders/fragment.frag.old b/open_engine/assets/shaders/fragment.frag.old new file mode 100644 index 0000000..6539061 --- /dev/null +++ b/open_engine/assets/shaders/fragment.frag.old @@ -0,0 +1,148 @@ +#version 330 core +out vec4 FragColor; + +struct Material { + sampler2D diffuse; + sampler2D specular; + float shininess; +}; + +struct DirLight { + vec3 direction; + + vec3 ambient; + vec3 diffuse; + vec3 specular; +}; + +struct PointLight { + vec3 position; + + float constant; + float linear; + float quadratic; + + vec3 ambient; + vec3 diffuse; + vec3 specular; +}; + +struct SpotLight { + vec3 position; + vec3 direction; + float cutOff; + float outerCutOff; + + float constant; + float linear; + float quadratic; + + vec3 ambient; + vec3 diffuse; + vec3 specular; +}; + +#define NR_POINT_LIGHTS 4 + +in vec3 FragPos; +in vec3 Normal; +in vec2 TexCoords; + +uniform vec3 viewPos; +uniform DirLight dirLight; +uniform PointLight pointLights[NR_POINT_LIGHTS]; +uniform SpotLight spotLight; +uniform Material material; + +// function prototypes +vec3 CalcDirLight(DirLight light, vec3 normal, vec3 viewDir); +vec3 CalcPointLight(PointLight light, vec3 normal, vec3 fragPos, vec3 viewDir); +vec3 CalcSpotLight(SpotLight light, vec3 normal, vec3 fragPos, vec3 viewDir); + +void main() +{ + // properties + vec3 norm = normalize(Normal); + vec3 viewDir = normalize(viewPos - FragPos); + + // == ===================================================== + // Our lighting is set up in 3 phases: directional, point lights and an optional flashlight + // For each phase, a calculate function is defined that calculates the corresponding color + // per lamp. In the main() function we take all the calculated colors and sum them up for + // this fragment's final color. + // == ===================================================== + // phase 1: directional lighting + //vec3 result = CalcDirLight(dirLight, norm, viewDir); + vec3 result; + // phase 2: point lights + for(int i = 0; i < NR_POINT_LIGHTS; i++) + result += CalcPointLight(pointLights[0], norm, FragPos, viewDir); + // phase 3: spot light + //result += CalcSpotLight(spotLight, norm, FragPos, viewDir); + + FragColor = vec4(result, 1.0); +} + +// calculates the color when using a directional light. +vec3 CalcDirLight(DirLight light, vec3 normal, vec3 viewDir) +{ + vec3 lightDir = normalize(-light.direction); + // diffuse shading + float diff = max(dot(normal, lightDir), 0.0); + // specular shading + vec3 reflectDir = reflect(-lightDir, normal); + float spec = pow(max(dot(viewDir, reflectDir), 0.0), material.shininess); + // combine results + vec3 ambient = light.ambient * vec3(texture(material.diffuse, TexCoords)); + vec3 diffuse = light.diffuse * diff * vec3(texture(material.diffuse, TexCoords)); + vec3 specular = light.specular * spec * vec3(texture(material.specular, TexCoords)); + return (ambient + diffuse + specular); +} + +// calculates the color when using a point light. +vec3 CalcPointLight(PointLight light, vec3 normal, vec3 fragPos, vec3 viewDir) +{ + vec3 lightDir = normalize(light.position - fragPos); + // diffuse shading + float diff = max(dot(normal, lightDir), 0.0); + // specular shading + vec3 reflectDir = reflect(-lightDir, normal); + float spec = pow(max(dot(viewDir, reflectDir), 0.0), material.shininess); + // attenuation + float distance = length(light.position - fragPos); + float attenuation = 1.0 / (light.constant + light.linear * distance + light.quadratic * (distance * distance)); + // combine results + vec3 ambient = light.ambient * vec3(texture(material.diffuse, TexCoords)); + vec3 diffuse = light.diffuse * diff * vec3(texture(material.diffuse, TexCoords)); + vec3 specular = light.specular * spec * vec3(texture(material.specular, TexCoords)); + ambient *= attenuation; + diffuse *= attenuation; + specular *= attenuation; + return (ambient + diffuse + specular); +} + +// calculates the color when using a spot light. +vec3 CalcSpotLight(SpotLight light, vec3 normal, vec3 fragPos, vec3 viewDir) +{ + vec3 lightDir = normalize(light.position - fragPos); + // diffuse shading + float diff = max(dot(normal, lightDir), 0.0); + // specular shading + vec3 reflectDir = reflect(-lightDir, normal); + float spec = pow(max(dot(viewDir, reflectDir), 0.0), material.shininess); + // attenuation + float distance = length(light.position - fragPos); + float attenuation = 1.0 / (light.constant + light.linear * distance + light.quadratic * (distance * distance)); + // spotlight intensity + float theta = dot(lightDir, normalize(-light.direction)); + float epsilon = light.cutOff - light.outerCutOff; + float intensity = clamp((theta - light.outerCutOff) / epsilon, 0.0, 1.0); + // combine results + vec3 ambient = light.ambient * vec3(texture(material.diffuse, TexCoords)); + vec3 diffuse = light.diffuse * diff * vec3(texture(material.diffuse, TexCoords)); + vec3 specular = light.specular * spec * vec3(texture(material.specular, TexCoords)); + ambient *= attenuation * intensity; + diffuse *= attenuation * intensity; + specular *= attenuation * intensity; + return (ambient + diffuse + specular); +} diff --git a/open_engine/assets/shaders/light.frag b/open_engine/assets/shaders/light.frag new file mode 100644 index 0000000..81ea7d7 --- /dev/null +++ b/open_engine/assets/shaders/light.frag @@ -0,0 +1,8 @@ +#version 330 core +out vec4 FragColor; + +uniform vec3 objectColor; + +void main() { + FragColor = vec4(objectColor, 1.0); +} diff --git a/open_engine/assets/shaders/light.vert b/open_engine/assets/shaders/light.vert new file mode 100644 index 0000000..3ea8b2a --- /dev/null +++ b/open_engine/assets/shaders/light.vert @@ -0,0 +1,11 @@ +#version 330 core + +layout (location = 0) in vec3 aPos; + +uniform mat4 model; +uniform mat4 view; +uniform mat4 projection; + +void main() { + gl_Position = projection * view * model * vec4(aPos, 1.0); +} diff --git a/open_engine/assets/shaders/vertex.vert b/open_engine/assets/shaders/vertex.vert new file mode 100644 index 0000000..8c23b5c --- /dev/null +++ b/open_engine/assets/shaders/vertex.vert @@ -0,0 +1,14 @@ +#version 330 core + +layout(location = 0) in vec3 a_Position; +layout(location = 1) in vec4 a_Color; + +out vec3 v_Position; +out vec4 v_Color; + +void main() +{ + v_Position = a_Position; + v_Color = a_Color; + gl_Position = vec4(a_Position, 1.0); +} diff --git a/open_engine/assets/shaders/vertex.vert.old b/open_engine/assets/shaders/vertex.vert.old new file mode 100644 index 0000000..6fe54ce --- /dev/null +++ b/open_engine/assets/shaders/vertex.vert.old @@ -0,0 +1,21 @@ +#version 330 core +layout (location = 0) in vec3 aPos; +layout (location = 1) in vec3 aNormal; +layout (location = 2) in vec2 aTexCoords; + +out vec3 FragPos; +out vec3 Normal; +out vec2 TexCoords; + +uniform mat4 model; +uniform mat4 view; +uniform mat4 projection; + +void main() +{ + FragPos = vec3(model * vec4(aPos, 1.0)); + Normal = mat3(transpose(inverse(model))) * aNormal; + TexCoords = aTexCoords; + + gl_Position = projection * view * vec4(FragPos, 1.0); +} diff --git a/open_engine/assets/textures/awesomeface.png b/open_engine/assets/textures/awesomeface.png new file mode 100644 index 0000000..9840caf Binary files /dev/null and b/open_engine/assets/textures/awesomeface.png differ diff --git a/open_engine/assets/textures/container.jpg b/open_engine/assets/textures/container.jpg new file mode 100644 index 0000000..d07bee4 Binary files /dev/null and b/open_engine/assets/textures/container.jpg differ diff --git a/open_engine/assets/textures/container2.png b/open_engine/assets/textures/container2.png new file mode 100644 index 0000000..596e8da Binary files /dev/null and b/open_engine/assets/textures/container2.png differ diff --git a/open_engine/assets/textures/container2_specular.png b/open_engine/assets/textures/container2_specular.png new file mode 100644 index 0000000..681bf6e Binary files /dev/null and b/open_engine/assets/textures/container2_specular.png differ diff --git a/open_engine/assets/textures/container2_specular2.png b/open_engine/assets/textures/container2_specular2.png new file mode 100644 index 0000000..35e9411 Binary files /dev/null and b/open_engine/assets/textures/container2_specular2.png differ diff --git a/open_engine/compile_commands.json b/open_engine/compile_commands.json new file mode 100644 index 0000000..9be8f2b --- /dev/null +++ b/open_engine/compile_commands.json @@ -0,0 +1,176 @@ +[ +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -fpch-instantiate-templates -Xclang -emit-pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx -x c++-header -o CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -c /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.cxx", + "file": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.cxx", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/application.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/application.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/application.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/application.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/application.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/core/time.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/core/time.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/core/time.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/core/time.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/core/time.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/events/application_event.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/events/application_event.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/events/application_event.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/events/application_event.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/events/application_event.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/events/key_event.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/events/key_event.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/events/key_event.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/events/key_event.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/events/key_event.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/events/mouse_event.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/events/mouse_event.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/events/mouse_event.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/events/mouse_event.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/events/mouse_event.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/imgui/imgui_layer.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/imgui/imgui_layer.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/imgui/imgui_layer.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/imgui/imgui_layer.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/imgui/imgui_layer.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/input/linux_input.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/input/linux_input.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/input/linux_input.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/input/linux_input.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/input/linux_input.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/layer.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/layer.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/layer.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/layer.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/layer.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/layer_stack.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/layer_stack.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/layer_stack.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/layer_stack.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/layer_stack.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/logging.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/logging.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/logging.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/logging.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/logging.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/opengl/imgui_build.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/opengl/imgui_build.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/opengl/imgui_build.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/opengl/imgui_build.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/opengl/imgui_build.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/opengl/imgui_glfw.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/opengl/imgui_glfw.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/opengl/imgui_glfw.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/opengl/imgui_glfw.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/opengl/imgui_glfw.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/opengl/imgui_opengl.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/opengl/imgui_opengl.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/opengl/imgui_opengl.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/opengl/imgui_opengl.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/opengl/imgui_opengl.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/opengl/opengl_buffer.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/opengl/opengl_buffer.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/opengl/opengl_buffer.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/opengl/opengl_buffer.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/opengl/opengl_buffer.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/opengl/opengl_context.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/opengl/opengl_context.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/opengl/opengl_context.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/opengl/opengl_context.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/opengl/opengl_context.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/opengl/opengl_renderer_api.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/opengl/opengl_renderer_api.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/opengl/opengl_renderer_api.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/opengl/opengl_renderer_api.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/opengl/opengl_renderer_api.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/opengl/opengl_shader.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/opengl/opengl_shader.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/opengl/opengl_shader.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/opengl/opengl_shader.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/opengl/opengl_shader.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/opengl/opengl_texture.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/opengl/opengl_texture.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/opengl/opengl_texture.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/opengl/opengl_texture.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/opengl/opengl_texture.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/opengl/opengl_vertex_array.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/opengl/opengl_vertex_array.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/opengl/opengl_vertex_array.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/opengl/opengl_vertex_array.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/opengl/opengl_vertex_array.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/orthographic_camera.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/orthographic_camera.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/orthographic_camera.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/orthographic_camera.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/orthographic_camera.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/renderer/buffer.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/renderer/buffer.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/renderer/buffer.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/renderer/buffer.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/renderer/buffer.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/renderer/renderer.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/renderer/renderer.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/renderer/renderer.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/renderer/renderer.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/renderer/renderer.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/renderer/shader.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/renderer/shader.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/renderer/shader.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/renderer/shader.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/renderer/shader.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/renderer/texture.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/renderer/texture.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/renderer/texture.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/renderer/texture.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/renderer/texture.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/renderer/vertex_array.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/renderer/vertex_array.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/renderer/vertex_array.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/renderer/vertex_array.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/renderer/vertex_array.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/src/open_engine/window/linux_window.cpp.o.modmap -o CMakeFiles/open_engine.dir/src/open_engine/window/linux_window.cpp.o -c /home/erris/projects/open_engine/open_engine/src/open_engine/window/linux_window.cpp", + "file": "/home/erris/projects/open_engine/open_engine/src/open_engine/window/linux_window.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/src/open_engine/window/linux_window.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang++ -DFMT_SHARED -DOE_ENABLE_ASSERTS -DSPDLOG_COMPILED_LIB -DSPDLOG_FMT_EXTERNAL -DSPDLOG_SHARED_LIB -I/home/erris/projects/open_engine/open_engine/include/open_engine -I/home/erris/projects/open_engine/open_engine/vendor/stb_image -I/home/erris/projects/open_engine/open_engine/include -I/home/erris/.conan2/p/b/imguic69fe98538919/p/include -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -std=gnu++20 -Winvalid-pch -Xclang -include-pch -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx.pch -Xclang -include -Xclang /home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/cmake_pch.hxx @CMakeFiles/open_engine.dir/vendor/stb_image/stb_image.cpp.o.modmap -o CMakeFiles/open_engine.dir/vendor/stb_image/stb_image.cpp.o -c /home/erris/projects/open_engine/open_engine/vendor/stb_image/stb_image.cpp", + "file": "/home/erris/projects/open_engine/open_engine/vendor/stb_image/stb_image.cpp", + "output": "/home/erris/projects/open_engine/open_engine/build/CMakeFiles/open_engine.dir/vendor/stb_image/stb_image.cpp.o" +}, +{ + "directory": "/home/erris/projects/open_engine/open_engine/build", + "command": "/usr/bin/clang -DOE_ENABLE_ASSERTS -I/home/erris/projects/open_engine/open_engine/vendor/glad/include -g -o lib/CMakeFiles/glad.dir/src/glad/glad.c.o -c /home/erris/projects/open_engine/open_engine/vendor/glad/src/glad/glad.c", + "file": "/home/erris/projects/open_engine/open_engine/vendor/glad/src/glad/glad.c", + "output": "/home/erris/projects/open_engine/open_engine/build/lib/CMakeFiles/glad.dir/src/glad/glad.c.o" +} +] diff --git a/open_engine/conanfile.txt b/open_engine/conanfile.txt new file mode 100644 index 0000000..56e8e79 --- /dev/null +++ b/open_engine/conanfile.txt @@ -0,0 +1,6 @@ +[requires] +imgui/1.92.5-docking + +[generators] +CMakeDeps +CMakeToolchain diff --git a/open_engine/include/open_engine.hpp b/open_engine/include/open_engine.hpp new file mode 100644 index 0000000..678fe70 --- /dev/null +++ b/open_engine/include/open_engine.hpp @@ -0,0 +1,23 @@ +#ifndef OPEN_ENGINE_HPP +#define OPEN_ENGINE_HPP + +#include "open_engine/application.hpp" +#include "open_engine/logging.hpp" +#include "open_engine/events/key_event.hpp" +#include "open_engine/imgui/imgui_layer.hpp" +#include "open_engine/renderer/render_command.hpp" +#include "open_engine/renderer/renderer.hpp" +#include "open_engine/core/time.hpp" +#include "open_engine/input/input_system.hpp" +#include "open_engine/input/keycodes.hpp" +#include "open_engine/renderer/buffer.hpp" +#include "open_engine/renderer/shader.hpp" +#include "open_engine/opengl/opengl_shader.hpp" +#include "open_engine/renderer/texture.hpp" +#include "open_engine/orthographic_camera_controller.hpp" + +// Entry Point ------------------------- +#include "open_engine/entry_point.hpp" +// ------------------------------------- + +#endif // OPEN_ENGINE_HPP diff --git a/open_engine/include/open_engine/.nvim_session b/open_engine/include/open_engine/.nvim_session new file mode 100644 index 0000000..cb765dd --- /dev/null +++ b/open_engine/include/open_engine/.nvim_session @@ -0,0 +1,121 @@ +let SessionLoad = 1 +let s:so_save = &g:so | let s:siso_save = &g:siso | setg so=0 siso=0 | setl so=-1 siso=-1 +let v:this_session=expand(":p") +silent only +silent tabonly +cd ~/projects/open_engine/open_engine +if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == '' + let s:wipebuf = bufnr('%') +endif +let s:shortmess_save = &shortmess +if &shortmess =~ 'A' + set shortmess=aoOA +else + set shortmess=aoO +endif +badd +1 ~/projects/open_engine/open_engine +badd +13 ~/projects/open_engine/open_engine/include/open_engine/orthographic_camera.hpp +badd +24 ~/projects/open_engine/open_engine/src/open_engine/orthographic_camera.cpp +badd +25 ~/projects/open_engine/open_engine/include/open_engine/application.hpp +badd +18 ~/projects/open_engine/open_engine/src/open_engine/application.cpp +badd +9 ~/projects/open_engine/open_engine/src/open_engine/renderer/renderer.cpp +badd +1654 ~/projects/open_engine/open_engine/src/open_engine/opengl/imgui_glfw.cpp +badd +8 ~/projects/open_engine/open_engine/src/open_engine/time.cpp +badd +11 ~/projects/open_engine/open_engine/include/open_engine.hpp +badd +22 ~/projects/open_engine/open_engine/include/open_engine/time.hpp +badd +4 ~/projects/open_engine/open_engine/include/open_engine/input/input_system.hpp +badd +1 ~/projects/open_engine/open_engine/include/open_engine/core.hpp +badd +10 ~/projects/open_engine/open_engine/include/open_engine/renderer/shader.hpp +badd +8 ~/projects/open_engine/open_engine/include/open_engine/opengl/opengl_shader.hpp +badd +211 ~/projects/open_engine/open_engine/src/open_engine/imgui/imgui_layer.cpp +badd +34 ~/projects/open_engine/open_engine/src/open_engine/window/linux_window.cpp +badd +17 ~/projects/open_engine/open_engine/include/open_engine/window/linux_window.hpp +badd +12 ~/projects/open_engine/open_engine/include/open_engine/entry_point.hpp +badd +17 ~/projects/open_engine/open_engine/include/open_engine/window/window.hpp +badd +1 ~/projects/open_engine/open_engine/justfile +argglobal +%argdel +$argadd ~/projects/open_engine/open_engine +edit ~/projects/open_engine/open_engine/include/open_engine.hpp +let s:save_splitbelow = &splitbelow +let s:save_splitright = &splitright +set splitbelow splitright +wincmd _ | wincmd | +vsplit +1wincmd h +wincmd w +let &splitbelow = s:save_splitbelow +let &splitright = s:save_splitright +wincmd t +let s:save_winminheight = &winminheight +let s:save_winminwidth = &winminwidth +set winminheight=0 +set winheight=1 +set winminwidth=0 +set winwidth=1 +exe 'vert 1resize ' . ((&columns * 104 + 62) / 125) +exe 'vert 2resize ' . ((&columns * 20 + 62) / 125) +argglobal +setlocal foldmethod=manual +setlocal foldexpr=0 +setlocal foldmarker={{{,}}} +setlocal foldignore=# +setlocal foldlevel=0 +setlocal foldminlines=1 +setlocal foldnestmax=20 +setlocal foldenable +silent! normal! zE +let &fdl = &fdl +let s:l = 11 - ((10 * winheight(0) + 29) / 59) +if s:l < 1 | let s:l = 1 | endif +keepjumps exe s:l +normal! zt +keepjumps 11 +normal! 032| +lcd ~/projects/open_engine/open_engine +wincmd w +argglobal +if bufexists(fnamemodify("~/projects/open_engine/open_engine/include/open_engine/orthographic_camera.hpp", ":p")) | buffer ~/projects/open_engine/open_engine/include/open_engine/orthographic_camera.hpp | else | edit ~/projects/open_engine/open_engine/include/open_engine/orthographic_camera.hpp | endif +if &buftype ==# 'terminal' + silent file ~/projects/open_engine/open_engine/include/open_engine/orthographic_camera.hpp +endif +balt ~/projects/open_engine/open_engine/src/open_engine/orthographic_camera.cpp +setlocal foldmethod=manual +setlocal foldexpr=0 +setlocal foldmarker={{{,}}} +setlocal foldignore=# +setlocal foldlevel=0 +setlocal foldminlines=1 +setlocal foldnestmax=20 +setlocal foldenable +silent! normal! zE +let &fdl = &fdl +let s:l = 12 - ((11 * winheight(0) + 29) / 59) +if s:l < 1 | let s:l = 1 | endif +keepjumps exe s:l +normal! zt +keepjumps 12 +normal! 0 +lcd ~/projects/open_engine/open_engine +wincmd w +2wincmd w +exe 'vert 1resize ' . ((&columns * 104 + 62) / 125) +exe 'vert 2resize ' . ((&columns * 20 + 62) / 125) +tabnext 1 +if exists('s:wipebuf') && len(win_findbuf(s:wipebuf)) == 0 && getbufvar(s:wipebuf, '&buftype') isnot# 'terminal' + silent exe 'bwipe ' . s:wipebuf +endif +unlet! s:wipebuf +set winheight=1 winwidth=20 +let &shortmess = s:shortmess_save +let &winminheight = s:save_winminheight +let &winminwidth = s:save_winminwidth +let s:sx = expand(":p:r")."x.vim" +if filereadable(s:sx) + exe "source " . fnameescape(s:sx) +endif +let &g:so = s:so_save | let &g:siso = s:siso_save +set hlsearch +doautoall SessionLoadPost +unlet SessionLoad +" vim: set ft=vim : diff --git a/open_engine/include/open_engine/application.hpp b/open_engine/include/open_engine/application.hpp new file mode 100644 index 0000000..38baefb --- /dev/null +++ b/open_engine/include/open_engine/application.hpp @@ -0,0 +1,49 @@ +#ifndef APPLICATION_HPP +#define APPLICATION_HPP + +#include "core.hpp" + +#include "events/application_event.hpp" +#include "imgui/imgui_layer.hpp" +#include "layer.hpp" +#include "layer_stack.hpp" +#include "window/window.hpp" +#include + +namespace OpenEngine { + class OE_API Application + { + public: + Application(); + virtual ~Application() = default; + + void Run(); + + virtual void OnEvent(Event& event); + + void PushLayer(Layer* layer); + void PushOverlay(Layer* overlay); + + inline static Application& Get() { return *instance; } + + inline Window& GetWindow() { return *window; } + inline void StopRunning() { running = false; } + + private: + bool OnWindowClose(WindowCloseEvent& event); + bool OnWindowResize(WindowResizeEvent& event); + + inline static Application* instance; + + bool running = true; + std::unique_ptr window; + + ImGuiLayer* imgui_layer; + LayerStack layer_stack; + }; + + // Is defined by client + Application* CreateApplication(); +} + +#endif // APPLICATION_HPP diff --git a/open_engine/include/open_engine/core.hpp b/open_engine/include/open_engine/core.hpp new file mode 100644 index 0000000..65caf9b --- /dev/null +++ b/open_engine/include/open_engine/core.hpp @@ -0,0 +1,36 @@ +#ifndef CORE_HPP +#define CORE_HPP + +#include +#ifdef __linux__ + #ifdef OE_EXPORT + #define OE_API __attribute__((visibility("default"))) + #else + #define OE_API + #endif +#elif defined(_WIN32) || defined(WIN32) + #error Windows is not yet supported +#endif + +#ifdef OE_ENABLE_ASSERTS + #include + #define OE_ASSERT(x, ...) { if (!(x)) { OE_ERROR("Assertion Failed: {0}", __VA_ARGS__); raise(SIGTRAP); } } + #define OE_CORE_ASSERT(x, ...) { if (!(x)) { OE_CORE_ERROR("Assertion Failed: {0}", __VA_ARGS__); raise(SIGTRAP); } } +#else + #define OE_ASSERT(x, ...) + #define OE_CORE_ASSERT(x, ...) +#endif + +#define BIT(x) (1 << x) + +#define BIND_EVENT_FN(function) std::bind(&function, this, std::placeholders::_1) + +namespace OpenEngine { + template + using Scope = std::unique_ptr; + + template + using Ref = std::shared_ptr; +} + +#endif // CORE_HPP diff --git a/open_engine/include/open_engine/core/time.hpp b/open_engine/include/open_engine/core/time.hpp new file mode 100644 index 0000000..ebb4bc4 --- /dev/null +++ b/open_engine/include/open_engine/core/time.hpp @@ -0,0 +1,34 @@ +#ifndef TIME_HPP +#define TIME_HPP + +#include + +namespace OpenEngine { + class Time + { + public: + Time(const Time&) = delete; // No copy constructor + Time& operator=(const Time&) = delete; + + void Update(); + + static Time& Get() + { + if (instance == nullptr) + instance.reset(new Time); + + return *instance; + } + + double DeltaTime() const { return delta_time.count(); }; + + private: + Time() {}; + std::chrono::high_resolution_clock::time_point previous_frame; + static std::unique_ptr