diff --git a/gdlibretro/.clang-format b/gdlibretro/.clang-format
new file mode 100644
index 0000000..7692847
--- /dev/null
+++ b/gdlibretro/.clang-format
@@ -0,0 +1,112 @@
+# Options are listed here:
+# https://clang.llvm.org/docs/ClangFormatStyleOptions.html
+---
+AccessModifierOffset: -4
+AlignAfterOpenBracket: Align
+AlignConsecutiveAssignments: false
+AlignConsecutiveDeclarations: false
+AlignEscapedNewlines: Right
+AlignOperands: true
+AlignTrailingComments: true
+AllowAllArgumentsOnNextLine: true
+AllowAllConstructorInitializersOnNextLine: true
+AllowAllParametersOfDeclarationOnNextLine: true
+AllowShortBlocksOnASingleLine: false
+AllowShortCaseLabelsOnASingleLine: false
+AllowShortFunctionsOnASingleLine: None
+AllowShortLambdasOnASingleLine: All
+AllowShortIfStatementsOnASingleLine: Never
+AllowShortLoopsOnASingleLine: false
+AlwaysBreakAfterDefinitionReturnType: None
+AlwaysBreakAfterReturnType: None
+AlwaysBreakBeforeMultilineStrings: false
+AlwaysBreakTemplateDeclarations: MultiLine
+BinPackArguments: true
+BinPackParameters: true
+BitFieldColonSpacing: Both
+BraceWrapping:
+ AfterCaseLabel: true
+ AfterClass: true
+ AfterControlStatement: true
+ AfterEnum: true
+ AfterFunction: true
+ AfterNamespace: true
+ AfterStruct: true
+ AfterUnion: true
+ AfterExternBlock: true
+ BeforeCatch: true
+ BeforeElse: true
+ IndentBraces: false
+ SplitEmptyFunction: true
+ SplitEmptyRecord: true
+ SplitEmptyNamespace: true
+BreakBeforeBinaryOperators: None
+BreakBeforeBraces: Custom
+BreakBeforeInheritanceComma: false
+BreakInheritanceList: BeforeColon
+BreakBeforeTernaryOperators: true
+BreakConstructorInitializersBeforeComma: false
+BreakConstructorInitializers: AfterColon
+BreakStringLiterals: true
+ColumnLimit: 100
+CompactNamespaces: false
+ConstructorInitializerAllOnOneLineOrOnePerLine: false
+ConstructorInitializerIndentWidth: 4
+ContinuationIndentWidth: 4
+Cpp11BracedListStyle: false
+DeriveLineEnding: false
+DerivePointerAlignment: false
+EmptyLineBeforeAccessModifier: LogicalBlock
+EmptyLineAfterAccessModifier: Never
+FixNamespaceComments: false
+IncludeBlocks: Preserve
+IncludeCategories:
+ - Regex: '^"(llvm|llvm-c|clang|clang-c)/'
+ Priority: 2
+ - Regex: '^(<|"(gtest|gmock|isl|json)/)'
+ Priority: 3
+ - Regex: '.*'
+ Priority: 1
+IncludeIsMainRegex: '(Test)?$'
+IndentCaseLabels: true
+IndentPPDirectives: None
+IndentWidth: 4
+IndentWrappedFunctionNames: true
+InsertBraces: true
+KeepEmptyLinesAtTheStartOfBlocks: true
+Language: Cpp
+MaxEmptyLinesToKeep: 1
+NamespaceIndentation: All
+PenaltyBreakAssignment: 2
+PenaltyBreakBeforeFirstCallParameter: 19
+PenaltyBreakComment: 300
+PenaltyBreakFirstLessLess: 120
+PenaltyBreakString: 1000
+PenaltyBreakTemplateDeclaration: 10
+PenaltyExcessCharacter: 1000000
+PenaltyReturnTypeOnItsOwnLine: 1000
+PointerAlignment: Right
+ReflowComments: true
+SortIncludes: true
+SortUsingDeclarations: true
+SpaceAfterCStyleCast: false
+SpaceAfterLogicalNot: false
+SpaceAfterTemplateKeyword: true
+SpaceBeforeAssignmentOperators: true
+SpaceBeforeCaseColon: false
+SpaceBeforeCpp11BracedList: false
+SpaceBeforeCtorInitializerColon: true
+SpaceBeforeInheritanceColon: true
+SpaceBeforeParens: ControlStatements
+SpaceBeforeRangeBasedForLoopColon: true
+SpaceInEmptyParentheses: false
+SpacesBeforeTrailingComments: 1
+SpacesInAngles: false
+SpacesInContainerLiterals: true
+SpacesInCStyleCastParentheses: false
+SpacesInParentheses: true
+SpacesInSquareBrackets: false
+Standard: c++17
+TabWidth: 4
+UseCRLF: false
+UseTab: Never
diff --git a/gdlibretro/.gitignore b/gdlibretro/.gitignore
new file mode 100644
index 0000000..7185ff5
--- /dev/null
+++ b/gdlibretro/.gitignore
@@ -0,0 +1,9 @@
+CMakeLists.txt.user
+.vscode/settings.json
+build
+*.dll
+vicerc*
+*.exe
+*.pck
+
+!dosbox_pure_libretro.dll
\ No newline at end of file
diff --git a/gdlibretro/.vscode/c_cpp_properties.json b/gdlibretro/.vscode/c_cpp_properties.json
new file mode 100644
index 0000000..a57812e
--- /dev/null
+++ b/gdlibretro/.vscode/c_cpp_properties.json
@@ -0,0 +1,22 @@
+{
+ "configurations": [
+ {
+ "name": "Win32",
+ "includePath": [
+ "${workspaceFolder}/**"
+ ],
+ "defines": [
+ "_DEBUG",
+ "UNICODE",
+ "_UNICODE"
+ ],
+ "windowsSdkVersion": "10.0.22621.0",
+ "cStandard": "c17",
+ "cppStandard": "c++17",
+ "intelliSenseMode": "windows-msvc-x64",
+ "compileCommands": "${workspaceFolder}/build/MyGodotExtention_Windows-AMD64/compile_commands.json",
+ "configurationProvider": "ms-vscode.cmake-tools"
+ }
+ ],
+ "version": 4
+}
\ No newline at end of file
diff --git a/gdlibretro/.vscode/extensions.json b/gdlibretro/.vscode/extensions.json
new file mode 100644
index 0000000..a4ef25e
--- /dev/null
+++ b/gdlibretro/.vscode/extensions.json
@@ -0,0 +1,6 @@
+{
+ "recommendations": [
+ "ms-vscode.cpptools-extension-pack",
+ "ms-vscode.cmake-tools"
+ ]
+}
\ No newline at end of file
diff --git a/gdlibretro/.vscode/godot.natvis b/gdlibretro/.vscode/godot.natvis
new file mode 100644
index 0000000..36b0919
--- /dev/null
+++ b/gdlibretro/.vscode/godot.natvis
@@ -0,0 +1,210 @@
+
+
+
+
+ - _cowdata._ptr ? (((const unsigned int *)(_cowdata._ptr))[-1]) : 0
+
+ _cowdata._ptr ? (((const unsigned int *)(_cowdata._ptr))[-1]) : 0
+ _cowdata._ptr
+
+
+
+
+
+
+ - count
+
+ count
+ data
+
+
+
+
+
+
+ - _data ? (_data->size_cache) : 0
+
+ _data ? (_data->size_cache) : 0
+ _data->first
+ next_ptr
+ value
+
+
+
+
+
+
+ - num_elements
+
+ num_elements
+ head_element
+ next
+ data
+
+
+
+
+
+
+ - *(reinterpret_cast<int*>(_cowdata._ptr) - 1)
+
+ *(reinterpret_cast<int*>(_cowdata._ptr) - 1)
+ reinterpret_cast<VMap<$T1,$T2>::Pair*>(_cowdata._ptr)
+
+
+
+
+
+ {dynamic_cast<CallableCustomMethodPointerBase*>(key.custom)->text}
+
+
+
+
+
+ nil
+ {_data._bool}
+ {_data._int}
+ {_data._float}
+ {_data._transform2d}
+ {_data._aabb}
+ {_data._basis}
+ {_data._transform3d}
+ {_data._projection}
+ {*(String *)_data._mem}
+ {*(Vector2 *)_data._mem}
+ {*(Rect2 *)_data._mem}
+ {*(Vector3 *)_data._mem}
+ {*(Vector4 *)_data._mem}
+ {*(Plane *)_data._mem}
+ {*(Quaternion *)_data._mem}
+ {*(Color *)_data._mem}
+ {*(NodePath *)_data._mem}
+ {*(::RID *)_data._mem}
+ {*(Object *)_data._mem}
+ {*(Dictionary *)_data._mem}
+ {*(Array *)_data._mem}
+ {reinterpret_cast<const Variant::PackedArrayRef<unsigned char>*>(_data.packed_array)->array}
+ {reinterpret_cast<const Variant::PackedArrayRef<int>*>(_data.packed_array)->array}
+
+ {reinterpret_cast<const Variant::PackedArrayRef<float>*>(_data.packed_array)->array}
+ {reinterpret_cast<const Variant::PackedArrayRef<double>*>(_data.packed_array)->array}
+ {reinterpret_cast<const Variant::PackedArrayRef<String>*>(_data.packed_array)->array}
+ {reinterpret_cast<const Variant::PackedArrayRef<Vector2>*>(_data.packed_array)->array}
+ {reinterpret_cast<const Variant::PackedArrayRef<Vector3>*>(_data.packed_array)->array}
+ {reinterpret_cast<const Variant::PackedArrayRef<Color>*>(_data.packed_array)->array}
+
+ ((String *)(_data._mem))->_cowdata._ptr,s32
+
+
+ - _data._bool
+ - _data._int
+ - _data._float
+ - _data._transform2d
+ - _data._aabb
+ - _data._basis
+ - _data._transform3d
+ - *(String *)_data._mem
+ - *(Vector2 *)_data._mem
+ - *(Rect2 *)_data._mem
+ - *(Vector3 *)_data._mem
+ - *(Plane *)_data._mem
+ - *(Quaternion *)_data._mem
+ - *(Color *)_data._mem
+ - *(NodePath *)_data._mem
+ - *(::RID *)_data._mem
+ - *(Object *)_data._mem
+ - *(Dictionary *)_data._mem
+ - *(Array *)_data._mem
+ - reinterpret_cast<const Variant::PackedArrayRef<unsigned char>*>(_data.packed_array)->array
+ - *(PackedInt32Array *)_data._mem
+ - *(PackedInt64Array *)_data._mem
+ - *(PackedFloat32Array *)_data._mem
+ - *(PackedFloat64Array *)_data._mem
+ - *(PackedStringArray *)_data._mem
+ - *(PackedVector2Array *)_data._mem
+ - *(PackedVector3Array *)_data._mem
+ - *(PackedColorArray *)_data._mem
+
+
+
+
+ [empty]
+ {_cowdata._ptr,s32}
+ _cowdata._ptr,s32
+
+
+
+ {*reinterpret_cast<void**>(opaque),s32}
+
+ - *reinterpret_cast<void**>(opaque)
+ - *reinterpret_cast<void**>(opaque),s32
+
+
+
+
+ {_data->cname}
+ {_data->name,s32}
+ [empty]
+ _data->cname
+ _data->name,s32
+
+
+
+
+ {(*reinterpret_cast<const char***>(opaque))[1],s8}
+ {(*reinterpret_cast<const char***>(opaque))[2],s32}
+
+ - *reinterpret_cast<void**>(opaque)
+ - (*reinterpret_cast<const char***>(opaque))+1
+ - (*reinterpret_cast<const char***>(opaque))[1],s8
+
+
+
+
+ "{user.name}" {slot_map}
+ "{slot_map}
+
+
+
+ {{{x},{y}}}
+
+ - x
+ - y
+
+
+
+
+ {{{x},{y},{z}}}
+
+ - x
+ - y
+ - z
+
+
+
+
+ Quaternion {{{x},{y},{z},{w}}}
+
+ - x
+ - y
+ - z
+ - w
+
+
+
+
+ Color {{{r},{g},{b},{a}}}
+
+ - r
+ - g
+ - b
+ - a
+
+
+
diff --git a/gdlibretro/.vscode/launch.json b/gdlibretro/.vscode/launch.json
new file mode 100644
index 0000000..8079be9
--- /dev/null
+++ b/gdlibretro/.vscode/launch.json
@@ -0,0 +1,35 @@
+{
+ // Use IntelliSense to learn about possible attributes.
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "Windows Launch",
+ "type": "cppvsdbg",
+ "request": "launch",
+ "program": "D:/SteamLibrary/steamapps/common/Godot Engine/godot.windows.opt.tools.64.exe",
+ "args": ["--path", "${workspaceFolder}/demo" ],
+ "cwd": "${workspaceFolder}",
+ "preLaunchTask": "CMake: Install",
+ "internalConsoleOptions": "openOnSessionStart",
+ "console": "internalConsole",
+ "environment": [
+ {
+ "name": "Path",
+ "value": "${env:Path};"
+ }
+ ],
+ "visualizerFile": "${workspaceFolder}/.vscode/godot.natvis"
+ },
+ {
+ "name": "macOS/Linux Launch",
+ "type": "lldb",
+ "request": "launch",
+ "program": "${command:cmake.launchTargetPath}",
+ "args": [],
+ "cwd": "${command:cmake.buildDirectory}/bin",
+ "visualizerFile": "${workspaceFolder}/.vscode/godot.natvis"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/gdlibretro/.vscode/tasks.json b/gdlibretro/.vscode/tasks.json
new file mode 100644
index 0000000..56373ca
--- /dev/null
+++ b/gdlibretro/.vscode/tasks.json
@@ -0,0 +1,25 @@
+{
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "type": "cmake",
+ "label": "CMake: build",
+ "command": "build",
+ "targets": [
+ "all"
+ ],
+ "preset": "${command:cmake.activeBuildPresetName}",
+ "group": "build",
+ "problemMatcher": [],
+ "detail": "CMake template build task"
+ },
+ {
+ "type": "cmake",
+ "label": "CMake: Install",
+ "command": "install",
+ "dependsOn": [
+ "CMake: build"
+ ],
+ }
+ ]
+}
\ No newline at end of file
diff --git a/gdlibretro/CMakeCache.txt b/gdlibretro/CMakeCache.txt
new file mode 100644
index 0000000..10b677f
--- /dev/null
+++ b/gdlibretro/CMakeCache.txt
@@ -0,0 +1,584 @@
+# This is the CMakeCache file.
+# For build in directory: /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro
+# 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
+########################
+
+//Build the testing tree.
+BUILD_TESTING:BOOL=ON
+
+//Path to a program.
+CCACHE_PROGRAM:FILEPATH=CCACHE_PROGRAM-NOTFOUND
+
+//Path to a program.
+CLANG_FORMAT_PROGRAM:FILEPATH=/usr/bin/clang-format
+
+//Path to a program.
+CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line
+
+//Path to a program.
+CMAKE_AR:FILEPATH=/usr/bin/ar
+
+//Choose the type of build, options are: None Debug Release RelWithDebInfo
+// MinSizeRel ...
+CMAKE_BUILD_TYPE:STRING=Debug
+
+//Enable/Disable color output during build.
+CMAKE_COLOR_MAKEFILE:BOOL=ON
+
+//CXX compiler
+CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++
+
+//A wrapper around 'ar' adding the appropriate '--plugin' option
+// for the GCC compiler
+CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-14
+
+//A wrapper around 'ranlib' adding the appropriate '--plugin' option
+// for the GCC compiler
+CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-14
+
+//Flags used by the CXX compiler during all build types.
+CMAKE_CXX_FLAGS:STRING=-DLINUX
+
+//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
+
+//Path to a program.
+CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
+
+//Flags used by the linker during all build types.
+CMAKE_EXE_LINKER_FLAGS:STRING=
+
+//Flags used by the linker during DEBUG builds.
+CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
+
+//Flags used by the linker during MINSIZEREL builds.
+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
+
+//Flags used by the linker during RELEASE builds.
+CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
+
+//Flags used by the linker during RELWITHDEBINFO builds.
+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
+
+//Value Computed by CMake.
+CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/pkgRedirects
+
+//User executables (bin)
+CMAKE_INSTALL_BINDIR:PATH=bin
+
+//Read-only architecture-independent data (DATAROOTDIR)
+CMAKE_INSTALL_DATADIR:PATH=
+
+//Read-only architecture-independent data root (share)
+CMAKE_INSTALL_DATAROOTDIR:PATH=share
+
+//Documentation root (DATAROOTDIR/doc/PROJECT_NAME)
+CMAKE_INSTALL_DOCDIR:PATH=
+
+//C header files (include)
+CMAKE_INSTALL_INCLUDEDIR:PATH=include
+
+//Info documentation (DATAROOTDIR/info)
+CMAKE_INSTALL_INFODIR:PATH=
+
+//Object code libraries (lib)
+CMAKE_INSTALL_LIBDIR:PATH=lib
+
+//Program executables (libexec)
+CMAKE_INSTALL_LIBEXECDIR:PATH=libexec
+
+//Locale-dependent data (DATAROOTDIR/locale)
+CMAKE_INSTALL_LOCALEDIR:PATH=
+
+//Modifiable single-machine data (var)
+CMAKE_INSTALL_LOCALSTATEDIR:PATH=var
+
+//Man documentation (DATAROOTDIR/man)
+CMAKE_INSTALL_MANDIR:PATH=
+
+//C header files for non-gcc (/usr/include)
+CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include
+
+//Install path prefix, prepended onto install directories.
+CMAKE_INSTALL_PREFIX:PATH=/usr/local
+
+//Run-time variable data (LOCALSTATEDIR/run)
+CMAKE_INSTALL_RUNSTATEDIR:PATH=
+
+//System admin executables (sbin)
+CMAKE_INSTALL_SBINDIR:PATH=sbin
+
+//Modifiable architecture-independent data (com)
+CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com
+
+//Read-only single-machine data (etc)
+CMAKE_INSTALL_SYSCONFDIR:PATH=etc
+
+//Path to a program.
+CMAKE_LINKER:FILEPATH=/usr/bin/ld
+
+//Path to a program.
+CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake
+
+//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/nm
+
+//Path to a program.
+CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy
+
+//Path to a program.
+CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
+
+//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=LibRetroHost
+
+//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/ranlib
+
+//Path to a program.
+CMAKE_READELF:FILEPATH=/usr/bin/readelf
+
+//Flags used by the linker during the creation of shared libraries
+// during all build types.
+CMAKE_SHARED_LINKER_FLAGS:STRING=
+
+//Flags used by the linker during the creation of shared libraries
+// during DEBUG builds.
+CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
+
+//Flags used by the linker during the creation of shared libraries
+// during MINSIZEREL builds.
+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
+
+//Flags used by the linker during the creation of shared libraries
+// during RELEASE builds.
+CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
+
+//Flags used by the linker during the creation of shared libraries
+// during RELWITHDEBINFO builds.
+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
+
+//If set, runtime paths are not added when installing shared libraries,
+// but are added when building.
+CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
+
+//If set, runtime paths are not added when using shared libraries.
+CMAKE_SKIP_RPATH:BOOL=NO
+
+//Flags used by the linker during the creation of static libraries
+// during all build types.
+CMAKE_STATIC_LINKER_FLAGS:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during DEBUG builds.
+CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during MINSIZEREL builds.
+CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during RELEASE builds.
+CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during RELWITHDEBINFO builds.
+CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
+
+//Path to a program.
+CMAKE_STRIP:FILEPATH=/usr/bin/strip
+
+//Path to a program.
+CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND
+
+//If this value is on, makefiles will be generated without the
+// .SILENT directive, and all commands will be echoed to the console
+// during the make. This is useful for debugging only. With Visual
+// Studio IDE projects all commands are done without /nologo.
+CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
+
+//Path to the coverage program that CTest uses for performing coverage
+// inspection
+COVERAGE_COMMAND:FILEPATH=/usr/bin/gcov
+
+//Extra command line flags to pass to the coverage tool
+COVERAGE_EXTRA_FLAGS:STRING=-l
+
+//How many times to retry timed-out CTest submissions.
+CTEST_SUBMIT_RETRY_COUNT:STRING=3
+
+//How long to wait between timed-out CTest submissions.
+CTEST_SUBMIT_RETRY_DELAY:STRING=5
+
+//Maximum time allowed before CTest will kill the test.
+DART_TESTING_TIMEOUT:STRING=1500
+
+FLOAT_PRECISION:STRING=single
+
+//Generate a template version of the Node class's get_node.
+GENERATE_TEMPLATE_GET_NODE:BOOL=ON
+
+//Path to a program.
+GITCOMMAND:FILEPATH=/usr/bin/git
+
+//Git command line client
+GIT_EXECUTABLE:FILEPATH=/usr/bin/git
+
+//Path to a program.
+GIT_PROGRAM:FILEPATH=/usr/bin/git
+
+//Expose headers as SYSTEM.
+GODOT_CPP_SYSTEM_HEADERS:BOOL=ON
+
+//Treat warnings as errors
+GODOT_CPP_WARNING_AS_ERROR:BOOL=OFF
+
+GODOT_CUSTOM_API_FILE:STRING=
+
+//OFF
+GODOT_DISABLE_EXCEPTIONS:BOOL=OFF
+
+GODOT_GDEXTENSION_DIR:STRING=gdextension
+
+//Treat warnings as errors
+LIBRETROHOST_WARNING_AS_ERROR:BOOL=ON
+
+//Turn on all warnings (not recommended - used for lib development)
+LIBRETROHOST_WARN_EVERYTHING:BOOL=OFF
+
+//No help, variable specified on the command line.
+LINUX:UNINITIALIZED=true
+
+//Value Computed by CMake
+LibRetroHost_BINARY_DIR:STATIC=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro
+
+//Value Computed by CMake
+LibRetroHost_IS_TOP_LEVEL:STATIC=ON
+
+//Value Computed by CMake
+LibRetroHost_SOURCE_DIR:STATIC=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro
+
+//Command to build the project
+MAKECOMMAND:STRING=/usr/bin/cmake --build . --config "${CTEST_CONFIGURATION_TYPE}"
+
+//Path to the memory checking command, used for memory error detection.
+MEMORYCHECK_COMMAND:FILEPATH=MEMORYCHECK_COMMAND-NOTFOUND
+
+//File that contains suppressions for the memory checker
+MEMORYCHECK_SUPPRESSIONS_FILE:FILEPATH=
+
+//No help, variable specified on the command line.
+NO_GIT_REVISION:UNINITIALIZED=ON
+
+//Name of the computer/site where compile is being run
+SITE:STRING=karasu
+
+//Build yaml-cpp shared library
+YAML_BUILD_SHARED_LIBS:BOOL=OFF
+
+//Value Computed by CMake
+YAML_CPP_BINARY_DIR:STATIC=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp
+
+//Enable yaml-cpp contrib in library
+YAML_CPP_BUILD_CONTRIB:BOOL=ON
+
+//Enable parse tools
+YAML_CPP_BUILD_TOOLS:BOOL=ON
+
+//Disable uninstallation of yaml-cpp
+YAML_CPP_DISABLE_UNINSTALL:BOOL=OFF
+
+//Format source
+YAML_CPP_FORMAT_SOURCE:BOOL=OFF
+
+//Enable generation of yaml-cpp install targets
+YAML_CPP_INSTALL:BOOL=OFF
+
+//Path to install the CMake package to
+YAML_CPP_INSTALL_CMAKEDIR:STRING=lib/cmake/yaml-cpp
+
+//Value Computed by CMake
+YAML_CPP_IS_TOP_LEVEL:STATIC=OFF
+
+//Value Computed by CMake
+YAML_CPP_SOURCE_DIR:STATIC=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp
+
+//Use system googletest if found
+YAML_USE_SYSTEM_GTEST:BOOL=OFF
+
+//Value Computed by CMake
+godot-cpp_BINARY_DIR:STATIC=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp
+
+//Value Computed by CMake
+godot-cpp_IS_TOP_LEVEL:STATIC=OFF
+
+//Value Computed by CMake
+godot-cpp_SOURCE_DIR:STATIC=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp
+
+
+########################
+# 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/jay/gits/RetroQUEST/RetroQUEST/gdlibretro
+//Major version of cmake used to create the current loaded cache
+CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
+//Minor version of cmake used to create the current loaded cache
+CMAKE_CACHE_MINOR_VERSION:INTERNAL=30
+//Patch version of cmake used to create the current loaded cache
+CMAKE_CACHE_PATCH_VERSION:INTERNAL=3
+//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
+CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
+//Path to CMake executable.
+CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
+//Path to cpack program executable.
+CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
+//ADVANCED property for variable: CMAKE_CTEST_COMMAND
+CMAKE_CTEST_COMMAND-ADVANCED:INTERNAL=1
+//Path to ctest program executable.
+CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
+//ADVANCED property for variable: CMAKE_CXX_COMPILER
+CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
+CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
+CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS
+CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
+CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
+CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
+CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
+CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_DLLTOOL
+CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
+//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
+//Name of external makefile project generator.
+CMAKE_EXTRA_GENERATOR:INTERNAL=
+//Name of generator.
+CMAKE_GENERATOR:INTERNAL=Unix Makefiles
+//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/jay/gits/RetroQUEST/RetroQUEST/gdlibretro
+//ADVANCED property for variable: CMAKE_INSTALL_BINDIR
+CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_DATADIR
+CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR
+CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR
+CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR
+CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_INFODIR
+CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR
+CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR
+CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR
+CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR
+CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_MANDIR
+CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR
+CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR
+CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR
+CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR
+CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1
+//Install .so files without execute permission.
+CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR
+CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_LINKER
+CMAKE_LINKER-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_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=7
+//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-3.30
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
+CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
+CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
+CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
+CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SKIP_RPATH
+CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
+CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
+CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
+CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
+CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STRIP
+CMAKE_STRIP-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_TAPI
+CMAKE_TAPI-ADVANCED:INTERNAL=1
+//uname command
+CMAKE_UNAME:INTERNAL=/usr/bin/uname
+//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
+CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: COVERAGE_COMMAND
+COVERAGE_COMMAND-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: COVERAGE_EXTRA_FLAGS
+COVERAGE_EXTRA_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CTEST_SUBMIT_RETRY_COUNT
+CTEST_SUBMIT_RETRY_COUNT-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CTEST_SUBMIT_RETRY_DELAY
+CTEST_SUBMIT_RETRY_DELAY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: DART_TESTING_TIMEOUT
+DART_TESTING_TIMEOUT-ADVANCED:INTERNAL=1
+//Details about finding Python3
+FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[/usr/bin/python3][cfound components: Interpreter ][v3.12.7(3.4)]
+//ADVANCED property for variable: GITCOMMAND
+GITCOMMAND-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: GIT_EXECUTABLE
+GIT_EXECUTABLE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: MAKECOMMAND
+MAKECOMMAND-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: MEMORYCHECK_COMMAND
+MEMORYCHECK_COMMAND-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: MEMORYCHECK_SUPPRESSIONS_FILE
+MEMORYCHECK_SUPPRESSIONS_FILE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: SITE
+SITE-ADVANCED:INTERNAL=1
+//linker supports push/pop state
+_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE
+//CMAKE_INSTALL_PREFIX during last run
+_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/usr/local
+//Compiler reason failure
+_Python3_Compiler_REASON_FAILURE:INTERNAL=
+//Development reason failure
+_Python3_Development_REASON_FAILURE:INTERNAL=
+//Path to a program.
+_Python3_EXECUTABLE:INTERNAL=/usr/bin/python3
+//Python3 Properties
+_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;12;7;64;32;;cpython-312-x86_64-linux-gnu;abi3;/usr/lib/python3.12;/usr/lib/python3.12;/usr/local/lib/python3.12/dist-packages;/usr/local/lib/python3.12/dist-packages
+_Python3_INTERPRETER_SIGNATURE:INTERNAL=4c8bfa8951e99fa32e4000a94f8c04a2
+//NumPy reason failure
+_Python3_NumPy_REASON_FAILURE:INTERNAL=
+
diff --git a/gdlibretro/CMakeFiles/3.30.3/CMakeCXXCompiler.cmake b/gdlibretro/CMakeFiles/3.30.3/CMakeCXXCompiler.cmake
new file mode 100644
index 0000000..2bdb028
--- /dev/null
+++ b/gdlibretro/CMakeFiles/3.30.3/CMakeCXXCompiler.cmake
@@ -0,0 +1,105 @@
+set(CMAKE_CXX_COMPILER "/usr/bin/c++")
+set(CMAKE_CXX_COMPILER_ARG1 "")
+set(CMAKE_CXX_COMPILER_ID "GNU")
+set(CMAKE_CXX_COMPILER_VERSION "14.2.0")
+set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
+set(CMAKE_CXX_COMPILER_WRAPPER "")
+set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17")
+set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON")
+set(CMAKE_CXX_STANDARD_LATEST "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_SIMULATE_VERSION "")
+
+
+
+
+set(CMAKE_AR "/usr/bin/ar")
+set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-14")
+set(CMAKE_RANLIB "/usr/bin/ranlib")
+set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-14")
+set(CMAKE_LINKER "/usr/bin/ld")
+set(CMAKE_LINKER_LINK "")
+set(CMAKE_LINKER_LLD "")
+set(CMAKE_CXX_COMPILER_LINKER "/usr/bin/ld")
+set(CMAKE_CXX_COMPILER_LINKER_ID "")
+set(CMAKE_CXX_COMPILER_LINKER_VERSION )
+set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT )
+set(CMAKE_MT "")
+set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
+set(CMAKE_COMPILER_IS_GNUCXX 1)
+set(CMAKE_CXX_COMPILER_LOADED 1)
+set(CMAKE_CXX_COMPILER_WORKS TRUE)
+set(CMAKE_CXX_ABI_COMPILED TRUE)
+
+set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
+
+set(CMAKE_CXX_COMPILER_ID_RUN 1)
+set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m)
+set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
+
+foreach (lang IN ITEMS C OBJC OBJCXX)
+ if (CMAKE_${lang}_COMPILER_ID_RUN)
+ foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
+ list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
+ endforeach()
+ endif()
+endforeach()
+
+set(CMAKE_CXX_LINKER_PREFERENCE 30)
+set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
+set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED FALSE)
+
+# Save compiler ABI information.
+set(CMAKE_CXX_SIZEOF_DATA_PTR "8")
+set(CMAKE_CXX_COMPILER_ABI "ELF")
+set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN")
+set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu")
+
+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 "x86_64-linux-gnu")
+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++/14;/usr/include/x86_64-linux-gnu/c++/14;/usr/include/c++/14/backward;/usr/lib/gcc/x86_64-linux-gnu/14/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include")
+set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc")
+set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/14;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib")
+set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
+set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "")
+
+set(CMAKE_CXX_COMPILER_IMPORT_STD "")
+### Imported target for C++23 standard library
+set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Unsupported generator: Unix Makefiles")
+
+
+### Imported target for C++26 standard library
+set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Unsupported generator: Unix Makefiles")
+
+
+
diff --git a/gdlibretro/CMakeFiles/3.30.3/CMakeDetermineCompilerABI_CXX.bin b/gdlibretro/CMakeFiles/3.30.3/CMakeDetermineCompilerABI_CXX.bin
new file mode 100755
index 0000000..ee86723
Binary files /dev/null and b/gdlibretro/CMakeFiles/3.30.3/CMakeDetermineCompilerABI_CXX.bin differ
diff --git a/gdlibretro/CMakeFiles/3.30.3/CMakeSystem.cmake b/gdlibretro/CMakeFiles/3.30.3/CMakeSystem.cmake
new file mode 100644
index 0000000..fb6a3d3
--- /dev/null
+++ b/gdlibretro/CMakeFiles/3.30.3/CMakeSystem.cmake
@@ -0,0 +1,15 @@
+set(CMAKE_HOST_SYSTEM "Linux-6.11.0-9-generic")
+set(CMAKE_HOST_SYSTEM_NAME "Linux")
+set(CMAKE_HOST_SYSTEM_VERSION "6.11.0-9-generic")
+set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
+
+
+
+set(CMAKE_SYSTEM "Linux-6.11.0-9-generic")
+set(CMAKE_SYSTEM_NAME "Linux")
+set(CMAKE_SYSTEM_VERSION "6.11.0-9-generic")
+set(CMAKE_SYSTEM_PROCESSOR "x86_64")
+
+set(CMAKE_CROSSCOMPILING "FALSE")
+
+set(CMAKE_SYSTEM_LOADED 1)
diff --git a/gdlibretro/CMakeFiles/3.30.3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/gdlibretro/CMakeFiles/3.30.3/CompilerIdCXX/CMakeCXXCompilerId.cpp
new file mode 100644
index 0000000..da6c824
--- /dev/null
+++ b/gdlibretro/CMakeFiles/3.30.3/CompilerIdCXX/CMakeCXXCompilerId.cpp
@@ -0,0 +1,919 @@
+/* This source file must have a .cpp extension so that all C++ compilers
+ recognize the extension without flags. Borland does not know .cxx for
+ example. */
+#ifndef __cplusplus
+# error "A C compiler has been selected for C++."
+#endif
+
+#if !defined(__has_include)
+/* If the compiler does not have __has_include, pretend the answer is
+ always no. */
+# define __has_include(x) 0
+#endif
+
+
+/* Version number components: V=Version, R=Revision, P=Patch
+ Version date components: YYYY=Year, MM=Month, DD=Day */
+
+#if defined(__INTEL_COMPILER) || defined(__ICC)
+# define COMPILER_ID "Intel"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# if defined(__GNUC__)
+# define SIMULATE_ID "GNU"
+# endif
+ /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
+ except that a few beta releases use the old format with V=2021. */
+# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
+# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
+# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
+# if defined(__INTEL_COMPILER_UPDATE)
+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
+# else
+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
+# endif
+# else
+# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
+# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
+ /* The third version component from --version is an update index,
+ but no macro is provided for it. */
+# define COMPILER_VERSION_PATCH DEC(0)
+# endif
+# if defined(__INTEL_COMPILER_BUILD_DATE)
+ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
+# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
+# endif
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+# if defined(__GNUC__)
+# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
+# elif defined(__GNUG__)
+# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
+# endif
+# if defined(__GNUC_MINOR__)
+# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
+# endif
+# if defined(__GNUC_PATCHLEVEL__)
+# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
+# endif
+
+#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
+# define COMPILER_ID "IntelLLVM"
+#if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+#endif
+#if defined(__GNUC__)
+# define SIMULATE_ID "GNU"
+#endif
+/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
+ * later. Look for 6 digit vs. 8 digit version number to decide encoding.
+ * VVVV is no smaller than the current year when a version is released.
+ */
+#if __INTEL_LLVM_COMPILER < 1000000L
+# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
+# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
+#else
+# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
+# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
+# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
+#endif
+#if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+#endif
+#if defined(__GNUC__)
+# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
+#elif defined(__GNUG__)
+# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
+#endif
+#if defined(__GNUC_MINOR__)
+# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
+#endif
+#if defined(__GNUC_PATCHLEVEL__)
+# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
+#endif
+
+#elif defined(__PATHCC__)
+# define COMPILER_ID "PathScale"
+# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
+# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
+# if defined(__PATHCC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
+# endif
+
+#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
+# define COMPILER_ID "Embarcadero"
+# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
+# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
+# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
+
+#elif defined(__BORLANDC__)
+# define COMPILER_ID "Borland"
+ /* __BORLANDC__ = 0xVRR */
+# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
+# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
+
+#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
+# define COMPILER_ID "Watcom"
+ /* __WATCOMC__ = VVRR */
+# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
+# if (__WATCOMC__ % 10) > 0
+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
+# endif
+
+#elif defined(__WATCOMC__)
+# define COMPILER_ID "OpenWatcom"
+ /* __WATCOMC__ = VVRP + 1100 */
+# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
+# if (__WATCOMC__ % 10) > 0
+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
+# endif
+
+#elif defined(__SUNPRO_CC)
+# define COMPILER_ID "SunPro"
+# if __SUNPRO_CC >= 0x5100
+ /* __SUNPRO_CC = 0xVRRP */
+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
+# else
+ /* __SUNPRO_CC = 0xVRP */
+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
+# endif
+
+#elif defined(__HP_aCC)
+# define COMPILER_ID "HP"
+ /* __HP_aCC = VVRRPP */
+# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
+# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
+# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
+
+#elif defined(__DECCXX)
+# define COMPILER_ID "Compaq"
+ /* __DECCXX_VER = VVRRTPPPP */
+# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
+# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
+# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
+
+#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
+# define COMPILER_ID "zOS"
+ /* __IBMCPP__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
+
+#elif defined(__open_xl__) && defined(__clang__)
+# define COMPILER_ID "IBMClang"
+# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
+# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
+# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
+# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
+
+
+#elif defined(__ibmxl__) && defined(__clang__)
+# define COMPILER_ID "XLClang"
+# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
+# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
+# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
+# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
+
+
+#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
+# define COMPILER_ID "XL"
+ /* __IBMCPP__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
+
+#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
+# define COMPILER_ID "VisualAge"
+ /* __IBMCPP__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
+
+#elif defined(__NVCOMPILER)
+# define COMPILER_ID "NVHPC"
+# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
+# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
+# if defined(__NVCOMPILER_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
+# endif
+
+#elif defined(__PGI)
+# define COMPILER_ID "PGI"
+# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
+# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
+# if defined(__PGIC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
+# endif
+
+#elif defined(__clang__) && defined(__cray__)
+# define COMPILER_ID "CrayClang"
+# define COMPILER_VERSION_MAJOR DEC(__cray_major__)
+# define COMPILER_VERSION_MINOR DEC(__cray_minor__)
+# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__)
+# define COMPILER_VERSION_INTERNAL_STR __clang_version__
+
+
+#elif defined(_CRAYC)
+# define COMPILER_ID "Cray"
+# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
+# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
+
+#elif defined(__TI_COMPILER_VERSION__)
+# define COMPILER_ID "TI"
+ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
+# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
+# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
+# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
+
+#elif defined(__CLANG_FUJITSU)
+# define COMPILER_ID "FujitsuClang"
+# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
+# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
+# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
+# define COMPILER_VERSION_INTERNAL_STR __clang_version__
+
+
+#elif defined(__FUJITSU)
+# define COMPILER_ID "Fujitsu"
+# if defined(__FCC_version__)
+# define COMPILER_VERSION __FCC_version__
+# elif defined(__FCC_major__)
+# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
+# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
+# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
+# endif
+# if defined(__fcc_version)
+# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
+# elif defined(__FCC_VERSION)
+# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
+# endif
+
+
+#elif defined(__ghs__)
+# define COMPILER_ID "GHS"
+/* __GHS_VERSION_NUMBER = VVVVRP */
+# ifdef __GHS_VERSION_NUMBER
+# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
+# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
+# endif
+
+#elif defined(__TASKING__)
+# define COMPILER_ID "Tasking"
+ # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000)
+ # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100)
+# define COMPILER_VERSION_INTERNAL DEC(__VERSION__)
+
+#elif defined(__ORANGEC__)
+# define COMPILER_ID "OrangeC"
+# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__)
+# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__)
+# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__)
+
+#elif defined(__SCO_VERSION__)
+# define COMPILER_ID "SCO"
+
+#elif defined(__ARMCC_VERSION) && !defined(__clang__)
+# define COMPILER_ID "ARMCC"
+#if __ARMCC_VERSION >= 1000000
+ /* __ARMCC_VERSION = VRRPPPP */
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
+#else
+ /* __ARMCC_VERSION = VRPPPP */
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
+#endif
+
+
+#elif defined(__clang__) && defined(__apple_build_version__)
+# define COMPILER_ID "AppleClang"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
+# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
+
+#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
+# define COMPILER_ID "ARMClang"
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100)
+# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
+
+#elif defined(__clang__) && defined(__ti__)
+# define COMPILER_ID "TIClang"
+ # define COMPILER_VERSION_MAJOR DEC(__ti_major__)
+ # define COMPILER_VERSION_MINOR DEC(__ti_minor__)
+ # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__)
+# define COMPILER_VERSION_INTERNAL DEC(__ti_version__)
+
+#elif defined(__clang__)
+# define COMPILER_ID "Clang"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
+# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+
+#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
+# define COMPILER_ID "LCC"
+# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100)
+# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100)
+# if defined(__LCC_MINOR__)
+# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
+# endif
+# if defined(__GNUC__) && defined(__GNUC_MINOR__)
+# define SIMULATE_ID "GNU"
+# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
+# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
+# if defined(__GNUC_PATCHLEVEL__)
+# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
+# endif
+# endif
+
+#elif defined(__GNUC__) || defined(__GNUG__)
+# define COMPILER_ID "GNU"
+# if defined(__GNUC__)
+# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
+# else
+# define COMPILER_VERSION_MAJOR DEC(__GNUG__)
+# endif
+# if defined(__GNUC_MINOR__)
+# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
+# endif
+# if defined(__GNUC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
+# endif
+
+#elif defined(_MSC_VER)
+# define COMPILER_ID "MSVC"
+ /* _MSC_VER = VVRR */
+# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
+# if defined(_MSC_FULL_VER)
+# if _MSC_VER >= 1400
+ /* _MSC_FULL_VER = VVRRPPPPP */
+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
+# else
+ /* _MSC_FULL_VER = VVRRPPPP */
+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
+# endif
+# endif
+# if defined(_MSC_BUILD)
+# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
+# endif
+
+#elif defined(_ADI_COMPILER)
+# define COMPILER_ID "ADSP"
+#if defined(__VERSIONNUM__)
+ /* __VERSIONNUM__ = 0xVVRRPPTT */
+# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
+# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
+# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
+# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
+#endif
+
+#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
+# define COMPILER_ID "IAR"
+# if defined(__VER__) && defined(__ICCARM__)
+# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
+# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
+# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
+# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
+# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
+# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
+# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
+# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
+# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
+# endif
+
+
+/* These compilers are either not known or too old to define an
+ identification macro. Try to identify the platform and guess that
+ it is the native compiler. */
+#elif defined(__hpux) || defined(__hpua)
+# define COMPILER_ID "HP"
+
+#else /* unknown compiler */
+# define COMPILER_ID ""
+#endif
+
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
+#ifdef SIMULATE_ID
+char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
+#endif
+
+#ifdef __QNXNTO__
+char const* qnxnto = "INFO" ":" "qnxnto[]";
+#endif
+
+#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
+char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
+#endif
+
+#define STRINGIFY_HELPER(X) #X
+#define STRINGIFY(X) STRINGIFY_HELPER(X)
+
+/* Identify known platforms by name. */
+#if defined(__linux) || defined(__linux__) || defined(linux)
+# define PLATFORM_ID "Linux"
+
+#elif defined(__MSYS__)
+# define PLATFORM_ID "MSYS"
+
+#elif defined(__CYGWIN__)
+# define PLATFORM_ID "Cygwin"
+
+#elif defined(__MINGW32__)
+# define PLATFORM_ID "MinGW"
+
+#elif defined(__APPLE__)
+# define PLATFORM_ID "Darwin"
+
+#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
+# define PLATFORM_ID "Windows"
+
+#elif defined(__FreeBSD__) || defined(__FreeBSD)
+# define PLATFORM_ID "FreeBSD"
+
+#elif defined(__NetBSD__) || defined(__NetBSD)
+# define PLATFORM_ID "NetBSD"
+
+#elif defined(__OpenBSD__) || defined(__OPENBSD)
+# define PLATFORM_ID "OpenBSD"
+
+#elif defined(__sun) || defined(sun)
+# define PLATFORM_ID "SunOS"
+
+#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
+# define PLATFORM_ID "AIX"
+
+#elif defined(__hpux) || defined(__hpux__)
+# define PLATFORM_ID "HP-UX"
+
+#elif defined(__HAIKU__)
+# define PLATFORM_ID "Haiku"
+
+#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
+# define PLATFORM_ID "BeOS"
+
+#elif defined(__QNX__) || defined(__QNXNTO__)
+# define PLATFORM_ID "QNX"
+
+#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
+# define PLATFORM_ID "Tru64"
+
+#elif defined(__riscos) || defined(__riscos__)
+# define PLATFORM_ID "RISCos"
+
+#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
+# define PLATFORM_ID "SINIX"
+
+#elif defined(__UNIX_SV__)
+# define PLATFORM_ID "UNIX_SV"
+
+#elif defined(__bsdos__)
+# define PLATFORM_ID "BSDOS"
+
+#elif defined(_MPRAS) || defined(MPRAS)
+# define PLATFORM_ID "MP-RAS"
+
+#elif defined(__osf) || defined(__osf__)
+# define PLATFORM_ID "OSF1"
+
+#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
+# define PLATFORM_ID "SCO_SV"
+
+#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
+# define PLATFORM_ID "ULTRIX"
+
+#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
+# define PLATFORM_ID "Xenix"
+
+#elif defined(__WATCOMC__)
+# if defined(__LINUX__)
+# define PLATFORM_ID "Linux"
+
+# elif defined(__DOS__)
+# define PLATFORM_ID "DOS"
+
+# elif defined(__OS2__)
+# define PLATFORM_ID "OS2"
+
+# elif defined(__WINDOWS__)
+# define PLATFORM_ID "Windows3x"
+
+# elif defined(__VXWORKS__)
+# define PLATFORM_ID "VxWorks"
+
+# else /* unknown platform */
+# define PLATFORM_ID
+# endif
+
+#elif defined(__INTEGRITY)
+# if defined(INT_178B)
+# define PLATFORM_ID "Integrity178"
+
+# else /* regular Integrity */
+# define PLATFORM_ID "Integrity"
+# endif
+
+# elif defined(_ADI_COMPILER)
+# define PLATFORM_ID "ADSP"
+
+#else /* unknown platform */
+# define PLATFORM_ID
+
+#endif
+
+/* For windows compilers MSVC and Intel we can determine
+ the architecture of the compiler being used. This is because
+ the compilers do not have flags that can change the architecture,
+ but rather depend on which compiler is being used
+*/
+#if defined(_WIN32) && defined(_MSC_VER)
+# if defined(_M_IA64)
+# define ARCHITECTURE_ID "IA64"
+
+# elif defined(_M_ARM64EC)
+# define ARCHITECTURE_ID "ARM64EC"
+
+# elif defined(_M_X64) || defined(_M_AMD64)
+# define ARCHITECTURE_ID "x64"
+
+# elif defined(_M_IX86)
+# define ARCHITECTURE_ID "X86"
+
+# elif defined(_M_ARM64)
+# define ARCHITECTURE_ID "ARM64"
+
+# elif defined(_M_ARM)
+# if _M_ARM == 4
+# define ARCHITECTURE_ID "ARMV4I"
+# elif _M_ARM == 5
+# define ARCHITECTURE_ID "ARMV5I"
+# else
+# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
+# endif
+
+# elif defined(_M_MIPS)
+# define ARCHITECTURE_ID "MIPS"
+
+# elif defined(_M_SH)
+# define ARCHITECTURE_ID "SHx"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__WATCOMC__)
+# if defined(_M_I86)
+# define ARCHITECTURE_ID "I86"
+
+# elif defined(_M_IX86)
+# define ARCHITECTURE_ID "X86"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
+# if defined(__ICCARM__)
+# define ARCHITECTURE_ID "ARM"
+
+# elif defined(__ICCRX__)
+# define ARCHITECTURE_ID "RX"
+
+# elif defined(__ICCRH850__)
+# define ARCHITECTURE_ID "RH850"
+
+# elif defined(__ICCRL78__)
+# define ARCHITECTURE_ID "RL78"
+
+# elif defined(__ICCRISCV__)
+# define ARCHITECTURE_ID "RISCV"
+
+# elif defined(__ICCAVR__)
+# define ARCHITECTURE_ID "AVR"
+
+# elif defined(__ICC430__)
+# define ARCHITECTURE_ID "MSP430"
+
+# elif defined(__ICCV850__)
+# define ARCHITECTURE_ID "V850"
+
+# elif defined(__ICC8051__)
+# define ARCHITECTURE_ID "8051"
+
+# elif defined(__ICCSTM8__)
+# define ARCHITECTURE_ID "STM8"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__ghs__)
+# if defined(__PPC64__)
+# define ARCHITECTURE_ID "PPC64"
+
+# elif defined(__ppc__)
+# define ARCHITECTURE_ID "PPC"
+
+# elif defined(__ARM__)
+# define ARCHITECTURE_ID "ARM"
+
+# elif defined(__x86_64__)
+# define ARCHITECTURE_ID "x64"
+
+# elif defined(__i386__)
+# define ARCHITECTURE_ID "X86"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__clang__) && defined(__ti__)
+# if defined(__ARM_ARCH)
+# define ARCHITECTURE_ID "Arm"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__TI_COMPILER_VERSION__)
+# if defined(__TI_ARM__)
+# define ARCHITECTURE_ID "ARM"
+
+# elif defined(__MSP430__)
+# define ARCHITECTURE_ID "MSP430"
+
+# elif defined(__TMS320C28XX__)
+# define ARCHITECTURE_ID "TMS320C28x"
+
+# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
+# define ARCHITECTURE_ID "TMS320C6x"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+# elif defined(__ADSPSHARC__)
+# define ARCHITECTURE_ID "SHARC"
+
+# elif defined(__ADSPBLACKFIN__)
+# define ARCHITECTURE_ID "Blackfin"
+
+#elif defined(__TASKING__)
+
+# if defined(__CTC__) || defined(__CPTC__)
+# define ARCHITECTURE_ID "TriCore"
+
+# elif defined(__CMCS__)
+# define ARCHITECTURE_ID "MCS"
+
+# elif defined(__CARM__)
+# define ARCHITECTURE_ID "ARM"
+
+# elif defined(__CARC__)
+# define ARCHITECTURE_ID "ARC"
+
+# elif defined(__C51__)
+# define ARCHITECTURE_ID "8051"
+
+# elif defined(__CPCP__)
+# define ARCHITECTURE_ID "PCP"
+
+# else
+# define ARCHITECTURE_ID ""
+# endif
+
+#else
+# define ARCHITECTURE_ID
+#endif
+
+/* Convert integer to decimal digit literals. */
+#define DEC(n) \
+ ('0' + (((n) / 10000000)%10)), \
+ ('0' + (((n) / 1000000)%10)), \
+ ('0' + (((n) / 100000)%10)), \
+ ('0' + (((n) / 10000)%10)), \
+ ('0' + (((n) / 1000)%10)), \
+ ('0' + (((n) / 100)%10)), \
+ ('0' + (((n) / 10)%10)), \
+ ('0' + ((n) % 10))
+
+/* Convert integer to hex digit literals. */
+#define HEX(n) \
+ ('0' + ((n)>>28 & 0xF)), \
+ ('0' + ((n)>>24 & 0xF)), \
+ ('0' + ((n)>>20 & 0xF)), \
+ ('0' + ((n)>>16 & 0xF)), \
+ ('0' + ((n)>>12 & 0xF)), \
+ ('0' + ((n)>>8 & 0xF)), \
+ ('0' + ((n)>>4 & 0xF)), \
+ ('0' + ((n) & 0xF))
+
+/* Construct a string literal encoding the version number. */
+#ifdef COMPILER_VERSION
+char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
+
+/* Construct a string literal encoding the version number components. */
+#elif defined(COMPILER_VERSION_MAJOR)
+char const info_version[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
+ COMPILER_VERSION_MAJOR,
+# ifdef COMPILER_VERSION_MINOR
+ '.', COMPILER_VERSION_MINOR,
+# ifdef COMPILER_VERSION_PATCH
+ '.', COMPILER_VERSION_PATCH,
+# ifdef COMPILER_VERSION_TWEAK
+ '.', COMPILER_VERSION_TWEAK,
+# endif
+# endif
+# endif
+ ']','\0'};
+#endif
+
+/* Construct a string literal encoding the internal version number. */
+#ifdef COMPILER_VERSION_INTERNAL
+char const info_version_internal[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
+ 'i','n','t','e','r','n','a','l','[',
+ COMPILER_VERSION_INTERNAL,']','\0'};
+#elif defined(COMPILER_VERSION_INTERNAL_STR)
+char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
+#endif
+
+/* Construct a string literal encoding the version number components. */
+#ifdef SIMULATE_VERSION_MAJOR
+char const info_simulate_version[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
+ SIMULATE_VERSION_MAJOR,
+# ifdef SIMULATE_VERSION_MINOR
+ '.', SIMULATE_VERSION_MINOR,
+# ifdef SIMULATE_VERSION_PATCH
+ '.', SIMULATE_VERSION_PATCH,
+# ifdef SIMULATE_VERSION_TWEAK
+ '.', SIMULATE_VERSION_TWEAK,
+# endif
+# endif
+# endif
+ ']','\0'};
+#endif
+
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
+char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
+
+
+
+#define CXX_STD_98 199711L
+#define CXX_STD_11 201103L
+#define CXX_STD_14 201402L
+#define CXX_STD_17 201703L
+#define CXX_STD_20 202002L
+#define CXX_STD_23 202302L
+
+#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG)
+# if _MSVC_LANG > CXX_STD_17
+# define CXX_STD _MSVC_LANG
+# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init)
+# define CXX_STD CXX_STD_20
+# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17
+# define CXX_STD CXX_STD_20
+# elif _MSVC_LANG > CXX_STD_14
+# define CXX_STD CXX_STD_17
+# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi)
+# define CXX_STD CXX_STD_14
+# elif defined(__INTEL_CXX11_MODE__)
+# define CXX_STD CXX_STD_11
+# else
+# define CXX_STD CXX_STD_98
+# endif
+#elif defined(_MSC_VER) && defined(_MSVC_LANG)
+# if _MSVC_LANG > __cplusplus
+# define CXX_STD _MSVC_LANG
+# else
+# define CXX_STD __cplusplus
+# endif
+#elif defined(__NVCOMPILER)
+# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init)
+# define CXX_STD CXX_STD_20
+# else
+# define CXX_STD __cplusplus
+# endif
+#elif defined(__INTEL_COMPILER) || defined(__PGI)
+# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes)
+# define CXX_STD CXX_STD_17
+# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi)
+# define CXX_STD CXX_STD_14
+# else
+# define CXX_STD __cplusplus
+# endif
+#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__)
+# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi)
+# define CXX_STD CXX_STD_14
+# else
+# define CXX_STD __cplusplus
+# endif
+#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__)
+# define CXX_STD CXX_STD_11
+#else
+# define CXX_STD __cplusplus
+#endif
+
+const char* info_language_standard_default = "INFO" ":" "standard_default["
+#if CXX_STD > CXX_STD_23
+ "26"
+#elif CXX_STD > CXX_STD_20
+ "23"
+#elif CXX_STD > CXX_STD_17
+ "20"
+#elif CXX_STD > CXX_STD_14
+ "17"
+#elif CXX_STD > CXX_STD_11
+ "14"
+#elif CXX_STD >= CXX_STD_11
+ "11"
+#else
+ "98"
+#endif
+"]";
+
+const char* info_language_extensions_default = "INFO" ":" "extensions_default["
+#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
+ defined(__TI_COMPILER_VERSION__)) && \
+ !defined(__STRICT_ANSI__)
+ "ON"
+#else
+ "OFF"
+#endif
+"]";
+
+/*--------------------------------------------------------------------------*/
+
+int main(int argc, char* argv[])
+{
+ int require = 0;
+ require += info_compiler[argc];
+ require += info_platform[argc];
+ require += info_arch[argc];
+#ifdef COMPILER_VERSION_MAJOR
+ require += info_version[argc];
+#endif
+#ifdef COMPILER_VERSION_INTERNAL
+ require += info_version_internal[argc];
+#endif
+#ifdef SIMULATE_ID
+ require += info_simulate[argc];
+#endif
+#ifdef SIMULATE_VERSION_MAJOR
+ require += info_simulate_version[argc];
+#endif
+#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
+ require += info_cray[argc];
+#endif
+ require += info_language_standard_default[argc];
+ require += info_language_extensions_default[argc];
+ (void)argv;
+ return require;
+}
diff --git a/gdlibretro/CMakeFiles/3.30.3/CompilerIdCXX/a.out b/gdlibretro/CMakeFiles/3.30.3/CompilerIdCXX/a.out
new file mode 100755
index 0000000..3c7003a
Binary files /dev/null and b/gdlibretro/CMakeFiles/3.30.3/CompilerIdCXX/a.out differ
diff --git a/gdlibretro/CMakeFiles/CMakeConfigureLog.yaml b/gdlibretro/CMakeFiles/CMakeConfigureLog.yaml
new file mode 100644
index 0000000..5934012
--- /dev/null
+++ b/gdlibretro/CMakeFiles/CMakeConfigureLog.yaml
@@ -0,0 +1,327 @@
+
+---
+events:
+ -
+ kind: "message-v1"
+ backtrace:
+ - "/usr/share/cmake-3.30/Modules/CMakeDetermineSystem.cmake:205 (message)"
+ - "CMakeLists.txt:30 (project)"
+ message: |
+ The system is: Linux - 6.11.0-9-generic - x86_64
+ -
+ kind: "message-v1"
+ backtrace:
+ - "/usr/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
+ - "/usr/share/cmake-3.30/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
+ - "/usr/share/cmake-3.30/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)"
+ - "CMakeLists.txt:30 (project)"
+ message: |
+ Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
+ Compiler: /usr/bin/c++
+ Build flags:
+ Id flags:
+
+ The output was:
+ 0
+
+
+ Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
+
+ The CXX compiler identification is GNU, found in:
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/3.30.3/CompilerIdCXX/a.out
+
+ -
+ kind: "try_compile-v1"
+ backtrace:
+ - "/usr/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)"
+ - "/usr/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
+ - "CMakeLists.txt:30 (project)"
+ checks:
+ - "Detecting CXX compiler ABI info"
+ directories:
+ source: "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/CMakeScratch/TryCompile-bDOfGO"
+ binary: "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/CMakeScratch/TryCompile-bDOfGO"
+ cmakeVariables:
+ CMAKE_CXX_FLAGS: ""
+ CMAKE_CXX_FLAGS_DEBUG: "-g"
+ CMAKE_CXX_SCAN_FOR_MODULES: "OFF"
+ CMAKE_EXE_LINKER_FLAGS: ""
+ CMAKE_MODULE_PATH: "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/cmake/"
+ buildResult:
+ variable: "CMAKE_CXX_ABI_COMPILED"
+ cached: true
+ stdout: |
+ Change Dir: '/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/CMakeScratch/TryCompile-bDOfGO'
+
+ Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_f201c/fast
+ /usr/bin/gmake -f CMakeFiles/cmTC_f201c.dir/build.make CMakeFiles/cmTC_f201c.dir/build
+ gmake[1]: Entering directory '/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/CMakeScratch/TryCompile-bDOfGO'
+ Building CXX object CMakeFiles/cmTC_f201c.dir/CMakeCXXCompilerABI.cpp.o
+ /usr/bin/c++ -v -o CMakeFiles/cmTC_f201c.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp
+ Using built-in specs.
+ COLLECT_GCC=/usr/bin/c++
+ OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
+ OFFLOAD_TARGET_DEFAULT=1
+ Target: x86_64-linux-gnu
+ Configured with: ../src/configure -v --with-pkgversion='Ubuntu 14.2.0-4ubuntu2' --with-bugurl=file:///usr/share/doc/gcc-14/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2,rust --prefix=/usr --with-gcc-major-version-only --program-suffix=-14 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-14-zdkDXv/gcc-14-14.2.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-14-zdkDXv/gcc-14-14.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2
+ Thread model: posix
+ Supported LTO compression algorithms: zlib zstd
+ gcc version 14.2.0 (Ubuntu 14.2.0-4ubuntu2)
+ COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f201c.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f201c.dir/'
+ /usr/libexec/gcc/x86_64-linux-gnu/14/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_f201c.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccJIEzct.s
+ GNU C++17 (Ubuntu 14.2.0-4ubuntu2) version 14.2.0 (x86_64-linux-gnu)
+ compiled by GNU C version 14.2.0, GMP version 6.3.0, MPFR version 4.2.1, MPC version 1.3.1, isl version isl-0.27-GMP
+
+ GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
+ ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/14"
+ ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
+ ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/14/include-fixed/x86_64-linux-gnu"
+ ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/14/include-fixed"
+ ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/14/../../../../x86_64-linux-gnu/include"
+ #include "..." search starts here:
+ #include <...> search starts here:
+ /usr/include/c++/14
+ /usr/include/x86_64-linux-gnu/c++/14
+ /usr/include/c++/14/backward
+ /usr/lib/gcc/x86_64-linux-gnu/14/include
+ /usr/local/include
+ /usr/include/x86_64-linux-gnu
+ /usr/include
+ End of search list.
+ Compiler executable checksum: 0ada43b995bdef5b0e2324f5a3bfb633
+ COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f201c.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f201c.dir/'
+ as -v --64 -o CMakeFiles/cmTC_f201c.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccJIEzct.s
+ GNU assembler version 2.43.1 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.43.1
+ COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/14/:/usr/libexec/gcc/x86_64-linux-gnu/14/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/14/:/usr/lib/gcc/x86_64-linux-gnu/
+ LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/14/:/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/14/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/14/../../../:/lib/:/usr/lib/
+ COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f201c.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f201c.dir/CMakeCXXCompilerABI.cpp.'
+ Linking CXX executable cmTC_f201c
+ /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f201c.dir/link.txt --verbose=1
+ /usr/bin/c++ -v -Wl,-v CMakeFiles/cmTC_f201c.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_f201c
+ Using built-in specs.
+ COLLECT_GCC=/usr/bin/c++
+ COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/14/lto-wrapper
+ OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
+ OFFLOAD_TARGET_DEFAULT=1
+ Target: x86_64-linux-gnu
+ Configured with: ../src/configure -v --with-pkgversion='Ubuntu 14.2.0-4ubuntu2' --with-bugurl=file:///usr/share/doc/gcc-14/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2,rust --prefix=/usr --with-gcc-major-version-only --program-suffix=-14 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-14-zdkDXv/gcc-14-14.2.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-14-zdkDXv/gcc-14-14.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2
+ Thread model: posix
+ Supported LTO compression algorithms: zlib zstd
+ gcc version 14.2.0 (Ubuntu 14.2.0-4ubuntu2)
+ COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/14/:/usr/libexec/gcc/x86_64-linux-gnu/14/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/14/:/usr/lib/gcc/x86_64-linux-gnu/
+ LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/14/:/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/14/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/14/../../../:/lib/:/usr/lib/
+ COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f201c' '-foffload-options=-l_GCC_m' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_f201c.'
+ /usr/libexec/gcc/x86_64-linux-gnu/14/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/14/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/14/lto-wrapper -plugin-opt=-fresolution=/tmp/cc8KNHTM.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_f201c /usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/14/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/14 -L/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/14/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/14/../../.. -v CMakeFiles/cmTC_f201c.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/14/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/crtn.o
+ collect2 version 14.2.0
+ /usr/bin/ld -plugin /usr/libexec/gcc/x86_64-linux-gnu/14/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/14/lto-wrapper -plugin-opt=-fresolution=/tmp/cc8KNHTM.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_f201c /usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/14/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/14 -L/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/14/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/14/../../.. -v CMakeFiles/cmTC_f201c.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/14/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/crtn.o
+ GNU ld (GNU Binutils for Ubuntu) 2.43.1
+ COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f201c' '-foffload-options=-l_GCC_m' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_f201c.'
+ gmake[1]: Leaving directory '/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/CMakeScratch/TryCompile-bDOfGO'
+
+ exitCode: 0
+ -
+ kind: "message-v1"
+ backtrace:
+ - "/usr/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:182 (message)"
+ - "/usr/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
+ - "CMakeLists.txt:30 (project)"
+ message: |
+ Parsed CXX implicit include dir info: rv=done
+ found start of include info
+ found start of implicit include info
+ add: [/usr/include/c++/14]
+ add: [/usr/include/x86_64-linux-gnu/c++/14]
+ add: [/usr/include/c++/14/backward]
+ add: [/usr/lib/gcc/x86_64-linux-gnu/14/include]
+ add: [/usr/local/include]
+ add: [/usr/include/x86_64-linux-gnu]
+ add: [/usr/include]
+ end of search list found
+ collapse include dir [/usr/include/c++/14] ==> [/usr/include/c++/14]
+ collapse include dir [/usr/include/x86_64-linux-gnu/c++/14] ==> [/usr/include/x86_64-linux-gnu/c++/14]
+ collapse include dir [/usr/include/c++/14/backward] ==> [/usr/include/c++/14/backward]
+ collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/14/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/14/include]
+ collapse include dir [/usr/local/include] ==> [/usr/local/include]
+ collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu]
+ collapse include dir [/usr/include] ==> [/usr/include]
+ implicit include dirs: [/usr/include/c++/14;/usr/include/x86_64-linux-gnu/c++/14;/usr/include/c++/14/backward;/usr/lib/gcc/x86_64-linux-gnu/14/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include]
+
+
+ -
+ kind: "message-v1"
+ backtrace:
+ - "/usr/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:218 (message)"
+ - "/usr/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
+ - "CMakeLists.txt:30 (project)"
+ message: |
+ Parsed CXX implicit link information:
+ link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
+ linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)]
+ ignore line: [Change Dir: '/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/CMakeScratch/TryCompile-bDOfGO']
+ ignore line: []
+ ignore line: [Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_f201c/fast]
+ ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_f201c.dir/build.make CMakeFiles/cmTC_f201c.dir/build]
+ ignore line: [gmake[1]: Entering directory '/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/CMakeScratch/TryCompile-bDOfGO']
+ ignore line: [Building CXX object CMakeFiles/cmTC_f201c.dir/CMakeCXXCompilerABI.cpp.o]
+ ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_f201c.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp]
+ ignore line: [Using built-in specs.]
+ ignore line: [COLLECT_GCC=/usr/bin/c++]
+ ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa]
+ ignore line: [OFFLOAD_TARGET_DEFAULT=1]
+ ignore line: [Target: x86_64-linux-gnu]
+ ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 14.2.0-4ubuntu2' --with-bugurl=file:///usr/share/doc/gcc-14/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 rust --prefix=/usr --with-gcc-major-version-only --program-suffix=-14 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-14-zdkDXv/gcc-14-14.2.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-14-zdkDXv/gcc-14-14.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2]
+ ignore line: [Thread model: posix]
+ ignore line: [Supported LTO compression algorithms: zlib zstd]
+ ignore line: [gcc version 14.2.0 (Ubuntu 14.2.0-4ubuntu2) ]
+ ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f201c.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f201c.dir/']
+ ignore line: [ /usr/libexec/gcc/x86_64-linux-gnu/14/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.30/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_f201c.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccJIEzct.s]
+ ignore line: [GNU C++17 (Ubuntu 14.2.0-4ubuntu2) version 14.2.0 (x86_64-linux-gnu)]
+ ignore line: [ compiled by GNU C version 14.2.0 GMP version 6.3.0 MPFR version 4.2.1 MPC version 1.3.1 isl version isl-0.27-GMP]
+ ignore line: []
+ ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
+ ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/14"]
+ ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"]
+ ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/14/include-fixed/x86_64-linux-gnu"]
+ ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/14/include-fixed"]
+ ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/14/../../../../x86_64-linux-gnu/include"]
+ ignore line: [#include "..." search starts here:]
+ ignore line: [#include <...> search starts here:]
+ ignore line: [ /usr/include/c++/14]
+ ignore line: [ /usr/include/x86_64-linux-gnu/c++/14]
+ ignore line: [ /usr/include/c++/14/backward]
+ ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/14/include]
+ ignore line: [ /usr/local/include]
+ ignore line: [ /usr/include/x86_64-linux-gnu]
+ ignore line: [ /usr/include]
+ ignore line: [End of search list.]
+ ignore line: [Compiler executable checksum: 0ada43b995bdef5b0e2324f5a3bfb633]
+ ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f201c.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f201c.dir/']
+ ignore line: [ as -v --64 -o CMakeFiles/cmTC_f201c.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccJIEzct.s]
+ ignore line: [GNU assembler version 2.43.1 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.43.1]
+ ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/14/:/usr/libexec/gcc/x86_64-linux-gnu/14/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/14/:/usr/lib/gcc/x86_64-linux-gnu/]
+ ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/14/:/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/14/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/14/../../../:/lib/:/usr/lib/]
+ ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_f201c.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_f201c.dir/CMakeCXXCompilerABI.cpp.']
+ ignore line: [Linking CXX executable cmTC_f201c]
+ ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f201c.dir/link.txt --verbose=1]
+ ignore line: [/usr/bin/c++ -v -Wl -v CMakeFiles/cmTC_f201c.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_f201c]
+ ignore line: [Using built-in specs.]
+ ignore line: [COLLECT_GCC=/usr/bin/c++]
+ ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-linux-gnu/14/lto-wrapper]
+ ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa]
+ ignore line: [OFFLOAD_TARGET_DEFAULT=1]
+ ignore line: [Target: x86_64-linux-gnu]
+ ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 14.2.0-4ubuntu2' --with-bugurl=file:///usr/share/doc/gcc-14/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 rust --prefix=/usr --with-gcc-major-version-only --program-suffix=-14 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/libexec --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-libstdcxx-backtrace --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-14-zdkDXv/gcc-14-14.2.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-14-zdkDXv/gcc-14-14.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu --with-build-config=bootstrap-lto-lean --enable-link-serialization=2]
+ ignore line: [Thread model: posix]
+ ignore line: [Supported LTO compression algorithms: zlib zstd]
+ ignore line: [gcc version 14.2.0 (Ubuntu 14.2.0-4ubuntu2) ]
+ ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-linux-gnu/14/:/usr/libexec/gcc/x86_64-linux-gnu/14/:/usr/libexec/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/14/:/usr/lib/gcc/x86_64-linux-gnu/]
+ ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/14/:/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/14/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/14/../../../:/lib/:/usr/lib/]
+ ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f201c' '-foffload-options=-l_GCC_m' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_f201c.']
+ link line: [ /usr/libexec/gcc/x86_64-linux-gnu/14/collect2 -plugin /usr/libexec/gcc/x86_64-linux-gnu/14/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/14/lto-wrapper -plugin-opt=-fresolution=/tmp/cc8KNHTM.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_f201c /usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/14/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/14 -L/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/14/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/14/../../.. -v CMakeFiles/cmTC_f201c.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/14/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/crtn.o]
+ arg [/usr/libexec/gcc/x86_64-linux-gnu/14/collect2] ==> ignore
+ arg [-plugin] ==> ignore
+ arg [/usr/libexec/gcc/x86_64-linux-gnu/14/liblto_plugin.so] ==> ignore
+ arg [-plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/14/lto-wrapper] ==> ignore
+ arg [-plugin-opt=-fresolution=/tmp/cc8KNHTM.res] ==> ignore
+ arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
+ arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
+ arg [-plugin-opt=-pass-through=-lc] ==> ignore
+ arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
+ arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
+ arg [--build-id] ==> ignore
+ arg [--eh-frame-hdr] ==> ignore
+ arg [-m] ==> ignore
+ arg [elf_x86_64] ==> ignore
+ arg [--hash-style=gnu] ==> ignore
+ arg [--as-needed] ==> ignore
+ arg [-dynamic-linker] ==> ignore
+ arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
+ arg [-pie] ==> ignore
+ arg [-znow] ==> ignore
+ arg [-zrelro] ==> ignore
+ arg [-o] ==> ignore
+ arg [cmTC_f201c] ==> ignore
+ arg [/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/Scrt1.o]
+ arg [/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/crti.o]
+ arg [/usr/lib/gcc/x86_64-linux-gnu/14/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/14/crtbeginS.o]
+ arg [-L/usr/lib/gcc/x86_64-linux-gnu/14] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/14]
+ arg [-L/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu]
+ arg [-L/usr/lib/gcc/x86_64-linux-gnu/14/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/14/../../../../lib]
+ arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
+ arg [-L/lib/../lib] ==> dir [/lib/../lib]
+ arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
+ arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
+ arg [-L/usr/lib/gcc/x86_64-linux-gnu/14/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/14/../../..]
+ arg [-v] ==> ignore
+ arg [CMakeFiles/cmTC_f201c.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/lib/gcc/x86_64-linux-gnu/14/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/14/crtendS.o]
+ arg [/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/crtn.o]
+ ignore line: [collect2 version 14.2.0]
+ ignore line: [/usr/bin/ld -plugin /usr/libexec/gcc/x86_64-linux-gnu/14/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-linux-gnu/14/lto-wrapper -plugin-opt=-fresolution=/tmp/cc8KNHTM.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_f201c /usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/14/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/14 -L/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/14/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/14/../../.. -v CMakeFiles/cmTC_f201c.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/14/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/crtn.o]
+ linker tool for 'CXX': /usr/bin/ld
+ collapse obj [/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o]
+ collapse obj [/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o]
+ collapse obj [/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o]
+ collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/14] ==> [/usr/lib/gcc/x86_64-linux-gnu/14]
+ collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/14/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
+ collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/14/../../../../lib] ==> [/usr/lib]
+ collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
+ collapse library dir [/lib/../lib] ==> [/lib]
+ collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
+ collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
+ collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/14/../../..] ==> [/usr/lib]
+ implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc]
+ implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/14/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/14/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o]
+ implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/14;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
+ implicit fwks: []
+
+
+ -
+ kind: "message-v1"
+ backtrace:
+ - "/usr/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)"
+ - "/usr/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:255 (cmake_determine_linker_id)"
+ - "/usr/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
+ - "CMakeLists.txt:30 (project)"
+ message: |
+ Running the CXX compiler's linker: "/usr/bin/ld" "-v"
+ ld di GNU (GNU Binutils for Ubuntu) 2.43.1
+ -
+ kind: "message-v1"
+ backtrace:
+ - "/usr/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)"
+ - "/usr/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:255 (cmake_determine_linker_id)"
+ - "/usr/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
+ - "CMakeLists.txt:30 (project)"
+ message: |
+ Running the CXX compiler's linker: "/usr/bin/ld" "-V"
+ ld di GNU (GNU Binutils for Ubuntu) 2.43.1
+ Emulazioni supportate:
+ elf_x86_64
+ elf32_x86_64
+ elf_i386
+ elf_iamcu
+ i386pep
+ i386pe
+ -
+ kind: "message-v1"
+ backtrace:
+ - "/usr/share/cmake-3.30/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)"
+ - "/usr/share/cmake-3.30/Modules/CMakeDetermineCompilerABI.cmake:255 (cmake_determine_linker_id)"
+ - "/usr/share/cmake-3.30/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)"
+ - "CMakeLists.txt:30 (project)"
+ message: |
+ Running the CXX compiler's linker: "/usr/bin/ld" "--version"
+ ld di GNU (GNU Binutils for Ubuntu) 2.43.1
+ Copyright (C) 2024 Free Software Foundation, Inc.
+ Questo programma è software libero; siete liberi di ridistribuirlo secondo i termini
+ della GNU General Public License versione 3 o (a scelta) una versione più recente.
+ Questo programma non ha assolutamente alcuna garanzia.
+...
diff --git a/gdlibretro/CMakeFiles/CMakeDirectoryInformation.cmake b/gdlibretro/CMakeFiles/CMakeDirectoryInformation.cmake
new file mode 100644
index 0000000..266754e
--- /dev/null
+++ b/gdlibretro/CMakeFiles/CMakeDirectoryInformation.cmake
@@ -0,0 +1,16 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.30
+
+# Relative path conversion top directories.
+set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro")
+set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro")
+
+# Force unix paths in dependencies.
+set(CMAKE_FORCE_UNIX_PATHS 1)
+
+
+# The C and CXX include file regular expressions for this directory.
+set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
+set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
+set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
+set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
diff --git a/gdlibretro/CMakeFiles/CMakeRuleHashes.txt b/gdlibretro/CMakeFiles/CMakeRuleHashes.txt
new file mode 100644
index 0000000..72521ad
--- /dev/null
+++ b/gdlibretro/CMakeFiles/CMakeRuleHashes.txt
@@ -0,0 +1,31 @@
+# Hashes of file build rules.
+8653b5e555e06964595f4ebe12e5446b CMakeFiles/clang-format
+21e8ac6166f3f58778411f570a06b0f9 extern/godot-cpp/gen/include/godot_cpp/core/ext_wrappers.gen.inc
+b8c4a6f65e8bfc9aced98725325ee3eb extern/yaml-cpp/CMakeFiles/Continuous
+5ec7046d099c0740255c01a9b12609aa extern/yaml-cpp/CMakeFiles/ContinuousBuild
+ce63f998ae87bc28c06c9d8e41fc376e extern/yaml-cpp/CMakeFiles/ContinuousConfigure
+0f2c989c4590420c6cd6b24ec26e1849 extern/yaml-cpp/CMakeFiles/ContinuousCoverage
+292fea1fc1dfb52608344b18172f3617 extern/yaml-cpp/CMakeFiles/ContinuousMemCheck
+78e5187720f93a47ceec5d66964842e6 extern/yaml-cpp/CMakeFiles/ContinuousStart
+2daefcc21631688032b57a1be8b57239 extern/yaml-cpp/CMakeFiles/ContinuousSubmit
+188602fbc7d163fee9dd828376c8cfbb extern/yaml-cpp/CMakeFiles/ContinuousTest
+bfc994b4123edd9cd8962cb8bdfe90b9 extern/yaml-cpp/CMakeFiles/ContinuousUpdate
+05d99c7580ed7bb8afd7989d5bac02e3 extern/yaml-cpp/CMakeFiles/Experimental
+c0763c5244a442108bd101328a49bfb7 extern/yaml-cpp/CMakeFiles/ExperimentalBuild
+c23a3b653d5db601e017c185123cdc2b extern/yaml-cpp/CMakeFiles/ExperimentalConfigure
+ec4edf3689b33e35e73d13acb432b5f0 extern/yaml-cpp/CMakeFiles/ExperimentalCoverage
+11816b65f7786631ae2725ef3fd19fea extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck
+0f839e2a09ac1227271e2012e5a661ed extern/yaml-cpp/CMakeFiles/ExperimentalStart
+9771d9939dc0025c0a171c4aa137c6f4 extern/yaml-cpp/CMakeFiles/ExperimentalSubmit
+749b31d26ab4e2dd6531846e5b04c683 extern/yaml-cpp/CMakeFiles/ExperimentalTest
+c5b635fd6b8323197bd50f903ca6e5cb extern/yaml-cpp/CMakeFiles/ExperimentalUpdate
+d96f81dd5b2a9112e67051d791f714ae extern/yaml-cpp/CMakeFiles/Nightly
+97af03b6fab5bbb1faaf2e392fde5b9a extern/yaml-cpp/CMakeFiles/NightlyBuild
+57bec1875061a291407ae542d9f41b2b extern/yaml-cpp/CMakeFiles/NightlyConfigure
+ce9aa6321e3bb9b5725358f79b1eb713 extern/yaml-cpp/CMakeFiles/NightlyCoverage
+f0d06cdea8697ff08201372542733c5d extern/yaml-cpp/CMakeFiles/NightlyMemCheck
+e5c17d168208f2b50c1f0ecb55caf9e8 extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck
+f7e118498c128d7ee7a3445e74263f5c extern/yaml-cpp/CMakeFiles/NightlyStart
+b36bfa84b794c14cf329e5301d1d48e3 extern/yaml-cpp/CMakeFiles/NightlySubmit
+a307b5b40ce0bb7606173133721635c6 extern/yaml-cpp/CMakeFiles/NightlyTest
+5370917142cd0d87393634a6255d1a5a extern/yaml-cpp/CMakeFiles/NightlyUpdate
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/DependInfo.cmake b/gdlibretro/CMakeFiles/LibRetroHost.dir/DependInfo.cmake
new file mode 100644
index 0000000..97be794
--- /dev/null
+++ b/gdlibretro/CMakeFiles/LibRetroHost.dir/DependInfo.cmake
@@ -0,0 +1,30 @@
+
+# Consider dependencies only in project.
+set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
+
+# The set of languages for which implicit dependencies are needed:
+set(CMAKE_DEPENDS_LANGUAGES
+ )
+
+# The set of dependency files which are needed:
+set(CMAKE_DEPENDS_DEPENDENCY_FILES
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Audio.cpp" "CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o" "gcc" "CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o.d"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CoreEnvironment.cpp" "CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o" "gcc" "CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o.d"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CoreVariables.cpp" "CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o" "gcc" "CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o.d"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Input.cpp" "CMakeFiles/LibRetroHost.dir/src/Input.cpp.o" "gcc" "CMakeFiles/LibRetroHost.dir/src/Input.cpp.o.d"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RegisterExtension.cpp" "CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o" "gcc" "CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o.d"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.cpp" "CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o" "gcc" "CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o.d"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/VFS.cpp" "CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o" "gcc" "CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o.d"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Video.cpp" "CMakeFiles/LibRetroHost.dir/src/Video.cpp.o" "gcc" "CMakeFiles/LibRetroHost.dir/src/Video.cpp.o.d"
+ )
+
+# Targets to which this target links which contain Fortran sources.
+set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
+ )
+
+# Targets to which this target links which contain Fortran sources.
+set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
+ )
+
+# Fortran module output directory.
+set(CMAKE_Fortran_TARGET_MODULE_DIR "")
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/build.make b/gdlibretro/CMakeFiles/LibRetroHost.dir/build.make
new file mode 100644
index 0000000..dd7d9c2
--- /dev/null
+++ b/gdlibretro/CMakeFiles/LibRetroHost.dir/build.make
@@ -0,0 +1,224 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.30
+
+# Delete rule output on recipe failure.
+.DELETE_ON_ERROR:
+
+#=============================================================================
+# Special targets provided by cmake.
+
+# Disable implicit rules so canonical targets will work.
+.SUFFIXES:
+
+# Disable VCS-based implicit rules.
+% : %,v
+
+# Disable VCS-based implicit rules.
+% : RCS/%
+
+# Disable VCS-based implicit rules.
+% : RCS/%,v
+
+# Disable VCS-based implicit rules.
+% : SCCS/s.%
+
+# Disable VCS-based implicit rules.
+% : s.%
+
+.SUFFIXES: .hpux_make_needs_suffix_list
+
+# Command-line flag to silence nested $(MAKE).
+$(VERBOSE)MAKESILENT = -s
+
+#Suppress display of executed commands.
+$(VERBOSE).SILENT:
+
+# A target that is always out of date.
+cmake_force:
+.PHONY : cmake_force
+
+#=============================================================================
+# Set environment variables for the build.
+
+# The shell in which to execute make rules.
+SHELL = /bin/sh
+
+# The CMake executable.
+CMAKE_COMMAND = /usr/bin/cmake
+
+# The command to remove a file.
+RM = /usr/bin/cmake -E rm -f
+
+# Escaping for special characters.
+EQUALS = =
+
+# The top-level source directory on which CMake was run.
+CMAKE_SOURCE_DIR = /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro
+
+# The top-level build directory on which CMake was run.
+CMAKE_BINARY_DIR = /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro
+
+# Include any dependencies generated for this target.
+include CMakeFiles/LibRetroHost.dir/depend.make
+# Include any dependencies generated by the compiler for this target.
+include CMakeFiles/LibRetroHost.dir/compiler_depend.make
+
+# Include the progress variables for this target.
+include CMakeFiles/LibRetroHost.dir/progress.make
+
+# Include the compile flags for this target's objects.
+include CMakeFiles/LibRetroHost.dir/flags.make
+
+CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o: CMakeFiles/LibRetroHost.dir/flags.make
+CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o: src/RegisterExtension.cpp
+CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o: CMakeFiles/LibRetroHost.dir/compiler_depend.ts
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o -MF CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o.d -o CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RegisterExtension.cpp
+
+CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.i"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RegisterExtension.cpp > CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.i
+
+CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.s"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RegisterExtension.cpp -o CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.s
+
+CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o: CMakeFiles/LibRetroHost.dir/flags.make
+CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o: src/RetroHost.cpp
+CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o: CMakeFiles/LibRetroHost.dir/compiler_depend.ts
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o -MF CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o.d -o CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.cpp
+
+CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.i"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.cpp > CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.i
+
+CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.s"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.cpp -o CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.s
+
+CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o: CMakeFiles/LibRetroHost.dir/flags.make
+CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o: src/CoreEnvironment.cpp
+CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o: CMakeFiles/LibRetroHost.dir/compiler_depend.ts
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o -MF CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o.d -o CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CoreEnvironment.cpp
+
+CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.i"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CoreEnvironment.cpp > CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.i
+
+CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.s"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CoreEnvironment.cpp -o CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.s
+
+CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o: CMakeFiles/LibRetroHost.dir/flags.make
+CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o: src/CoreVariables.cpp
+CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o: CMakeFiles/LibRetroHost.dir/compiler_depend.ts
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o -MF CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o.d -o CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CoreVariables.cpp
+
+CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.i"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CoreVariables.cpp > CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.i
+
+CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.s"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CoreVariables.cpp -o CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.s
+
+CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o: CMakeFiles/LibRetroHost.dir/flags.make
+CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o: src/Audio.cpp
+CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o: CMakeFiles/LibRetroHost.dir/compiler_depend.ts
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o -MF CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o.d -o CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Audio.cpp
+
+CMakeFiles/LibRetroHost.dir/src/Audio.cpp.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/LibRetroHost.dir/src/Audio.cpp.i"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Audio.cpp > CMakeFiles/LibRetroHost.dir/src/Audio.cpp.i
+
+CMakeFiles/LibRetroHost.dir/src/Audio.cpp.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/LibRetroHost.dir/src/Audio.cpp.s"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Audio.cpp -o CMakeFiles/LibRetroHost.dir/src/Audio.cpp.s
+
+CMakeFiles/LibRetroHost.dir/src/Input.cpp.o: CMakeFiles/LibRetroHost.dir/flags.make
+CMakeFiles/LibRetroHost.dir/src/Input.cpp.o: src/Input.cpp
+CMakeFiles/LibRetroHost.dir/src/Input.cpp.o: CMakeFiles/LibRetroHost.dir/compiler_depend.ts
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object CMakeFiles/LibRetroHost.dir/src/Input.cpp.o"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/LibRetroHost.dir/src/Input.cpp.o -MF CMakeFiles/LibRetroHost.dir/src/Input.cpp.o.d -o CMakeFiles/LibRetroHost.dir/src/Input.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Input.cpp
+
+CMakeFiles/LibRetroHost.dir/src/Input.cpp.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/LibRetroHost.dir/src/Input.cpp.i"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Input.cpp > CMakeFiles/LibRetroHost.dir/src/Input.cpp.i
+
+CMakeFiles/LibRetroHost.dir/src/Input.cpp.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/LibRetroHost.dir/src/Input.cpp.s"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Input.cpp -o CMakeFiles/LibRetroHost.dir/src/Input.cpp.s
+
+CMakeFiles/LibRetroHost.dir/src/Video.cpp.o: CMakeFiles/LibRetroHost.dir/flags.make
+CMakeFiles/LibRetroHost.dir/src/Video.cpp.o: src/Video.cpp
+CMakeFiles/LibRetroHost.dir/src/Video.cpp.o: CMakeFiles/LibRetroHost.dir/compiler_depend.ts
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object CMakeFiles/LibRetroHost.dir/src/Video.cpp.o"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/LibRetroHost.dir/src/Video.cpp.o -MF CMakeFiles/LibRetroHost.dir/src/Video.cpp.o.d -o CMakeFiles/LibRetroHost.dir/src/Video.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Video.cpp
+
+CMakeFiles/LibRetroHost.dir/src/Video.cpp.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/LibRetroHost.dir/src/Video.cpp.i"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Video.cpp > CMakeFiles/LibRetroHost.dir/src/Video.cpp.i
+
+CMakeFiles/LibRetroHost.dir/src/Video.cpp.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/LibRetroHost.dir/src/Video.cpp.s"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Video.cpp -o CMakeFiles/LibRetroHost.dir/src/Video.cpp.s
+
+CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o: CMakeFiles/LibRetroHost.dir/flags.make
+CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o: src/VFS.cpp
+CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o: CMakeFiles/LibRetroHost.dir/compiler_depend.ts
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o -MF CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o.d -o CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/VFS.cpp
+
+CMakeFiles/LibRetroHost.dir/src/VFS.cpp.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/LibRetroHost.dir/src/VFS.cpp.i"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/VFS.cpp > CMakeFiles/LibRetroHost.dir/src/VFS.cpp.i
+
+CMakeFiles/LibRetroHost.dir/src/VFS.cpp.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/LibRetroHost.dir/src/VFS.cpp.s"
+ /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/VFS.cpp -o CMakeFiles/LibRetroHost.dir/src/VFS.cpp.s
+
+# Object files for target LibRetroHost
+LibRetroHost_OBJECTS = \
+"CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o" \
+"CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o" \
+"CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o" \
+"CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o" \
+"CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o" \
+"CMakeFiles/LibRetroHost.dir/src/Input.cpp.o" \
+"CMakeFiles/LibRetroHost.dir/src/Video.cpp.o" \
+"CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o"
+
+# External object files for target LibRetroHost
+LibRetroHost_EXTERNAL_OBJECTS =
+
+LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so: CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o
+LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so: CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o
+LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so: CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o
+LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so: CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o
+LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so: CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o
+LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so: CMakeFiles/LibRetroHost.dir/src/Input.cpp.o
+LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so: CMakeFiles/LibRetroHost.dir/src/Video.cpp.o
+LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so: CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o
+LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so: CMakeFiles/LibRetroHost.dir/build.make
+LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so: extern/godot-cpp/bin/libgodot-cpp.linux.debug.64.a
+LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so: extern/yaml-cpp/libyaml-cppd.a
+LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so: CMakeFiles/LibRetroHost.dir/link.txt
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Linking CXX shared library LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so"
+ $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/LibRetroHost.dir/link.txt --verbose=$(VERBOSE)
+
+# Rule to build all files generated by this target.
+CMakeFiles/LibRetroHost.dir/build: LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so
+.PHONY : CMakeFiles/LibRetroHost.dir/build
+
+CMakeFiles/LibRetroHost.dir/clean:
+ $(CMAKE_COMMAND) -P CMakeFiles/LibRetroHost.dir/cmake_clean.cmake
+.PHONY : CMakeFiles/LibRetroHost.dir/clean
+
+CMakeFiles/LibRetroHost.dir/depend:
+ cd /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/LibRetroHost.dir/DependInfo.cmake "--color=$(COLOR)"
+.PHONY : CMakeFiles/LibRetroHost.dir/depend
+
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/cmake_clean.cmake b/gdlibretro/CMakeFiles/LibRetroHost.dir/cmake_clean.cmake
new file mode 100644
index 0000000..3849404
--- /dev/null
+++ b/gdlibretro/CMakeFiles/LibRetroHost.dir/cmake_clean.cmake
@@ -0,0 +1,25 @@
+file(REMOVE_RECURSE
+ "CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o"
+ "CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o.d"
+ "CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o"
+ "CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o.d"
+ "CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o"
+ "CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o.d"
+ "CMakeFiles/LibRetroHost.dir/src/Input.cpp.o"
+ "CMakeFiles/LibRetroHost.dir/src/Input.cpp.o.d"
+ "CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o"
+ "CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o.d"
+ "CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o"
+ "CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o.d"
+ "CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o"
+ "CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o.d"
+ "CMakeFiles/LibRetroHost.dir/src/Video.cpp.o"
+ "CMakeFiles/LibRetroHost.dir/src/Video.cpp.o.d"
+ "LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.pdb"
+ "LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so"
+)
+
+# Per-language clean rules from dependency scanning.
+foreach(lang CXX)
+ include(CMakeFiles/LibRetroHost.dir/cmake_clean_${lang}.cmake OPTIONAL)
+endforeach()
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/compiler_depend.internal b/gdlibretro/CMakeFiles/LibRetroHost.dir/compiler_depend.internal
new file mode 100644
index 0000000..5989cbf
--- /dev/null
+++ b/gdlibretro/CMakeFiles/LibRetroHost.dir/compiler_depend.internal
@@ -0,0 +1,3375 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.30
+
+CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Audio.cpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension/gdextension_interface.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/ref.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/binder_common.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/class_db.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/defs.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/error_macros.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/math.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/memory.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_bind.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/object.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/property_info.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/type_info.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/godot.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/list.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/aabb.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/basis.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_string.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/color.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/plane.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/projection.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/variant.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include/libretro.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/binary.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/dll.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitter.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterdef.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emittermanip.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterstyle.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/exceptions.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/mark.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/convert.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/emit.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/impl.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/node.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/parse.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/ptr.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/type.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/noexcept.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/null.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/parser.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/stlemitter.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/traits.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/yaml.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.hpp
+ /usr/include/alloca.h
+ /usr/include/asm-generic/errno-base.h
+ /usr/include/asm-generic/errno.h
+ /usr/include/c++/14/algorithm
+ /usr/include/c++/14/array
+ /usr/include/c++/14/atomic
+ /usr/include/c++/14/backward/auto_ptr.h
+ /usr/include/c++/14/backward/binders.h
+ /usr/include/c++/14/bit
+ /usr/include/c++/14/bits/algorithmfwd.h
+ /usr/include/c++/14/bits/align.h
+ /usr/include/c++/14/bits/alloc_traits.h
+ /usr/include/c++/14/bits/allocated_ptr.h
+ /usr/include/c++/14/bits/allocator.h
+ /usr/include/c++/14/bits/atomic_base.h
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h
+ /usr/include/c++/14/bits/basic_ios.h
+ /usr/include/c++/14/bits/basic_ios.tcc
+ /usr/include/c++/14/bits/basic_string.h
+ /usr/include/c++/14/bits/basic_string.tcc
+ /usr/include/c++/14/bits/char_traits.h
+ /usr/include/c++/14/bits/charconv.h
+ /usr/include/c++/14/bits/chrono.h
+ /usr/include/c++/14/bits/codecvt.h
+ /usr/include/c++/14/bits/concept_check.h
+ /usr/include/c++/14/bits/cpp_type_traits.h
+ /usr/include/c++/14/bits/cxxabi_forced.h
+ /usr/include/c++/14/bits/cxxabi_init_exception.h
+ /usr/include/c++/14/bits/enable_special_members.h
+ /usr/include/c++/14/bits/erase_if.h
+ /usr/include/c++/14/bits/exception.h
+ /usr/include/c++/14/bits/exception_defines.h
+ /usr/include/c++/14/bits/exception_ptr.h
+ /usr/include/c++/14/bits/fs_dir.h
+ /usr/include/c++/14/bits/fs_fwd.h
+ /usr/include/c++/14/bits/fs_ops.h
+ /usr/include/c++/14/bits/fs_path.h
+ /usr/include/c++/14/bits/functexcept.h
+ /usr/include/c++/14/bits/functional_hash.h
+ /usr/include/c++/14/bits/gslice.h
+ /usr/include/c++/14/bits/gslice_array.h
+ /usr/include/c++/14/bits/hash_bytes.h
+ /usr/include/c++/14/bits/hashtable.h
+ /usr/include/c++/14/bits/hashtable_policy.h
+ /usr/include/c++/14/bits/indirect_array.h
+ /usr/include/c++/14/bits/invoke.h
+ /usr/include/c++/14/bits/ios_base.h
+ /usr/include/c++/14/bits/istream.tcc
+ /usr/include/c++/14/bits/list.tcc
+ /usr/include/c++/14/bits/locale_classes.h
+ /usr/include/c++/14/bits/locale_classes.tcc
+ /usr/include/c++/14/bits/locale_conv.h
+ /usr/include/c++/14/bits/locale_facets.h
+ /usr/include/c++/14/bits/locale_facets.tcc
+ /usr/include/c++/14/bits/locale_facets_nonio.h
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc
+ /usr/include/c++/14/bits/localefwd.h
+ /usr/include/c++/14/bits/mask_array.h
+ /usr/include/c++/14/bits/memory_resource.h
+ /usr/include/c++/14/bits/memoryfwd.h
+ /usr/include/c++/14/bits/move.h
+ /usr/include/c++/14/bits/nested_exception.h
+ /usr/include/c++/14/bits/new_allocator.h
+ /usr/include/c++/14/bits/node_handle.h
+ /usr/include/c++/14/bits/ostream.tcc
+ /usr/include/c++/14/bits/ostream_insert.h
+ /usr/include/c++/14/bits/parse_numbers.h
+ /usr/include/c++/14/bits/postypes.h
+ /usr/include/c++/14/bits/predefined_ops.h
+ /usr/include/c++/14/bits/ptr_traits.h
+ /usr/include/c++/14/bits/quoted_string.h
+ /usr/include/c++/14/bits/range_access.h
+ /usr/include/c++/14/bits/refwrap.h
+ /usr/include/c++/14/bits/requires_hosted.h
+ /usr/include/c++/14/bits/shared_ptr.h
+ /usr/include/c++/14/bits/shared_ptr_atomic.h
+ /usr/include/c++/14/bits/shared_ptr_base.h
+ /usr/include/c++/14/bits/slice_array.h
+ /usr/include/c++/14/bits/specfun.h
+ /usr/include/c++/14/bits/sstream.tcc
+ /usr/include/c++/14/bits/std_abs.h
+ /usr/include/c++/14/bits/stl_algo.h
+ /usr/include/c++/14/bits/stl_algobase.h
+ /usr/include/c++/14/bits/stl_bvector.h
+ /usr/include/c++/14/bits/stl_construct.h
+ /usr/include/c++/14/bits/stl_function.h
+ /usr/include/c++/14/bits/stl_heap.h
+ /usr/include/c++/14/bits/stl_iterator.h
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h
+ /usr/include/c++/14/bits/stl_iterator_base_types.h
+ /usr/include/c++/14/bits/stl_list.h
+ /usr/include/c++/14/bits/stl_map.h
+ /usr/include/c++/14/bits/stl_multimap.h
+ /usr/include/c++/14/bits/stl_multiset.h
+ /usr/include/c++/14/bits/stl_pair.h
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h
+ /usr/include/c++/14/bits/stl_relops.h
+ /usr/include/c++/14/bits/stl_set.h
+ /usr/include/c++/14/bits/stl_tempbuf.h
+ /usr/include/c++/14/bits/stl_tree.h
+ /usr/include/c++/14/bits/stl_uninitialized.h
+ /usr/include/c++/14/bits/stl_vector.h
+ /usr/include/c++/14/bits/stream_iterator.h
+ /usr/include/c++/14/bits/streambuf.tcc
+ /usr/include/c++/14/bits/streambuf_iterator.h
+ /usr/include/c++/14/bits/string_view.tcc
+ /usr/include/c++/14/bits/stringfwd.h
+ /usr/include/c++/14/bits/uniform_int_dist.h
+ /usr/include/c++/14/bits/unique_ptr.h
+ /usr/include/c++/14/bits/unordered_map.h
+ /usr/include/c++/14/bits/uses_allocator.h
+ /usr/include/c++/14/bits/uses_allocator_args.h
+ /usr/include/c++/14/bits/utility.h
+ /usr/include/c++/14/bits/valarray_after.h
+ /usr/include/c++/14/bits/valarray_array.h
+ /usr/include/c++/14/bits/valarray_array.tcc
+ /usr/include/c++/14/bits/valarray_before.h
+ /usr/include/c++/14/bits/vector.tcc
+ /usr/include/c++/14/bits/version.h
+ /usr/include/c++/14/cctype
+ /usr/include/c++/14/cerrno
+ /usr/include/c++/14/clocale
+ /usr/include/c++/14/cmath
+ /usr/include/c++/14/codecvt
+ /usr/include/c++/14/compare
+ /usr/include/c++/14/concepts
+ /usr/include/c++/14/cstddef
+ /usr/include/c++/14/cstdint
+ /usr/include/c++/14/cstdio
+ /usr/include/c++/14/cstdlib
+ /usr/include/c++/14/cstring
+ /usr/include/c++/14/ctime
+ /usr/include/c++/14/cwchar
+ /usr/include/c++/14/cwctype
+ /usr/include/c++/14/debug/assertions.h
+ /usr/include/c++/14/debug/debug.h
+ /usr/include/c++/14/exception
+ /usr/include/c++/14/ext/aligned_buffer.h
+ /usr/include/c++/14/ext/alloc_traits.h
+ /usr/include/c++/14/ext/atomicity.h
+ /usr/include/c++/14/ext/concurrence.h
+ /usr/include/c++/14/ext/numeric_traits.h
+ /usr/include/c++/14/ext/string_conversions.h
+ /usr/include/c++/14/ext/type_traits.h
+ /usr/include/c++/14/filesystem
+ /usr/include/c++/14/initializer_list
+ /usr/include/c++/14/iomanip
+ /usr/include/c++/14/ios
+ /usr/include/c++/14/iosfwd
+ /usr/include/c++/14/iostream
+ /usr/include/c++/14/istream
+ /usr/include/c++/14/iterator
+ /usr/include/c++/14/limits
+ /usr/include/c++/14/list
+ /usr/include/c++/14/locale
+ /usr/include/c++/14/map
+ /usr/include/c++/14/memory
+ /usr/include/c++/14/new
+ /usr/include/c++/14/ostream
+ /usr/include/c++/14/pstl/execution_defs.h
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h
+ /usr/include/c++/14/pstl/glue_memory_defs.h
+ /usr/include/c++/14/pstl/pstl_config.h
+ /usr/include/c++/14/ratio
+ /usr/include/c++/14/set
+ /usr/include/c++/14/sstream
+ /usr/include/c++/14/stdexcept
+ /usr/include/c++/14/streambuf
+ /usr/include/c++/14/string
+ /usr/include/c++/14/string_view
+ /usr/include/c++/14/system_error
+ /usr/include/c++/14/tr1/bessel_function.tcc
+ /usr/include/c++/14/tr1/beta_function.tcc
+ /usr/include/c++/14/tr1/ell_integral.tcc
+ /usr/include/c++/14/tr1/exp_integral.tcc
+ /usr/include/c++/14/tr1/gamma.tcc
+ /usr/include/c++/14/tr1/hypergeometric.tcc
+ /usr/include/c++/14/tr1/legendre_function.tcc
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc
+ /usr/include/c++/14/tr1/poly_hermite.tcc
+ /usr/include/c++/14/tr1/poly_laguerre.tcc
+ /usr/include/c++/14/tr1/riemann_zeta.tcc
+ /usr/include/c++/14/tr1/special_function_util.h
+ /usr/include/c++/14/tuple
+ /usr/include/c++/14/type_traits
+ /usr/include/c++/14/typeinfo
+ /usr/include/c++/14/unordered_map
+ /usr/include/c++/14/utility
+ /usr/include/c++/14/valarray
+ /usr/include/c++/14/vector
+ /usr/include/ctype.h
+ /usr/include/dlfcn.h
+ /usr/include/endian.h
+ /usr/include/errno.h
+ /usr/include/features-time64.h
+ /usr/include/features.h
+ /usr/include/libintl.h
+ /usr/include/limits.h
+ /usr/include/linux/errno.h
+ /usr/include/linux/limits.h
+ /usr/include/locale.h
+ /usr/include/math.h
+ /usr/include/pthread.h
+ /usr/include/sched.h
+ /usr/include/stdc-predef.h
+ /usr/include/stdint.h
+ /usr/include/stdio.h
+ /usr/include/stdlib.h
+ /usr/include/string.h
+ /usr/include/strings.h
+ /usr/include/time.h
+ /usr/include/wchar.h
+ /usr/include/wctype.h
+ /usr/include/x86_64-linux-gnu/asm/errno.h
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h
+ /usr/include/x86_64-linux-gnu/bits/dlfcn.h
+ /usr/include/x86_64-linux-gnu/bits/endian.h
+ /usr/include/x86_64-linux-gnu/bits/endianness.h
+ /usr/include/x86_64-linux-gnu/bits/errno.h
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h
+ /usr/include/x86_64-linux-gnu/bits/floatn.h
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h
+ /usr/include/x86_64-linux-gnu/bits/locale.h
+ /usr/include/x86_64-linux-gnu/bits/long-double.h
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h
+ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h
+ /usr/include/x86_64-linux-gnu/bits/sched.h
+ /usr/include/x86_64-linux-gnu/bits/select.h
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h
+ /usr/include/x86_64-linux-gnu/bits/time.h
+ /usr/include/x86_64-linux-gnu/bits/time64.h
+ /usr/include/x86_64-linux-gnu/bits/timesize.h
+ /usr/include/x86_64-linux-gnu/bits/timex.h
+ /usr/include/x86_64-linux-gnu/bits/types.h
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h
+ /usr/include/x86_64-linux-gnu/bits/waitflags.h
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h
+ /usr/include/x86_64-linux-gnu/bits/wchar.h
+ /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h
+ /usr/include/x86_64-linux-gnu/sys/select.h
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h
+ /usr/include/x86_64-linux-gnu/sys/types.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h
+
+CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CoreEnvironment.cpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension/gdextension_interface.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/utility_functions.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/ref.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/binder_common.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/class_db.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/defs.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/error_macros.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/math.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/memory.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_bind.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/object.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/property_info.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/type_info.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/godot.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/list.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/aabb.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/basis.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_string.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/color.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/plane.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/projection.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/variant.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include/libretro.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/binary.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/dll.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitter.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterdef.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emittermanip.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterstyle.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/exceptions.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/mark.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/convert.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/emit.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/impl.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/node.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/parse.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/ptr.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/type.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/noexcept.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/null.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/parser.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/stlemitter.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/traits.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/yaml.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.hpp
+ /usr/include/alloca.h
+ /usr/include/asm-generic/errno-base.h
+ /usr/include/asm-generic/errno.h
+ /usr/include/c++/14/algorithm
+ /usr/include/c++/14/array
+ /usr/include/c++/14/atomic
+ /usr/include/c++/14/backward/auto_ptr.h
+ /usr/include/c++/14/backward/binders.h
+ /usr/include/c++/14/bit
+ /usr/include/c++/14/bits/algorithmfwd.h
+ /usr/include/c++/14/bits/align.h
+ /usr/include/c++/14/bits/alloc_traits.h
+ /usr/include/c++/14/bits/allocated_ptr.h
+ /usr/include/c++/14/bits/allocator.h
+ /usr/include/c++/14/bits/atomic_base.h
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h
+ /usr/include/c++/14/bits/basic_ios.h
+ /usr/include/c++/14/bits/basic_ios.tcc
+ /usr/include/c++/14/bits/basic_string.h
+ /usr/include/c++/14/bits/basic_string.tcc
+ /usr/include/c++/14/bits/char_traits.h
+ /usr/include/c++/14/bits/charconv.h
+ /usr/include/c++/14/bits/chrono.h
+ /usr/include/c++/14/bits/codecvt.h
+ /usr/include/c++/14/bits/concept_check.h
+ /usr/include/c++/14/bits/cpp_type_traits.h
+ /usr/include/c++/14/bits/cxxabi_forced.h
+ /usr/include/c++/14/bits/cxxabi_init_exception.h
+ /usr/include/c++/14/bits/enable_special_members.h
+ /usr/include/c++/14/bits/erase_if.h
+ /usr/include/c++/14/bits/exception.h
+ /usr/include/c++/14/bits/exception_defines.h
+ /usr/include/c++/14/bits/exception_ptr.h
+ /usr/include/c++/14/bits/fs_dir.h
+ /usr/include/c++/14/bits/fs_fwd.h
+ /usr/include/c++/14/bits/fs_ops.h
+ /usr/include/c++/14/bits/fs_path.h
+ /usr/include/c++/14/bits/functexcept.h
+ /usr/include/c++/14/bits/functional_hash.h
+ /usr/include/c++/14/bits/gslice.h
+ /usr/include/c++/14/bits/gslice_array.h
+ /usr/include/c++/14/bits/hash_bytes.h
+ /usr/include/c++/14/bits/hashtable.h
+ /usr/include/c++/14/bits/hashtable_policy.h
+ /usr/include/c++/14/bits/indirect_array.h
+ /usr/include/c++/14/bits/invoke.h
+ /usr/include/c++/14/bits/ios_base.h
+ /usr/include/c++/14/bits/istream.tcc
+ /usr/include/c++/14/bits/list.tcc
+ /usr/include/c++/14/bits/locale_classes.h
+ /usr/include/c++/14/bits/locale_classes.tcc
+ /usr/include/c++/14/bits/locale_conv.h
+ /usr/include/c++/14/bits/locale_facets.h
+ /usr/include/c++/14/bits/locale_facets.tcc
+ /usr/include/c++/14/bits/locale_facets_nonio.h
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc
+ /usr/include/c++/14/bits/localefwd.h
+ /usr/include/c++/14/bits/mask_array.h
+ /usr/include/c++/14/bits/memory_resource.h
+ /usr/include/c++/14/bits/memoryfwd.h
+ /usr/include/c++/14/bits/move.h
+ /usr/include/c++/14/bits/nested_exception.h
+ /usr/include/c++/14/bits/new_allocator.h
+ /usr/include/c++/14/bits/node_handle.h
+ /usr/include/c++/14/bits/ostream.tcc
+ /usr/include/c++/14/bits/ostream_insert.h
+ /usr/include/c++/14/bits/parse_numbers.h
+ /usr/include/c++/14/bits/postypes.h
+ /usr/include/c++/14/bits/predefined_ops.h
+ /usr/include/c++/14/bits/ptr_traits.h
+ /usr/include/c++/14/bits/quoted_string.h
+ /usr/include/c++/14/bits/range_access.h
+ /usr/include/c++/14/bits/refwrap.h
+ /usr/include/c++/14/bits/requires_hosted.h
+ /usr/include/c++/14/bits/shared_ptr.h
+ /usr/include/c++/14/bits/shared_ptr_atomic.h
+ /usr/include/c++/14/bits/shared_ptr_base.h
+ /usr/include/c++/14/bits/slice_array.h
+ /usr/include/c++/14/bits/specfun.h
+ /usr/include/c++/14/bits/sstream.tcc
+ /usr/include/c++/14/bits/std_abs.h
+ /usr/include/c++/14/bits/stl_algo.h
+ /usr/include/c++/14/bits/stl_algobase.h
+ /usr/include/c++/14/bits/stl_bvector.h
+ /usr/include/c++/14/bits/stl_construct.h
+ /usr/include/c++/14/bits/stl_function.h
+ /usr/include/c++/14/bits/stl_heap.h
+ /usr/include/c++/14/bits/stl_iterator.h
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h
+ /usr/include/c++/14/bits/stl_iterator_base_types.h
+ /usr/include/c++/14/bits/stl_list.h
+ /usr/include/c++/14/bits/stl_map.h
+ /usr/include/c++/14/bits/stl_multimap.h
+ /usr/include/c++/14/bits/stl_multiset.h
+ /usr/include/c++/14/bits/stl_pair.h
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h
+ /usr/include/c++/14/bits/stl_relops.h
+ /usr/include/c++/14/bits/stl_set.h
+ /usr/include/c++/14/bits/stl_tempbuf.h
+ /usr/include/c++/14/bits/stl_tree.h
+ /usr/include/c++/14/bits/stl_uninitialized.h
+ /usr/include/c++/14/bits/stl_vector.h
+ /usr/include/c++/14/bits/stream_iterator.h
+ /usr/include/c++/14/bits/streambuf.tcc
+ /usr/include/c++/14/bits/streambuf_iterator.h
+ /usr/include/c++/14/bits/string_view.tcc
+ /usr/include/c++/14/bits/stringfwd.h
+ /usr/include/c++/14/bits/uniform_int_dist.h
+ /usr/include/c++/14/bits/unique_ptr.h
+ /usr/include/c++/14/bits/unordered_map.h
+ /usr/include/c++/14/bits/uses_allocator.h
+ /usr/include/c++/14/bits/uses_allocator_args.h
+ /usr/include/c++/14/bits/utility.h
+ /usr/include/c++/14/bits/valarray_after.h
+ /usr/include/c++/14/bits/valarray_array.h
+ /usr/include/c++/14/bits/valarray_array.tcc
+ /usr/include/c++/14/bits/valarray_before.h
+ /usr/include/c++/14/bits/vector.tcc
+ /usr/include/c++/14/bits/version.h
+ /usr/include/c++/14/cctype
+ /usr/include/c++/14/cerrno
+ /usr/include/c++/14/clocale
+ /usr/include/c++/14/cmath
+ /usr/include/c++/14/codecvt
+ /usr/include/c++/14/compare
+ /usr/include/c++/14/concepts
+ /usr/include/c++/14/cstdarg
+ /usr/include/c++/14/cstddef
+ /usr/include/c++/14/cstdint
+ /usr/include/c++/14/cstdio
+ /usr/include/c++/14/cstdlib
+ /usr/include/c++/14/cstring
+ /usr/include/c++/14/ctime
+ /usr/include/c++/14/cwchar
+ /usr/include/c++/14/cwctype
+ /usr/include/c++/14/debug/assertions.h
+ /usr/include/c++/14/debug/debug.h
+ /usr/include/c++/14/exception
+ /usr/include/c++/14/ext/aligned_buffer.h
+ /usr/include/c++/14/ext/alloc_traits.h
+ /usr/include/c++/14/ext/atomicity.h
+ /usr/include/c++/14/ext/concurrence.h
+ /usr/include/c++/14/ext/numeric_traits.h
+ /usr/include/c++/14/ext/string_conversions.h
+ /usr/include/c++/14/ext/type_traits.h
+ /usr/include/c++/14/filesystem
+ /usr/include/c++/14/initializer_list
+ /usr/include/c++/14/iomanip
+ /usr/include/c++/14/ios
+ /usr/include/c++/14/iosfwd
+ /usr/include/c++/14/iostream
+ /usr/include/c++/14/istream
+ /usr/include/c++/14/iterator
+ /usr/include/c++/14/limits
+ /usr/include/c++/14/list
+ /usr/include/c++/14/locale
+ /usr/include/c++/14/map
+ /usr/include/c++/14/memory
+ /usr/include/c++/14/new
+ /usr/include/c++/14/ostream
+ /usr/include/c++/14/pstl/execution_defs.h
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h
+ /usr/include/c++/14/pstl/glue_memory_defs.h
+ /usr/include/c++/14/pstl/pstl_config.h
+ /usr/include/c++/14/ratio
+ /usr/include/c++/14/set
+ /usr/include/c++/14/sstream
+ /usr/include/c++/14/stdexcept
+ /usr/include/c++/14/streambuf
+ /usr/include/c++/14/string
+ /usr/include/c++/14/string_view
+ /usr/include/c++/14/system_error
+ /usr/include/c++/14/tr1/bessel_function.tcc
+ /usr/include/c++/14/tr1/beta_function.tcc
+ /usr/include/c++/14/tr1/ell_integral.tcc
+ /usr/include/c++/14/tr1/exp_integral.tcc
+ /usr/include/c++/14/tr1/gamma.tcc
+ /usr/include/c++/14/tr1/hypergeometric.tcc
+ /usr/include/c++/14/tr1/legendre_function.tcc
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc
+ /usr/include/c++/14/tr1/poly_hermite.tcc
+ /usr/include/c++/14/tr1/poly_laguerre.tcc
+ /usr/include/c++/14/tr1/riemann_zeta.tcc
+ /usr/include/c++/14/tr1/special_function_util.h
+ /usr/include/c++/14/tuple
+ /usr/include/c++/14/type_traits
+ /usr/include/c++/14/typeinfo
+ /usr/include/c++/14/unordered_map
+ /usr/include/c++/14/utility
+ /usr/include/c++/14/valarray
+ /usr/include/c++/14/vector
+ /usr/include/ctype.h
+ /usr/include/dlfcn.h
+ /usr/include/endian.h
+ /usr/include/errno.h
+ /usr/include/features-time64.h
+ /usr/include/features.h
+ /usr/include/libintl.h
+ /usr/include/limits.h
+ /usr/include/linux/errno.h
+ /usr/include/linux/limits.h
+ /usr/include/locale.h
+ /usr/include/math.h
+ /usr/include/pthread.h
+ /usr/include/sched.h
+ /usr/include/stdc-predef.h
+ /usr/include/stdint.h
+ /usr/include/stdio.h
+ /usr/include/stdlib.h
+ /usr/include/string.h
+ /usr/include/strings.h
+ /usr/include/time.h
+ /usr/include/wchar.h
+ /usr/include/wctype.h
+ /usr/include/x86_64-linux-gnu/asm/errno.h
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h
+ /usr/include/x86_64-linux-gnu/bits/dlfcn.h
+ /usr/include/x86_64-linux-gnu/bits/endian.h
+ /usr/include/x86_64-linux-gnu/bits/endianness.h
+ /usr/include/x86_64-linux-gnu/bits/errno.h
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h
+ /usr/include/x86_64-linux-gnu/bits/floatn.h
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h
+ /usr/include/x86_64-linux-gnu/bits/locale.h
+ /usr/include/x86_64-linux-gnu/bits/long-double.h
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h
+ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h
+ /usr/include/x86_64-linux-gnu/bits/sched.h
+ /usr/include/x86_64-linux-gnu/bits/select.h
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h
+ /usr/include/x86_64-linux-gnu/bits/time.h
+ /usr/include/x86_64-linux-gnu/bits/time64.h
+ /usr/include/x86_64-linux-gnu/bits/timesize.h
+ /usr/include/x86_64-linux-gnu/bits/timex.h
+ /usr/include/x86_64-linux-gnu/bits/types.h
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h
+ /usr/include/x86_64-linux-gnu/bits/waitflags.h
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h
+ /usr/include/x86_64-linux-gnu/bits/wchar.h
+ /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h
+ /usr/include/x86_64-linux-gnu/sys/select.h
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h
+ /usr/include/x86_64-linux-gnu/sys/types.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h
+
+CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CoreVariables.cpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension/gdextension_interface.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/file_access.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/os.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/utility_functions.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/ref.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/binder_common.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/class_db.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/defs.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/error_macros.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/math.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/memory.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_bind.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/object.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/property_info.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/type_info.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/godot.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/list.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/aabb.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/basis.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_string.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/color.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/plane.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/projection.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/variant.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include/libretro.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/binary.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/dll.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitter.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterdef.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emittermanip.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterstyle.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/exceptions.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/mark.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/convert.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/emit.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/impl.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/node.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/parse.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/ptr.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/type.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/noexcept.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/null.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/parser.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/stlemitter.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/traits.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/yaml.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.hpp
+ /usr/include/alloca.h
+ /usr/include/asm-generic/errno-base.h
+ /usr/include/asm-generic/errno.h
+ /usr/include/c++/14/algorithm
+ /usr/include/c++/14/array
+ /usr/include/c++/14/atomic
+ /usr/include/c++/14/backward/auto_ptr.h
+ /usr/include/c++/14/backward/binders.h
+ /usr/include/c++/14/bit
+ /usr/include/c++/14/bits/algorithmfwd.h
+ /usr/include/c++/14/bits/align.h
+ /usr/include/c++/14/bits/alloc_traits.h
+ /usr/include/c++/14/bits/allocated_ptr.h
+ /usr/include/c++/14/bits/allocator.h
+ /usr/include/c++/14/bits/atomic_base.h
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h
+ /usr/include/c++/14/bits/basic_ios.h
+ /usr/include/c++/14/bits/basic_ios.tcc
+ /usr/include/c++/14/bits/basic_string.h
+ /usr/include/c++/14/bits/basic_string.tcc
+ /usr/include/c++/14/bits/char_traits.h
+ /usr/include/c++/14/bits/charconv.h
+ /usr/include/c++/14/bits/chrono.h
+ /usr/include/c++/14/bits/codecvt.h
+ /usr/include/c++/14/bits/concept_check.h
+ /usr/include/c++/14/bits/cpp_type_traits.h
+ /usr/include/c++/14/bits/cxxabi_forced.h
+ /usr/include/c++/14/bits/cxxabi_init_exception.h
+ /usr/include/c++/14/bits/enable_special_members.h
+ /usr/include/c++/14/bits/erase_if.h
+ /usr/include/c++/14/bits/exception.h
+ /usr/include/c++/14/bits/exception_defines.h
+ /usr/include/c++/14/bits/exception_ptr.h
+ /usr/include/c++/14/bits/fs_dir.h
+ /usr/include/c++/14/bits/fs_fwd.h
+ /usr/include/c++/14/bits/fs_ops.h
+ /usr/include/c++/14/bits/fs_path.h
+ /usr/include/c++/14/bits/functexcept.h
+ /usr/include/c++/14/bits/functional_hash.h
+ /usr/include/c++/14/bits/gslice.h
+ /usr/include/c++/14/bits/gslice_array.h
+ /usr/include/c++/14/bits/hash_bytes.h
+ /usr/include/c++/14/bits/hashtable.h
+ /usr/include/c++/14/bits/hashtable_policy.h
+ /usr/include/c++/14/bits/indirect_array.h
+ /usr/include/c++/14/bits/invoke.h
+ /usr/include/c++/14/bits/ios_base.h
+ /usr/include/c++/14/bits/istream.tcc
+ /usr/include/c++/14/bits/list.tcc
+ /usr/include/c++/14/bits/locale_classes.h
+ /usr/include/c++/14/bits/locale_classes.tcc
+ /usr/include/c++/14/bits/locale_conv.h
+ /usr/include/c++/14/bits/locale_facets.h
+ /usr/include/c++/14/bits/locale_facets.tcc
+ /usr/include/c++/14/bits/locale_facets_nonio.h
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc
+ /usr/include/c++/14/bits/localefwd.h
+ /usr/include/c++/14/bits/mask_array.h
+ /usr/include/c++/14/bits/memory_resource.h
+ /usr/include/c++/14/bits/memoryfwd.h
+ /usr/include/c++/14/bits/move.h
+ /usr/include/c++/14/bits/nested_exception.h
+ /usr/include/c++/14/bits/new_allocator.h
+ /usr/include/c++/14/bits/node_handle.h
+ /usr/include/c++/14/bits/ostream.tcc
+ /usr/include/c++/14/bits/ostream_insert.h
+ /usr/include/c++/14/bits/parse_numbers.h
+ /usr/include/c++/14/bits/postypes.h
+ /usr/include/c++/14/bits/predefined_ops.h
+ /usr/include/c++/14/bits/ptr_traits.h
+ /usr/include/c++/14/bits/quoted_string.h
+ /usr/include/c++/14/bits/range_access.h
+ /usr/include/c++/14/bits/refwrap.h
+ /usr/include/c++/14/bits/requires_hosted.h
+ /usr/include/c++/14/bits/shared_ptr.h
+ /usr/include/c++/14/bits/shared_ptr_atomic.h
+ /usr/include/c++/14/bits/shared_ptr_base.h
+ /usr/include/c++/14/bits/slice_array.h
+ /usr/include/c++/14/bits/specfun.h
+ /usr/include/c++/14/bits/sstream.tcc
+ /usr/include/c++/14/bits/std_abs.h
+ /usr/include/c++/14/bits/stl_algo.h
+ /usr/include/c++/14/bits/stl_algobase.h
+ /usr/include/c++/14/bits/stl_bvector.h
+ /usr/include/c++/14/bits/stl_construct.h
+ /usr/include/c++/14/bits/stl_function.h
+ /usr/include/c++/14/bits/stl_heap.h
+ /usr/include/c++/14/bits/stl_iterator.h
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h
+ /usr/include/c++/14/bits/stl_iterator_base_types.h
+ /usr/include/c++/14/bits/stl_list.h
+ /usr/include/c++/14/bits/stl_map.h
+ /usr/include/c++/14/bits/stl_multimap.h
+ /usr/include/c++/14/bits/stl_multiset.h
+ /usr/include/c++/14/bits/stl_pair.h
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h
+ /usr/include/c++/14/bits/stl_relops.h
+ /usr/include/c++/14/bits/stl_set.h
+ /usr/include/c++/14/bits/stl_tempbuf.h
+ /usr/include/c++/14/bits/stl_tree.h
+ /usr/include/c++/14/bits/stl_uninitialized.h
+ /usr/include/c++/14/bits/stl_vector.h
+ /usr/include/c++/14/bits/stream_iterator.h
+ /usr/include/c++/14/bits/streambuf.tcc
+ /usr/include/c++/14/bits/streambuf_iterator.h
+ /usr/include/c++/14/bits/string_view.tcc
+ /usr/include/c++/14/bits/stringfwd.h
+ /usr/include/c++/14/bits/uniform_int_dist.h
+ /usr/include/c++/14/bits/unique_ptr.h
+ /usr/include/c++/14/bits/unordered_map.h
+ /usr/include/c++/14/bits/uses_allocator.h
+ /usr/include/c++/14/bits/uses_allocator_args.h
+ /usr/include/c++/14/bits/utility.h
+ /usr/include/c++/14/bits/valarray_after.h
+ /usr/include/c++/14/bits/valarray_array.h
+ /usr/include/c++/14/bits/valarray_array.tcc
+ /usr/include/c++/14/bits/valarray_before.h
+ /usr/include/c++/14/bits/vector.tcc
+ /usr/include/c++/14/bits/version.h
+ /usr/include/c++/14/cctype
+ /usr/include/c++/14/cerrno
+ /usr/include/c++/14/clocale
+ /usr/include/c++/14/cmath
+ /usr/include/c++/14/codecvt
+ /usr/include/c++/14/compare
+ /usr/include/c++/14/concepts
+ /usr/include/c++/14/cstddef
+ /usr/include/c++/14/cstdint
+ /usr/include/c++/14/cstdio
+ /usr/include/c++/14/cstdlib
+ /usr/include/c++/14/cstring
+ /usr/include/c++/14/ctime
+ /usr/include/c++/14/cwchar
+ /usr/include/c++/14/cwctype
+ /usr/include/c++/14/debug/assertions.h
+ /usr/include/c++/14/debug/debug.h
+ /usr/include/c++/14/exception
+ /usr/include/c++/14/ext/aligned_buffer.h
+ /usr/include/c++/14/ext/alloc_traits.h
+ /usr/include/c++/14/ext/atomicity.h
+ /usr/include/c++/14/ext/concurrence.h
+ /usr/include/c++/14/ext/numeric_traits.h
+ /usr/include/c++/14/ext/string_conversions.h
+ /usr/include/c++/14/ext/type_traits.h
+ /usr/include/c++/14/filesystem
+ /usr/include/c++/14/initializer_list
+ /usr/include/c++/14/iomanip
+ /usr/include/c++/14/ios
+ /usr/include/c++/14/iosfwd
+ /usr/include/c++/14/iostream
+ /usr/include/c++/14/istream
+ /usr/include/c++/14/iterator
+ /usr/include/c++/14/limits
+ /usr/include/c++/14/list
+ /usr/include/c++/14/locale
+ /usr/include/c++/14/map
+ /usr/include/c++/14/memory
+ /usr/include/c++/14/new
+ /usr/include/c++/14/ostream
+ /usr/include/c++/14/pstl/execution_defs.h
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h
+ /usr/include/c++/14/pstl/glue_memory_defs.h
+ /usr/include/c++/14/pstl/pstl_config.h
+ /usr/include/c++/14/ratio
+ /usr/include/c++/14/set
+ /usr/include/c++/14/sstream
+ /usr/include/c++/14/stdexcept
+ /usr/include/c++/14/streambuf
+ /usr/include/c++/14/string
+ /usr/include/c++/14/string_view
+ /usr/include/c++/14/system_error
+ /usr/include/c++/14/tr1/bessel_function.tcc
+ /usr/include/c++/14/tr1/beta_function.tcc
+ /usr/include/c++/14/tr1/ell_integral.tcc
+ /usr/include/c++/14/tr1/exp_integral.tcc
+ /usr/include/c++/14/tr1/gamma.tcc
+ /usr/include/c++/14/tr1/hypergeometric.tcc
+ /usr/include/c++/14/tr1/legendre_function.tcc
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc
+ /usr/include/c++/14/tr1/poly_hermite.tcc
+ /usr/include/c++/14/tr1/poly_laguerre.tcc
+ /usr/include/c++/14/tr1/riemann_zeta.tcc
+ /usr/include/c++/14/tr1/special_function_util.h
+ /usr/include/c++/14/tuple
+ /usr/include/c++/14/type_traits
+ /usr/include/c++/14/typeinfo
+ /usr/include/c++/14/unordered_map
+ /usr/include/c++/14/utility
+ /usr/include/c++/14/valarray
+ /usr/include/c++/14/vector
+ /usr/include/ctype.h
+ /usr/include/dlfcn.h
+ /usr/include/endian.h
+ /usr/include/errno.h
+ /usr/include/features-time64.h
+ /usr/include/features.h
+ /usr/include/libintl.h
+ /usr/include/limits.h
+ /usr/include/linux/errno.h
+ /usr/include/linux/limits.h
+ /usr/include/locale.h
+ /usr/include/math.h
+ /usr/include/pthread.h
+ /usr/include/sched.h
+ /usr/include/stdc-predef.h
+ /usr/include/stdint.h
+ /usr/include/stdio.h
+ /usr/include/stdlib.h
+ /usr/include/string.h
+ /usr/include/strings.h
+ /usr/include/time.h
+ /usr/include/wchar.h
+ /usr/include/wctype.h
+ /usr/include/x86_64-linux-gnu/asm/errno.h
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h
+ /usr/include/x86_64-linux-gnu/bits/dlfcn.h
+ /usr/include/x86_64-linux-gnu/bits/endian.h
+ /usr/include/x86_64-linux-gnu/bits/endianness.h
+ /usr/include/x86_64-linux-gnu/bits/errno.h
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h
+ /usr/include/x86_64-linux-gnu/bits/floatn.h
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h
+ /usr/include/x86_64-linux-gnu/bits/locale.h
+ /usr/include/x86_64-linux-gnu/bits/long-double.h
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h
+ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h
+ /usr/include/x86_64-linux-gnu/bits/sched.h
+ /usr/include/x86_64-linux-gnu/bits/select.h
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h
+ /usr/include/x86_64-linux-gnu/bits/time.h
+ /usr/include/x86_64-linux-gnu/bits/time64.h
+ /usr/include/x86_64-linux-gnu/bits/timesize.h
+ /usr/include/x86_64-linux-gnu/bits/timex.h
+ /usr/include/x86_64-linux-gnu/bits/types.h
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h
+ /usr/include/x86_64-linux-gnu/bits/waitflags.h
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h
+ /usr/include/x86_64-linux-gnu/bits/wchar.h
+ /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h
+ /usr/include/x86_64-linux-gnu/sys/select.h
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h
+ /usr/include/x86_64-linux-gnu/sys/types.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h
+
+CMakeFiles/LibRetroHost.dir/src/Input.cpp.o
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Input.cpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension/gdextension_interface.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event_from_window.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event_key.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event_with_modifiers.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/utility_functions.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/ref.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/binder_common.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/class_db.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/defs.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/error_macros.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/math.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/memory.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_bind.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/object.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/property_info.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/type_info.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/godot.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/list.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/aabb.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/basis.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_string.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/color.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/plane.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/projection.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/variant.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include/libretro.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/binary.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/dll.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitter.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterdef.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emittermanip.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterstyle.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/exceptions.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/mark.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/convert.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/emit.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/impl.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/node.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/parse.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/ptr.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/type.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/noexcept.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/null.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/parser.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/stlemitter.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/traits.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/yaml.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/KeyboardMap.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.hpp
+ /usr/include/alloca.h
+ /usr/include/asm-generic/errno-base.h
+ /usr/include/asm-generic/errno.h
+ /usr/include/c++/14/algorithm
+ /usr/include/c++/14/array
+ /usr/include/c++/14/atomic
+ /usr/include/c++/14/backward/auto_ptr.h
+ /usr/include/c++/14/backward/binders.h
+ /usr/include/c++/14/bit
+ /usr/include/c++/14/bits/algorithmfwd.h
+ /usr/include/c++/14/bits/align.h
+ /usr/include/c++/14/bits/alloc_traits.h
+ /usr/include/c++/14/bits/allocated_ptr.h
+ /usr/include/c++/14/bits/allocator.h
+ /usr/include/c++/14/bits/atomic_base.h
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h
+ /usr/include/c++/14/bits/basic_ios.h
+ /usr/include/c++/14/bits/basic_ios.tcc
+ /usr/include/c++/14/bits/basic_string.h
+ /usr/include/c++/14/bits/basic_string.tcc
+ /usr/include/c++/14/bits/char_traits.h
+ /usr/include/c++/14/bits/charconv.h
+ /usr/include/c++/14/bits/chrono.h
+ /usr/include/c++/14/bits/codecvt.h
+ /usr/include/c++/14/bits/concept_check.h
+ /usr/include/c++/14/bits/cpp_type_traits.h
+ /usr/include/c++/14/bits/cxxabi_forced.h
+ /usr/include/c++/14/bits/cxxabi_init_exception.h
+ /usr/include/c++/14/bits/enable_special_members.h
+ /usr/include/c++/14/bits/erase_if.h
+ /usr/include/c++/14/bits/exception.h
+ /usr/include/c++/14/bits/exception_defines.h
+ /usr/include/c++/14/bits/exception_ptr.h
+ /usr/include/c++/14/bits/fs_dir.h
+ /usr/include/c++/14/bits/fs_fwd.h
+ /usr/include/c++/14/bits/fs_ops.h
+ /usr/include/c++/14/bits/fs_path.h
+ /usr/include/c++/14/bits/functexcept.h
+ /usr/include/c++/14/bits/functional_hash.h
+ /usr/include/c++/14/bits/gslice.h
+ /usr/include/c++/14/bits/gslice_array.h
+ /usr/include/c++/14/bits/hash_bytes.h
+ /usr/include/c++/14/bits/hashtable.h
+ /usr/include/c++/14/bits/hashtable_policy.h
+ /usr/include/c++/14/bits/indirect_array.h
+ /usr/include/c++/14/bits/invoke.h
+ /usr/include/c++/14/bits/ios_base.h
+ /usr/include/c++/14/bits/istream.tcc
+ /usr/include/c++/14/bits/list.tcc
+ /usr/include/c++/14/bits/locale_classes.h
+ /usr/include/c++/14/bits/locale_classes.tcc
+ /usr/include/c++/14/bits/locale_conv.h
+ /usr/include/c++/14/bits/locale_facets.h
+ /usr/include/c++/14/bits/locale_facets.tcc
+ /usr/include/c++/14/bits/locale_facets_nonio.h
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc
+ /usr/include/c++/14/bits/localefwd.h
+ /usr/include/c++/14/bits/mask_array.h
+ /usr/include/c++/14/bits/memory_resource.h
+ /usr/include/c++/14/bits/memoryfwd.h
+ /usr/include/c++/14/bits/move.h
+ /usr/include/c++/14/bits/nested_exception.h
+ /usr/include/c++/14/bits/new_allocator.h
+ /usr/include/c++/14/bits/node_handle.h
+ /usr/include/c++/14/bits/ostream.tcc
+ /usr/include/c++/14/bits/ostream_insert.h
+ /usr/include/c++/14/bits/parse_numbers.h
+ /usr/include/c++/14/bits/postypes.h
+ /usr/include/c++/14/bits/predefined_ops.h
+ /usr/include/c++/14/bits/ptr_traits.h
+ /usr/include/c++/14/bits/quoted_string.h
+ /usr/include/c++/14/bits/range_access.h
+ /usr/include/c++/14/bits/refwrap.h
+ /usr/include/c++/14/bits/requires_hosted.h
+ /usr/include/c++/14/bits/shared_ptr.h
+ /usr/include/c++/14/bits/shared_ptr_atomic.h
+ /usr/include/c++/14/bits/shared_ptr_base.h
+ /usr/include/c++/14/bits/slice_array.h
+ /usr/include/c++/14/bits/specfun.h
+ /usr/include/c++/14/bits/sstream.tcc
+ /usr/include/c++/14/bits/std_abs.h
+ /usr/include/c++/14/bits/stl_algo.h
+ /usr/include/c++/14/bits/stl_algobase.h
+ /usr/include/c++/14/bits/stl_bvector.h
+ /usr/include/c++/14/bits/stl_construct.h
+ /usr/include/c++/14/bits/stl_function.h
+ /usr/include/c++/14/bits/stl_heap.h
+ /usr/include/c++/14/bits/stl_iterator.h
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h
+ /usr/include/c++/14/bits/stl_iterator_base_types.h
+ /usr/include/c++/14/bits/stl_list.h
+ /usr/include/c++/14/bits/stl_map.h
+ /usr/include/c++/14/bits/stl_multimap.h
+ /usr/include/c++/14/bits/stl_multiset.h
+ /usr/include/c++/14/bits/stl_pair.h
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h
+ /usr/include/c++/14/bits/stl_relops.h
+ /usr/include/c++/14/bits/stl_set.h
+ /usr/include/c++/14/bits/stl_tempbuf.h
+ /usr/include/c++/14/bits/stl_tree.h
+ /usr/include/c++/14/bits/stl_uninitialized.h
+ /usr/include/c++/14/bits/stl_vector.h
+ /usr/include/c++/14/bits/stream_iterator.h
+ /usr/include/c++/14/bits/streambuf.tcc
+ /usr/include/c++/14/bits/streambuf_iterator.h
+ /usr/include/c++/14/bits/string_view.tcc
+ /usr/include/c++/14/bits/stringfwd.h
+ /usr/include/c++/14/bits/uniform_int_dist.h
+ /usr/include/c++/14/bits/unique_ptr.h
+ /usr/include/c++/14/bits/unordered_map.h
+ /usr/include/c++/14/bits/uses_allocator.h
+ /usr/include/c++/14/bits/uses_allocator_args.h
+ /usr/include/c++/14/bits/utility.h
+ /usr/include/c++/14/bits/valarray_after.h
+ /usr/include/c++/14/bits/valarray_array.h
+ /usr/include/c++/14/bits/valarray_array.tcc
+ /usr/include/c++/14/bits/valarray_before.h
+ /usr/include/c++/14/bits/vector.tcc
+ /usr/include/c++/14/bits/version.h
+ /usr/include/c++/14/cctype
+ /usr/include/c++/14/cerrno
+ /usr/include/c++/14/clocale
+ /usr/include/c++/14/cmath
+ /usr/include/c++/14/codecvt
+ /usr/include/c++/14/compare
+ /usr/include/c++/14/concepts
+ /usr/include/c++/14/cstddef
+ /usr/include/c++/14/cstdint
+ /usr/include/c++/14/cstdio
+ /usr/include/c++/14/cstdlib
+ /usr/include/c++/14/cstring
+ /usr/include/c++/14/ctime
+ /usr/include/c++/14/cwchar
+ /usr/include/c++/14/cwctype
+ /usr/include/c++/14/debug/assertions.h
+ /usr/include/c++/14/debug/debug.h
+ /usr/include/c++/14/exception
+ /usr/include/c++/14/ext/aligned_buffer.h
+ /usr/include/c++/14/ext/alloc_traits.h
+ /usr/include/c++/14/ext/atomicity.h
+ /usr/include/c++/14/ext/concurrence.h
+ /usr/include/c++/14/ext/numeric_traits.h
+ /usr/include/c++/14/ext/string_conversions.h
+ /usr/include/c++/14/ext/type_traits.h
+ /usr/include/c++/14/filesystem
+ /usr/include/c++/14/initializer_list
+ /usr/include/c++/14/iomanip
+ /usr/include/c++/14/ios
+ /usr/include/c++/14/iosfwd
+ /usr/include/c++/14/iostream
+ /usr/include/c++/14/istream
+ /usr/include/c++/14/iterator
+ /usr/include/c++/14/limits
+ /usr/include/c++/14/list
+ /usr/include/c++/14/locale
+ /usr/include/c++/14/map
+ /usr/include/c++/14/memory
+ /usr/include/c++/14/new
+ /usr/include/c++/14/ostream
+ /usr/include/c++/14/pstl/execution_defs.h
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h
+ /usr/include/c++/14/pstl/glue_memory_defs.h
+ /usr/include/c++/14/pstl/pstl_config.h
+ /usr/include/c++/14/ratio
+ /usr/include/c++/14/set
+ /usr/include/c++/14/sstream
+ /usr/include/c++/14/stdexcept
+ /usr/include/c++/14/streambuf
+ /usr/include/c++/14/string
+ /usr/include/c++/14/string_view
+ /usr/include/c++/14/system_error
+ /usr/include/c++/14/tr1/bessel_function.tcc
+ /usr/include/c++/14/tr1/beta_function.tcc
+ /usr/include/c++/14/tr1/ell_integral.tcc
+ /usr/include/c++/14/tr1/exp_integral.tcc
+ /usr/include/c++/14/tr1/gamma.tcc
+ /usr/include/c++/14/tr1/hypergeometric.tcc
+ /usr/include/c++/14/tr1/legendre_function.tcc
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc
+ /usr/include/c++/14/tr1/poly_hermite.tcc
+ /usr/include/c++/14/tr1/poly_laguerre.tcc
+ /usr/include/c++/14/tr1/riemann_zeta.tcc
+ /usr/include/c++/14/tr1/special_function_util.h
+ /usr/include/c++/14/tuple
+ /usr/include/c++/14/type_traits
+ /usr/include/c++/14/typeinfo
+ /usr/include/c++/14/unordered_map
+ /usr/include/c++/14/utility
+ /usr/include/c++/14/valarray
+ /usr/include/c++/14/vector
+ /usr/include/ctype.h
+ /usr/include/dlfcn.h
+ /usr/include/endian.h
+ /usr/include/errno.h
+ /usr/include/features-time64.h
+ /usr/include/features.h
+ /usr/include/libintl.h
+ /usr/include/limits.h
+ /usr/include/linux/errno.h
+ /usr/include/linux/limits.h
+ /usr/include/locale.h
+ /usr/include/math.h
+ /usr/include/pthread.h
+ /usr/include/sched.h
+ /usr/include/stdc-predef.h
+ /usr/include/stdint.h
+ /usr/include/stdio.h
+ /usr/include/stdlib.h
+ /usr/include/string.h
+ /usr/include/strings.h
+ /usr/include/time.h
+ /usr/include/wchar.h
+ /usr/include/wctype.h
+ /usr/include/x86_64-linux-gnu/asm/errno.h
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h
+ /usr/include/x86_64-linux-gnu/bits/dlfcn.h
+ /usr/include/x86_64-linux-gnu/bits/endian.h
+ /usr/include/x86_64-linux-gnu/bits/endianness.h
+ /usr/include/x86_64-linux-gnu/bits/errno.h
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h
+ /usr/include/x86_64-linux-gnu/bits/floatn.h
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h
+ /usr/include/x86_64-linux-gnu/bits/locale.h
+ /usr/include/x86_64-linux-gnu/bits/long-double.h
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h
+ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h
+ /usr/include/x86_64-linux-gnu/bits/sched.h
+ /usr/include/x86_64-linux-gnu/bits/select.h
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h
+ /usr/include/x86_64-linux-gnu/bits/time.h
+ /usr/include/x86_64-linux-gnu/bits/time64.h
+ /usr/include/x86_64-linux-gnu/bits/timesize.h
+ /usr/include/x86_64-linux-gnu/bits/timex.h
+ /usr/include/x86_64-linux-gnu/bits/types.h
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h
+ /usr/include/x86_64-linux-gnu/bits/waitflags.h
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h
+ /usr/include/x86_64-linux-gnu/bits/wchar.h
+ /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h
+ /usr/include/x86_64-linux-gnu/sys/select.h
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h
+ /usr/include/x86_64-linux-gnu/sys/types.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h
+
+CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RegisterExtension.cpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension/gdextension_interface.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/engine.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/ref.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/binder_common.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/class_db.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/defs.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/error_macros.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/math.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/memory.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_bind.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/object.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/property_info.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/type_info.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/godot.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/list.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/aabb.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/basis.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_string.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/color.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/plane.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/projection.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/variant.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include/libretro.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/binary.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/dll.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitter.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterdef.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emittermanip.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterstyle.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/exceptions.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/mark.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/convert.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/emit.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/impl.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/node.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/parse.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/ptr.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/type.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/noexcept.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/null.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/parser.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/stlemitter.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/traits.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/yaml.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.hpp
+ /usr/include/alloca.h
+ /usr/include/asm-generic/errno-base.h
+ /usr/include/asm-generic/errno.h
+ /usr/include/c++/14/algorithm
+ /usr/include/c++/14/array
+ /usr/include/c++/14/atomic
+ /usr/include/c++/14/backward/auto_ptr.h
+ /usr/include/c++/14/backward/binders.h
+ /usr/include/c++/14/bit
+ /usr/include/c++/14/bits/algorithmfwd.h
+ /usr/include/c++/14/bits/align.h
+ /usr/include/c++/14/bits/alloc_traits.h
+ /usr/include/c++/14/bits/allocated_ptr.h
+ /usr/include/c++/14/bits/allocator.h
+ /usr/include/c++/14/bits/atomic_base.h
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h
+ /usr/include/c++/14/bits/basic_ios.h
+ /usr/include/c++/14/bits/basic_ios.tcc
+ /usr/include/c++/14/bits/basic_string.h
+ /usr/include/c++/14/bits/basic_string.tcc
+ /usr/include/c++/14/bits/char_traits.h
+ /usr/include/c++/14/bits/charconv.h
+ /usr/include/c++/14/bits/chrono.h
+ /usr/include/c++/14/bits/codecvt.h
+ /usr/include/c++/14/bits/concept_check.h
+ /usr/include/c++/14/bits/cpp_type_traits.h
+ /usr/include/c++/14/bits/cxxabi_forced.h
+ /usr/include/c++/14/bits/cxxabi_init_exception.h
+ /usr/include/c++/14/bits/enable_special_members.h
+ /usr/include/c++/14/bits/erase_if.h
+ /usr/include/c++/14/bits/exception.h
+ /usr/include/c++/14/bits/exception_defines.h
+ /usr/include/c++/14/bits/exception_ptr.h
+ /usr/include/c++/14/bits/fs_dir.h
+ /usr/include/c++/14/bits/fs_fwd.h
+ /usr/include/c++/14/bits/fs_ops.h
+ /usr/include/c++/14/bits/fs_path.h
+ /usr/include/c++/14/bits/functexcept.h
+ /usr/include/c++/14/bits/functional_hash.h
+ /usr/include/c++/14/bits/gslice.h
+ /usr/include/c++/14/bits/gslice_array.h
+ /usr/include/c++/14/bits/hash_bytes.h
+ /usr/include/c++/14/bits/hashtable.h
+ /usr/include/c++/14/bits/hashtable_policy.h
+ /usr/include/c++/14/bits/indirect_array.h
+ /usr/include/c++/14/bits/invoke.h
+ /usr/include/c++/14/bits/ios_base.h
+ /usr/include/c++/14/bits/istream.tcc
+ /usr/include/c++/14/bits/list.tcc
+ /usr/include/c++/14/bits/locale_classes.h
+ /usr/include/c++/14/bits/locale_classes.tcc
+ /usr/include/c++/14/bits/locale_conv.h
+ /usr/include/c++/14/bits/locale_facets.h
+ /usr/include/c++/14/bits/locale_facets.tcc
+ /usr/include/c++/14/bits/locale_facets_nonio.h
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc
+ /usr/include/c++/14/bits/localefwd.h
+ /usr/include/c++/14/bits/mask_array.h
+ /usr/include/c++/14/bits/memory_resource.h
+ /usr/include/c++/14/bits/memoryfwd.h
+ /usr/include/c++/14/bits/move.h
+ /usr/include/c++/14/bits/nested_exception.h
+ /usr/include/c++/14/bits/new_allocator.h
+ /usr/include/c++/14/bits/node_handle.h
+ /usr/include/c++/14/bits/ostream.tcc
+ /usr/include/c++/14/bits/ostream_insert.h
+ /usr/include/c++/14/bits/parse_numbers.h
+ /usr/include/c++/14/bits/postypes.h
+ /usr/include/c++/14/bits/predefined_ops.h
+ /usr/include/c++/14/bits/ptr_traits.h
+ /usr/include/c++/14/bits/quoted_string.h
+ /usr/include/c++/14/bits/range_access.h
+ /usr/include/c++/14/bits/refwrap.h
+ /usr/include/c++/14/bits/requires_hosted.h
+ /usr/include/c++/14/bits/shared_ptr.h
+ /usr/include/c++/14/bits/shared_ptr_atomic.h
+ /usr/include/c++/14/bits/shared_ptr_base.h
+ /usr/include/c++/14/bits/slice_array.h
+ /usr/include/c++/14/bits/specfun.h
+ /usr/include/c++/14/bits/sstream.tcc
+ /usr/include/c++/14/bits/std_abs.h
+ /usr/include/c++/14/bits/stl_algo.h
+ /usr/include/c++/14/bits/stl_algobase.h
+ /usr/include/c++/14/bits/stl_bvector.h
+ /usr/include/c++/14/bits/stl_construct.h
+ /usr/include/c++/14/bits/stl_function.h
+ /usr/include/c++/14/bits/stl_heap.h
+ /usr/include/c++/14/bits/stl_iterator.h
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h
+ /usr/include/c++/14/bits/stl_iterator_base_types.h
+ /usr/include/c++/14/bits/stl_list.h
+ /usr/include/c++/14/bits/stl_map.h
+ /usr/include/c++/14/bits/stl_multimap.h
+ /usr/include/c++/14/bits/stl_multiset.h
+ /usr/include/c++/14/bits/stl_pair.h
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h
+ /usr/include/c++/14/bits/stl_relops.h
+ /usr/include/c++/14/bits/stl_set.h
+ /usr/include/c++/14/bits/stl_tempbuf.h
+ /usr/include/c++/14/bits/stl_tree.h
+ /usr/include/c++/14/bits/stl_uninitialized.h
+ /usr/include/c++/14/bits/stl_vector.h
+ /usr/include/c++/14/bits/stream_iterator.h
+ /usr/include/c++/14/bits/streambuf.tcc
+ /usr/include/c++/14/bits/streambuf_iterator.h
+ /usr/include/c++/14/bits/string_view.tcc
+ /usr/include/c++/14/bits/stringfwd.h
+ /usr/include/c++/14/bits/uniform_int_dist.h
+ /usr/include/c++/14/bits/unique_ptr.h
+ /usr/include/c++/14/bits/unordered_map.h
+ /usr/include/c++/14/bits/uses_allocator.h
+ /usr/include/c++/14/bits/uses_allocator_args.h
+ /usr/include/c++/14/bits/utility.h
+ /usr/include/c++/14/bits/valarray_after.h
+ /usr/include/c++/14/bits/valarray_array.h
+ /usr/include/c++/14/bits/valarray_array.tcc
+ /usr/include/c++/14/bits/valarray_before.h
+ /usr/include/c++/14/bits/vector.tcc
+ /usr/include/c++/14/bits/version.h
+ /usr/include/c++/14/cctype
+ /usr/include/c++/14/cerrno
+ /usr/include/c++/14/clocale
+ /usr/include/c++/14/cmath
+ /usr/include/c++/14/codecvt
+ /usr/include/c++/14/compare
+ /usr/include/c++/14/concepts
+ /usr/include/c++/14/cstddef
+ /usr/include/c++/14/cstdint
+ /usr/include/c++/14/cstdio
+ /usr/include/c++/14/cstdlib
+ /usr/include/c++/14/cstring
+ /usr/include/c++/14/ctime
+ /usr/include/c++/14/cwchar
+ /usr/include/c++/14/cwctype
+ /usr/include/c++/14/debug/assertions.h
+ /usr/include/c++/14/debug/debug.h
+ /usr/include/c++/14/exception
+ /usr/include/c++/14/ext/aligned_buffer.h
+ /usr/include/c++/14/ext/alloc_traits.h
+ /usr/include/c++/14/ext/atomicity.h
+ /usr/include/c++/14/ext/concurrence.h
+ /usr/include/c++/14/ext/numeric_traits.h
+ /usr/include/c++/14/ext/string_conversions.h
+ /usr/include/c++/14/ext/type_traits.h
+ /usr/include/c++/14/filesystem
+ /usr/include/c++/14/initializer_list
+ /usr/include/c++/14/iomanip
+ /usr/include/c++/14/ios
+ /usr/include/c++/14/iosfwd
+ /usr/include/c++/14/iostream
+ /usr/include/c++/14/istream
+ /usr/include/c++/14/iterator
+ /usr/include/c++/14/limits
+ /usr/include/c++/14/list
+ /usr/include/c++/14/locale
+ /usr/include/c++/14/map
+ /usr/include/c++/14/memory
+ /usr/include/c++/14/new
+ /usr/include/c++/14/ostream
+ /usr/include/c++/14/pstl/execution_defs.h
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h
+ /usr/include/c++/14/pstl/glue_memory_defs.h
+ /usr/include/c++/14/pstl/pstl_config.h
+ /usr/include/c++/14/ratio
+ /usr/include/c++/14/set
+ /usr/include/c++/14/sstream
+ /usr/include/c++/14/stdexcept
+ /usr/include/c++/14/streambuf
+ /usr/include/c++/14/string
+ /usr/include/c++/14/string_view
+ /usr/include/c++/14/system_error
+ /usr/include/c++/14/tr1/bessel_function.tcc
+ /usr/include/c++/14/tr1/beta_function.tcc
+ /usr/include/c++/14/tr1/ell_integral.tcc
+ /usr/include/c++/14/tr1/exp_integral.tcc
+ /usr/include/c++/14/tr1/gamma.tcc
+ /usr/include/c++/14/tr1/hypergeometric.tcc
+ /usr/include/c++/14/tr1/legendre_function.tcc
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc
+ /usr/include/c++/14/tr1/poly_hermite.tcc
+ /usr/include/c++/14/tr1/poly_laguerre.tcc
+ /usr/include/c++/14/tr1/riemann_zeta.tcc
+ /usr/include/c++/14/tr1/special_function_util.h
+ /usr/include/c++/14/tuple
+ /usr/include/c++/14/type_traits
+ /usr/include/c++/14/typeinfo
+ /usr/include/c++/14/unordered_map
+ /usr/include/c++/14/utility
+ /usr/include/c++/14/valarray
+ /usr/include/c++/14/vector
+ /usr/include/ctype.h
+ /usr/include/dlfcn.h
+ /usr/include/endian.h
+ /usr/include/errno.h
+ /usr/include/features-time64.h
+ /usr/include/features.h
+ /usr/include/libintl.h
+ /usr/include/limits.h
+ /usr/include/linux/errno.h
+ /usr/include/linux/limits.h
+ /usr/include/locale.h
+ /usr/include/math.h
+ /usr/include/pthread.h
+ /usr/include/sched.h
+ /usr/include/stdc-predef.h
+ /usr/include/stdint.h
+ /usr/include/stdio.h
+ /usr/include/stdlib.h
+ /usr/include/string.h
+ /usr/include/strings.h
+ /usr/include/time.h
+ /usr/include/wchar.h
+ /usr/include/wctype.h
+ /usr/include/x86_64-linux-gnu/asm/errno.h
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h
+ /usr/include/x86_64-linux-gnu/bits/dlfcn.h
+ /usr/include/x86_64-linux-gnu/bits/endian.h
+ /usr/include/x86_64-linux-gnu/bits/endianness.h
+ /usr/include/x86_64-linux-gnu/bits/errno.h
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h
+ /usr/include/x86_64-linux-gnu/bits/floatn.h
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h
+ /usr/include/x86_64-linux-gnu/bits/locale.h
+ /usr/include/x86_64-linux-gnu/bits/long-double.h
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h
+ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h
+ /usr/include/x86_64-linux-gnu/bits/sched.h
+ /usr/include/x86_64-linux-gnu/bits/select.h
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h
+ /usr/include/x86_64-linux-gnu/bits/time.h
+ /usr/include/x86_64-linux-gnu/bits/time64.h
+ /usr/include/x86_64-linux-gnu/bits/timesize.h
+ /usr/include/x86_64-linux-gnu/bits/timex.h
+ /usr/include/x86_64-linux-gnu/bits/types.h
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h
+ /usr/include/x86_64-linux-gnu/bits/waitflags.h
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h
+ /usr/include/x86_64-linux-gnu/bits/wchar.h
+ /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h
+ /usr/include/x86_64-linux-gnu/sys/select.h
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h
+ /usr/include/x86_64-linux-gnu/sys/types.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h
+
+CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.cpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension/gdextension_interface.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/file_access.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/os.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/project_settings.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/utility_functions.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/ref.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/binder_common.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/class_db.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/defs.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/error_macros.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/math.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/memory.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_bind.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/object.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/property_info.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/type_info.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/godot.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/list.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/aabb.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/basis.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_string.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/color.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/plane.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/projection.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/variant.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include/libretro.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/binary.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/dll.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitter.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterdef.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emittermanip.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterstyle.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/exceptions.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/mark.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/convert.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/emit.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/impl.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/node.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/parse.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/ptr.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/type.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/noexcept.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/null.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/parser.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/stlemitter.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/traits.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/yaml.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.hpp
+ /usr/include/alloca.h
+ /usr/include/asm-generic/errno-base.h
+ /usr/include/asm-generic/errno.h
+ /usr/include/c++/14/algorithm
+ /usr/include/c++/14/array
+ /usr/include/c++/14/atomic
+ /usr/include/c++/14/backward/auto_ptr.h
+ /usr/include/c++/14/backward/binders.h
+ /usr/include/c++/14/bit
+ /usr/include/c++/14/bits/algorithmfwd.h
+ /usr/include/c++/14/bits/align.h
+ /usr/include/c++/14/bits/alloc_traits.h
+ /usr/include/c++/14/bits/allocated_ptr.h
+ /usr/include/c++/14/bits/allocator.h
+ /usr/include/c++/14/bits/atomic_base.h
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h
+ /usr/include/c++/14/bits/basic_ios.h
+ /usr/include/c++/14/bits/basic_ios.tcc
+ /usr/include/c++/14/bits/basic_string.h
+ /usr/include/c++/14/bits/basic_string.tcc
+ /usr/include/c++/14/bits/char_traits.h
+ /usr/include/c++/14/bits/charconv.h
+ /usr/include/c++/14/bits/chrono.h
+ /usr/include/c++/14/bits/codecvt.h
+ /usr/include/c++/14/bits/concept_check.h
+ /usr/include/c++/14/bits/cpp_type_traits.h
+ /usr/include/c++/14/bits/cxxabi_forced.h
+ /usr/include/c++/14/bits/cxxabi_init_exception.h
+ /usr/include/c++/14/bits/enable_special_members.h
+ /usr/include/c++/14/bits/erase_if.h
+ /usr/include/c++/14/bits/exception.h
+ /usr/include/c++/14/bits/exception_defines.h
+ /usr/include/c++/14/bits/exception_ptr.h
+ /usr/include/c++/14/bits/fs_dir.h
+ /usr/include/c++/14/bits/fs_fwd.h
+ /usr/include/c++/14/bits/fs_ops.h
+ /usr/include/c++/14/bits/fs_path.h
+ /usr/include/c++/14/bits/fstream.tcc
+ /usr/include/c++/14/bits/functexcept.h
+ /usr/include/c++/14/bits/functional_hash.h
+ /usr/include/c++/14/bits/gslice.h
+ /usr/include/c++/14/bits/gslice_array.h
+ /usr/include/c++/14/bits/hash_bytes.h
+ /usr/include/c++/14/bits/hashtable.h
+ /usr/include/c++/14/bits/hashtable_policy.h
+ /usr/include/c++/14/bits/indirect_array.h
+ /usr/include/c++/14/bits/invoke.h
+ /usr/include/c++/14/bits/ios_base.h
+ /usr/include/c++/14/bits/istream.tcc
+ /usr/include/c++/14/bits/list.tcc
+ /usr/include/c++/14/bits/locale_classes.h
+ /usr/include/c++/14/bits/locale_classes.tcc
+ /usr/include/c++/14/bits/locale_conv.h
+ /usr/include/c++/14/bits/locale_facets.h
+ /usr/include/c++/14/bits/locale_facets.tcc
+ /usr/include/c++/14/bits/locale_facets_nonio.h
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc
+ /usr/include/c++/14/bits/localefwd.h
+ /usr/include/c++/14/bits/mask_array.h
+ /usr/include/c++/14/bits/memory_resource.h
+ /usr/include/c++/14/bits/memoryfwd.h
+ /usr/include/c++/14/bits/move.h
+ /usr/include/c++/14/bits/nested_exception.h
+ /usr/include/c++/14/bits/new_allocator.h
+ /usr/include/c++/14/bits/node_handle.h
+ /usr/include/c++/14/bits/ostream.tcc
+ /usr/include/c++/14/bits/ostream_insert.h
+ /usr/include/c++/14/bits/parse_numbers.h
+ /usr/include/c++/14/bits/postypes.h
+ /usr/include/c++/14/bits/predefined_ops.h
+ /usr/include/c++/14/bits/ptr_traits.h
+ /usr/include/c++/14/bits/quoted_string.h
+ /usr/include/c++/14/bits/range_access.h
+ /usr/include/c++/14/bits/refwrap.h
+ /usr/include/c++/14/bits/requires_hosted.h
+ /usr/include/c++/14/bits/shared_ptr.h
+ /usr/include/c++/14/bits/shared_ptr_atomic.h
+ /usr/include/c++/14/bits/shared_ptr_base.h
+ /usr/include/c++/14/bits/slice_array.h
+ /usr/include/c++/14/bits/specfun.h
+ /usr/include/c++/14/bits/sstream.tcc
+ /usr/include/c++/14/bits/std_abs.h
+ /usr/include/c++/14/bits/stl_algo.h
+ /usr/include/c++/14/bits/stl_algobase.h
+ /usr/include/c++/14/bits/stl_bvector.h
+ /usr/include/c++/14/bits/stl_construct.h
+ /usr/include/c++/14/bits/stl_function.h
+ /usr/include/c++/14/bits/stl_heap.h
+ /usr/include/c++/14/bits/stl_iterator.h
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h
+ /usr/include/c++/14/bits/stl_iterator_base_types.h
+ /usr/include/c++/14/bits/stl_list.h
+ /usr/include/c++/14/bits/stl_map.h
+ /usr/include/c++/14/bits/stl_multimap.h
+ /usr/include/c++/14/bits/stl_multiset.h
+ /usr/include/c++/14/bits/stl_pair.h
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h
+ /usr/include/c++/14/bits/stl_relops.h
+ /usr/include/c++/14/bits/stl_set.h
+ /usr/include/c++/14/bits/stl_tempbuf.h
+ /usr/include/c++/14/bits/stl_tree.h
+ /usr/include/c++/14/bits/stl_uninitialized.h
+ /usr/include/c++/14/bits/stl_vector.h
+ /usr/include/c++/14/bits/stream_iterator.h
+ /usr/include/c++/14/bits/streambuf.tcc
+ /usr/include/c++/14/bits/streambuf_iterator.h
+ /usr/include/c++/14/bits/string_view.tcc
+ /usr/include/c++/14/bits/stringfwd.h
+ /usr/include/c++/14/bits/uniform_int_dist.h
+ /usr/include/c++/14/bits/unique_ptr.h
+ /usr/include/c++/14/bits/unordered_map.h
+ /usr/include/c++/14/bits/uses_allocator.h
+ /usr/include/c++/14/bits/uses_allocator_args.h
+ /usr/include/c++/14/bits/utility.h
+ /usr/include/c++/14/bits/valarray_after.h
+ /usr/include/c++/14/bits/valarray_array.h
+ /usr/include/c++/14/bits/valarray_array.tcc
+ /usr/include/c++/14/bits/valarray_before.h
+ /usr/include/c++/14/bits/vector.tcc
+ /usr/include/c++/14/bits/version.h
+ /usr/include/c++/14/cctype
+ /usr/include/c++/14/cerrno
+ /usr/include/c++/14/clocale
+ /usr/include/c++/14/cmath
+ /usr/include/c++/14/codecvt
+ /usr/include/c++/14/compare
+ /usr/include/c++/14/concepts
+ /usr/include/c++/14/cstddef
+ /usr/include/c++/14/cstdint
+ /usr/include/c++/14/cstdio
+ /usr/include/c++/14/cstdlib
+ /usr/include/c++/14/cstring
+ /usr/include/c++/14/ctime
+ /usr/include/c++/14/cwchar
+ /usr/include/c++/14/cwctype
+ /usr/include/c++/14/debug/assertions.h
+ /usr/include/c++/14/debug/debug.h
+ /usr/include/c++/14/exception
+ /usr/include/c++/14/ext/aligned_buffer.h
+ /usr/include/c++/14/ext/alloc_traits.h
+ /usr/include/c++/14/ext/atomicity.h
+ /usr/include/c++/14/ext/concurrence.h
+ /usr/include/c++/14/ext/numeric_traits.h
+ /usr/include/c++/14/ext/string_conversions.h
+ /usr/include/c++/14/ext/type_traits.h
+ /usr/include/c++/14/filesystem
+ /usr/include/c++/14/fstream
+ /usr/include/c++/14/initializer_list
+ /usr/include/c++/14/iomanip
+ /usr/include/c++/14/ios
+ /usr/include/c++/14/iosfwd
+ /usr/include/c++/14/iostream
+ /usr/include/c++/14/istream
+ /usr/include/c++/14/iterator
+ /usr/include/c++/14/limits
+ /usr/include/c++/14/list
+ /usr/include/c++/14/locale
+ /usr/include/c++/14/map
+ /usr/include/c++/14/memory
+ /usr/include/c++/14/new
+ /usr/include/c++/14/ostream
+ /usr/include/c++/14/pstl/execution_defs.h
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h
+ /usr/include/c++/14/pstl/glue_memory_defs.h
+ /usr/include/c++/14/pstl/pstl_config.h
+ /usr/include/c++/14/ratio
+ /usr/include/c++/14/set
+ /usr/include/c++/14/sstream
+ /usr/include/c++/14/stdexcept
+ /usr/include/c++/14/streambuf
+ /usr/include/c++/14/string
+ /usr/include/c++/14/string_view
+ /usr/include/c++/14/system_error
+ /usr/include/c++/14/tr1/bessel_function.tcc
+ /usr/include/c++/14/tr1/beta_function.tcc
+ /usr/include/c++/14/tr1/ell_integral.tcc
+ /usr/include/c++/14/tr1/exp_integral.tcc
+ /usr/include/c++/14/tr1/gamma.tcc
+ /usr/include/c++/14/tr1/hypergeometric.tcc
+ /usr/include/c++/14/tr1/legendre_function.tcc
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc
+ /usr/include/c++/14/tr1/poly_hermite.tcc
+ /usr/include/c++/14/tr1/poly_laguerre.tcc
+ /usr/include/c++/14/tr1/riemann_zeta.tcc
+ /usr/include/c++/14/tr1/special_function_util.h
+ /usr/include/c++/14/tuple
+ /usr/include/c++/14/type_traits
+ /usr/include/c++/14/typeinfo
+ /usr/include/c++/14/unordered_map
+ /usr/include/c++/14/utility
+ /usr/include/c++/14/valarray
+ /usr/include/c++/14/vector
+ /usr/include/ctype.h
+ /usr/include/dlfcn.h
+ /usr/include/endian.h
+ /usr/include/errno.h
+ /usr/include/features-time64.h
+ /usr/include/features.h
+ /usr/include/libintl.h
+ /usr/include/limits.h
+ /usr/include/linux/errno.h
+ /usr/include/linux/limits.h
+ /usr/include/locale.h
+ /usr/include/math.h
+ /usr/include/pthread.h
+ /usr/include/sched.h
+ /usr/include/stdc-predef.h
+ /usr/include/stdint.h
+ /usr/include/stdio.h
+ /usr/include/stdlib.h
+ /usr/include/string.h
+ /usr/include/strings.h
+ /usr/include/time.h
+ /usr/include/wchar.h
+ /usr/include/wctype.h
+ /usr/include/x86_64-linux-gnu/asm/errno.h
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h
+ /usr/include/x86_64-linux-gnu/bits/dlfcn.h
+ /usr/include/x86_64-linux-gnu/bits/endian.h
+ /usr/include/x86_64-linux-gnu/bits/endianness.h
+ /usr/include/x86_64-linux-gnu/bits/errno.h
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h
+ /usr/include/x86_64-linux-gnu/bits/floatn.h
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h
+ /usr/include/x86_64-linux-gnu/bits/locale.h
+ /usr/include/x86_64-linux-gnu/bits/long-double.h
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h
+ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h
+ /usr/include/x86_64-linux-gnu/bits/sched.h
+ /usr/include/x86_64-linux-gnu/bits/select.h
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h
+ /usr/include/x86_64-linux-gnu/bits/time.h
+ /usr/include/x86_64-linux-gnu/bits/time64.h
+ /usr/include/x86_64-linux-gnu/bits/timesize.h
+ /usr/include/x86_64-linux-gnu/bits/timex.h
+ /usr/include/x86_64-linux-gnu/bits/types.h
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h
+ /usr/include/x86_64-linux-gnu/bits/waitflags.h
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h
+ /usr/include/x86_64-linux-gnu/bits/wchar.h
+ /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/basic_file.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++io.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h
+ /usr/include/x86_64-linux-gnu/sys/select.h
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h
+ /usr/include/x86_64-linux-gnu/sys/types.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h
+
+CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/VFS.cpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension/gdextension_interface.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/ref.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/binder_common.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/class_db.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/defs.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/error_macros.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/math.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/memory.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_bind.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/object.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/property_info.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/type_info.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/godot.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/list.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/aabb.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/basis.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_string.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/color.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/plane.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/projection.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/variant.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include/libretro.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/binary.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/dll.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitter.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterdef.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emittermanip.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterstyle.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/exceptions.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/mark.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/convert.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/emit.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/impl.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/node.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/parse.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/ptr.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/type.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/noexcept.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/null.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/parser.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/stlemitter.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/traits.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/yaml.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.hpp
+ /usr/include/alloca.h
+ /usr/include/asm-generic/errno-base.h
+ /usr/include/asm-generic/errno.h
+ /usr/include/c++/14/algorithm
+ /usr/include/c++/14/array
+ /usr/include/c++/14/atomic
+ /usr/include/c++/14/backward/auto_ptr.h
+ /usr/include/c++/14/backward/binders.h
+ /usr/include/c++/14/bit
+ /usr/include/c++/14/bits/algorithmfwd.h
+ /usr/include/c++/14/bits/align.h
+ /usr/include/c++/14/bits/alloc_traits.h
+ /usr/include/c++/14/bits/allocated_ptr.h
+ /usr/include/c++/14/bits/allocator.h
+ /usr/include/c++/14/bits/atomic_base.h
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h
+ /usr/include/c++/14/bits/basic_ios.h
+ /usr/include/c++/14/bits/basic_ios.tcc
+ /usr/include/c++/14/bits/basic_string.h
+ /usr/include/c++/14/bits/basic_string.tcc
+ /usr/include/c++/14/bits/char_traits.h
+ /usr/include/c++/14/bits/charconv.h
+ /usr/include/c++/14/bits/chrono.h
+ /usr/include/c++/14/bits/codecvt.h
+ /usr/include/c++/14/bits/concept_check.h
+ /usr/include/c++/14/bits/cpp_type_traits.h
+ /usr/include/c++/14/bits/cxxabi_forced.h
+ /usr/include/c++/14/bits/cxxabi_init_exception.h
+ /usr/include/c++/14/bits/enable_special_members.h
+ /usr/include/c++/14/bits/erase_if.h
+ /usr/include/c++/14/bits/exception.h
+ /usr/include/c++/14/bits/exception_defines.h
+ /usr/include/c++/14/bits/exception_ptr.h
+ /usr/include/c++/14/bits/fs_dir.h
+ /usr/include/c++/14/bits/fs_fwd.h
+ /usr/include/c++/14/bits/fs_ops.h
+ /usr/include/c++/14/bits/fs_path.h
+ /usr/include/c++/14/bits/functexcept.h
+ /usr/include/c++/14/bits/functional_hash.h
+ /usr/include/c++/14/bits/gslice.h
+ /usr/include/c++/14/bits/gslice_array.h
+ /usr/include/c++/14/bits/hash_bytes.h
+ /usr/include/c++/14/bits/hashtable.h
+ /usr/include/c++/14/bits/hashtable_policy.h
+ /usr/include/c++/14/bits/indirect_array.h
+ /usr/include/c++/14/bits/invoke.h
+ /usr/include/c++/14/bits/ios_base.h
+ /usr/include/c++/14/bits/istream.tcc
+ /usr/include/c++/14/bits/list.tcc
+ /usr/include/c++/14/bits/locale_classes.h
+ /usr/include/c++/14/bits/locale_classes.tcc
+ /usr/include/c++/14/bits/locale_conv.h
+ /usr/include/c++/14/bits/locale_facets.h
+ /usr/include/c++/14/bits/locale_facets.tcc
+ /usr/include/c++/14/bits/locale_facets_nonio.h
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc
+ /usr/include/c++/14/bits/localefwd.h
+ /usr/include/c++/14/bits/mask_array.h
+ /usr/include/c++/14/bits/memory_resource.h
+ /usr/include/c++/14/bits/memoryfwd.h
+ /usr/include/c++/14/bits/move.h
+ /usr/include/c++/14/bits/nested_exception.h
+ /usr/include/c++/14/bits/new_allocator.h
+ /usr/include/c++/14/bits/node_handle.h
+ /usr/include/c++/14/bits/ostream.tcc
+ /usr/include/c++/14/bits/ostream_insert.h
+ /usr/include/c++/14/bits/parse_numbers.h
+ /usr/include/c++/14/bits/postypes.h
+ /usr/include/c++/14/bits/predefined_ops.h
+ /usr/include/c++/14/bits/ptr_traits.h
+ /usr/include/c++/14/bits/quoted_string.h
+ /usr/include/c++/14/bits/range_access.h
+ /usr/include/c++/14/bits/refwrap.h
+ /usr/include/c++/14/bits/requires_hosted.h
+ /usr/include/c++/14/bits/shared_ptr.h
+ /usr/include/c++/14/bits/shared_ptr_atomic.h
+ /usr/include/c++/14/bits/shared_ptr_base.h
+ /usr/include/c++/14/bits/slice_array.h
+ /usr/include/c++/14/bits/specfun.h
+ /usr/include/c++/14/bits/sstream.tcc
+ /usr/include/c++/14/bits/std_abs.h
+ /usr/include/c++/14/bits/stl_algo.h
+ /usr/include/c++/14/bits/stl_algobase.h
+ /usr/include/c++/14/bits/stl_bvector.h
+ /usr/include/c++/14/bits/stl_construct.h
+ /usr/include/c++/14/bits/stl_function.h
+ /usr/include/c++/14/bits/stl_heap.h
+ /usr/include/c++/14/bits/stl_iterator.h
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h
+ /usr/include/c++/14/bits/stl_iterator_base_types.h
+ /usr/include/c++/14/bits/stl_list.h
+ /usr/include/c++/14/bits/stl_map.h
+ /usr/include/c++/14/bits/stl_multimap.h
+ /usr/include/c++/14/bits/stl_multiset.h
+ /usr/include/c++/14/bits/stl_pair.h
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h
+ /usr/include/c++/14/bits/stl_relops.h
+ /usr/include/c++/14/bits/stl_set.h
+ /usr/include/c++/14/bits/stl_tempbuf.h
+ /usr/include/c++/14/bits/stl_tree.h
+ /usr/include/c++/14/bits/stl_uninitialized.h
+ /usr/include/c++/14/bits/stl_vector.h
+ /usr/include/c++/14/bits/stream_iterator.h
+ /usr/include/c++/14/bits/streambuf.tcc
+ /usr/include/c++/14/bits/streambuf_iterator.h
+ /usr/include/c++/14/bits/string_view.tcc
+ /usr/include/c++/14/bits/stringfwd.h
+ /usr/include/c++/14/bits/uniform_int_dist.h
+ /usr/include/c++/14/bits/unique_ptr.h
+ /usr/include/c++/14/bits/unordered_map.h
+ /usr/include/c++/14/bits/uses_allocator.h
+ /usr/include/c++/14/bits/uses_allocator_args.h
+ /usr/include/c++/14/bits/utility.h
+ /usr/include/c++/14/bits/valarray_after.h
+ /usr/include/c++/14/bits/valarray_array.h
+ /usr/include/c++/14/bits/valarray_array.tcc
+ /usr/include/c++/14/bits/valarray_before.h
+ /usr/include/c++/14/bits/vector.tcc
+ /usr/include/c++/14/bits/version.h
+ /usr/include/c++/14/cctype
+ /usr/include/c++/14/cerrno
+ /usr/include/c++/14/clocale
+ /usr/include/c++/14/cmath
+ /usr/include/c++/14/codecvt
+ /usr/include/c++/14/compare
+ /usr/include/c++/14/concepts
+ /usr/include/c++/14/cstddef
+ /usr/include/c++/14/cstdint
+ /usr/include/c++/14/cstdio
+ /usr/include/c++/14/cstdlib
+ /usr/include/c++/14/cstring
+ /usr/include/c++/14/ctime
+ /usr/include/c++/14/cwchar
+ /usr/include/c++/14/cwctype
+ /usr/include/c++/14/debug/assertions.h
+ /usr/include/c++/14/debug/debug.h
+ /usr/include/c++/14/exception
+ /usr/include/c++/14/ext/aligned_buffer.h
+ /usr/include/c++/14/ext/alloc_traits.h
+ /usr/include/c++/14/ext/atomicity.h
+ /usr/include/c++/14/ext/concurrence.h
+ /usr/include/c++/14/ext/numeric_traits.h
+ /usr/include/c++/14/ext/string_conversions.h
+ /usr/include/c++/14/ext/type_traits.h
+ /usr/include/c++/14/filesystem
+ /usr/include/c++/14/initializer_list
+ /usr/include/c++/14/iomanip
+ /usr/include/c++/14/ios
+ /usr/include/c++/14/iosfwd
+ /usr/include/c++/14/iostream
+ /usr/include/c++/14/istream
+ /usr/include/c++/14/iterator
+ /usr/include/c++/14/limits
+ /usr/include/c++/14/list
+ /usr/include/c++/14/locale
+ /usr/include/c++/14/map
+ /usr/include/c++/14/memory
+ /usr/include/c++/14/new
+ /usr/include/c++/14/ostream
+ /usr/include/c++/14/pstl/execution_defs.h
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h
+ /usr/include/c++/14/pstl/glue_memory_defs.h
+ /usr/include/c++/14/pstl/pstl_config.h
+ /usr/include/c++/14/ratio
+ /usr/include/c++/14/set
+ /usr/include/c++/14/sstream
+ /usr/include/c++/14/stdexcept
+ /usr/include/c++/14/streambuf
+ /usr/include/c++/14/string
+ /usr/include/c++/14/string_view
+ /usr/include/c++/14/system_error
+ /usr/include/c++/14/tr1/bessel_function.tcc
+ /usr/include/c++/14/tr1/beta_function.tcc
+ /usr/include/c++/14/tr1/ell_integral.tcc
+ /usr/include/c++/14/tr1/exp_integral.tcc
+ /usr/include/c++/14/tr1/gamma.tcc
+ /usr/include/c++/14/tr1/hypergeometric.tcc
+ /usr/include/c++/14/tr1/legendre_function.tcc
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc
+ /usr/include/c++/14/tr1/poly_hermite.tcc
+ /usr/include/c++/14/tr1/poly_laguerre.tcc
+ /usr/include/c++/14/tr1/riemann_zeta.tcc
+ /usr/include/c++/14/tr1/special_function_util.h
+ /usr/include/c++/14/tuple
+ /usr/include/c++/14/type_traits
+ /usr/include/c++/14/typeinfo
+ /usr/include/c++/14/unordered_map
+ /usr/include/c++/14/utility
+ /usr/include/c++/14/valarray
+ /usr/include/c++/14/vector
+ /usr/include/ctype.h
+ /usr/include/dlfcn.h
+ /usr/include/endian.h
+ /usr/include/errno.h
+ /usr/include/features-time64.h
+ /usr/include/features.h
+ /usr/include/libintl.h
+ /usr/include/limits.h
+ /usr/include/linux/errno.h
+ /usr/include/linux/limits.h
+ /usr/include/locale.h
+ /usr/include/math.h
+ /usr/include/pthread.h
+ /usr/include/sched.h
+ /usr/include/stdc-predef.h
+ /usr/include/stdint.h
+ /usr/include/stdio.h
+ /usr/include/stdlib.h
+ /usr/include/string.h
+ /usr/include/strings.h
+ /usr/include/time.h
+ /usr/include/wchar.h
+ /usr/include/wctype.h
+ /usr/include/x86_64-linux-gnu/asm/errno.h
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h
+ /usr/include/x86_64-linux-gnu/bits/dlfcn.h
+ /usr/include/x86_64-linux-gnu/bits/endian.h
+ /usr/include/x86_64-linux-gnu/bits/endianness.h
+ /usr/include/x86_64-linux-gnu/bits/errno.h
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h
+ /usr/include/x86_64-linux-gnu/bits/floatn.h
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h
+ /usr/include/x86_64-linux-gnu/bits/locale.h
+ /usr/include/x86_64-linux-gnu/bits/long-double.h
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h
+ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h
+ /usr/include/x86_64-linux-gnu/bits/sched.h
+ /usr/include/x86_64-linux-gnu/bits/select.h
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h
+ /usr/include/x86_64-linux-gnu/bits/time.h
+ /usr/include/x86_64-linux-gnu/bits/time64.h
+ /usr/include/x86_64-linux-gnu/bits/timesize.h
+ /usr/include/x86_64-linux-gnu/bits/timex.h
+ /usr/include/x86_64-linux-gnu/bits/types.h
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h
+ /usr/include/x86_64-linux-gnu/bits/waitflags.h
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h
+ /usr/include/x86_64-linux-gnu/bits/wchar.h
+ /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h
+ /usr/include/x86_64-linux-gnu/sys/select.h
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h
+ /usr/include/x86_64-linux-gnu/sys/types.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h
+
+CMakeFiles/LibRetroHost.dir/src/Video.cpp.o
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Video.cpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension/gdextension_interface.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/utility_functions.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/ref.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/binder_common.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/class_db.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/defs.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/error_macros.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/math.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/memory.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_bind.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/object.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/property_info.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/type_info.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/godot.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/list.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/aabb.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/basis.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_string.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/color.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/plane.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/projection.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/variant.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include/libretro.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/binary.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/dll.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitter.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterdef.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emittermanip.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterstyle.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/exceptions.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/mark.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/convert.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/emit.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/impl.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/iterator.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/node.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/parse.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/ptr.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/type.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/noexcept.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/null.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/parser.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/stlemitter.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/traits.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/yaml.h
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.hpp
+ /usr/include/alloca.h
+ /usr/include/asm-generic/errno-base.h
+ /usr/include/asm-generic/errno.h
+ /usr/include/c++/14/algorithm
+ /usr/include/c++/14/array
+ /usr/include/c++/14/atomic
+ /usr/include/c++/14/backward/auto_ptr.h
+ /usr/include/c++/14/backward/binders.h
+ /usr/include/c++/14/bit
+ /usr/include/c++/14/bits/algorithmfwd.h
+ /usr/include/c++/14/bits/align.h
+ /usr/include/c++/14/bits/alloc_traits.h
+ /usr/include/c++/14/bits/allocated_ptr.h
+ /usr/include/c++/14/bits/allocator.h
+ /usr/include/c++/14/bits/atomic_base.h
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h
+ /usr/include/c++/14/bits/basic_ios.h
+ /usr/include/c++/14/bits/basic_ios.tcc
+ /usr/include/c++/14/bits/basic_string.h
+ /usr/include/c++/14/bits/basic_string.tcc
+ /usr/include/c++/14/bits/char_traits.h
+ /usr/include/c++/14/bits/charconv.h
+ /usr/include/c++/14/bits/chrono.h
+ /usr/include/c++/14/bits/codecvt.h
+ /usr/include/c++/14/bits/concept_check.h
+ /usr/include/c++/14/bits/cpp_type_traits.h
+ /usr/include/c++/14/bits/cxxabi_forced.h
+ /usr/include/c++/14/bits/cxxabi_init_exception.h
+ /usr/include/c++/14/bits/enable_special_members.h
+ /usr/include/c++/14/bits/erase_if.h
+ /usr/include/c++/14/bits/exception.h
+ /usr/include/c++/14/bits/exception_defines.h
+ /usr/include/c++/14/bits/exception_ptr.h
+ /usr/include/c++/14/bits/fs_dir.h
+ /usr/include/c++/14/bits/fs_fwd.h
+ /usr/include/c++/14/bits/fs_ops.h
+ /usr/include/c++/14/bits/fs_path.h
+ /usr/include/c++/14/bits/functexcept.h
+ /usr/include/c++/14/bits/functional_hash.h
+ /usr/include/c++/14/bits/gslice.h
+ /usr/include/c++/14/bits/gslice_array.h
+ /usr/include/c++/14/bits/hash_bytes.h
+ /usr/include/c++/14/bits/hashtable.h
+ /usr/include/c++/14/bits/hashtable_policy.h
+ /usr/include/c++/14/bits/indirect_array.h
+ /usr/include/c++/14/bits/invoke.h
+ /usr/include/c++/14/bits/ios_base.h
+ /usr/include/c++/14/bits/istream.tcc
+ /usr/include/c++/14/bits/list.tcc
+ /usr/include/c++/14/bits/locale_classes.h
+ /usr/include/c++/14/bits/locale_classes.tcc
+ /usr/include/c++/14/bits/locale_conv.h
+ /usr/include/c++/14/bits/locale_facets.h
+ /usr/include/c++/14/bits/locale_facets.tcc
+ /usr/include/c++/14/bits/locale_facets_nonio.h
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc
+ /usr/include/c++/14/bits/localefwd.h
+ /usr/include/c++/14/bits/mask_array.h
+ /usr/include/c++/14/bits/memory_resource.h
+ /usr/include/c++/14/bits/memoryfwd.h
+ /usr/include/c++/14/bits/move.h
+ /usr/include/c++/14/bits/nested_exception.h
+ /usr/include/c++/14/bits/new_allocator.h
+ /usr/include/c++/14/bits/node_handle.h
+ /usr/include/c++/14/bits/ostream.tcc
+ /usr/include/c++/14/bits/ostream_insert.h
+ /usr/include/c++/14/bits/parse_numbers.h
+ /usr/include/c++/14/bits/postypes.h
+ /usr/include/c++/14/bits/predefined_ops.h
+ /usr/include/c++/14/bits/ptr_traits.h
+ /usr/include/c++/14/bits/quoted_string.h
+ /usr/include/c++/14/bits/range_access.h
+ /usr/include/c++/14/bits/refwrap.h
+ /usr/include/c++/14/bits/requires_hosted.h
+ /usr/include/c++/14/bits/shared_ptr.h
+ /usr/include/c++/14/bits/shared_ptr_atomic.h
+ /usr/include/c++/14/bits/shared_ptr_base.h
+ /usr/include/c++/14/bits/slice_array.h
+ /usr/include/c++/14/bits/specfun.h
+ /usr/include/c++/14/bits/sstream.tcc
+ /usr/include/c++/14/bits/std_abs.h
+ /usr/include/c++/14/bits/stl_algo.h
+ /usr/include/c++/14/bits/stl_algobase.h
+ /usr/include/c++/14/bits/stl_bvector.h
+ /usr/include/c++/14/bits/stl_construct.h
+ /usr/include/c++/14/bits/stl_function.h
+ /usr/include/c++/14/bits/stl_heap.h
+ /usr/include/c++/14/bits/stl_iterator.h
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h
+ /usr/include/c++/14/bits/stl_iterator_base_types.h
+ /usr/include/c++/14/bits/stl_list.h
+ /usr/include/c++/14/bits/stl_map.h
+ /usr/include/c++/14/bits/stl_multimap.h
+ /usr/include/c++/14/bits/stl_multiset.h
+ /usr/include/c++/14/bits/stl_pair.h
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h
+ /usr/include/c++/14/bits/stl_relops.h
+ /usr/include/c++/14/bits/stl_set.h
+ /usr/include/c++/14/bits/stl_tempbuf.h
+ /usr/include/c++/14/bits/stl_tree.h
+ /usr/include/c++/14/bits/stl_uninitialized.h
+ /usr/include/c++/14/bits/stl_vector.h
+ /usr/include/c++/14/bits/stream_iterator.h
+ /usr/include/c++/14/bits/streambuf.tcc
+ /usr/include/c++/14/bits/streambuf_iterator.h
+ /usr/include/c++/14/bits/string_view.tcc
+ /usr/include/c++/14/bits/stringfwd.h
+ /usr/include/c++/14/bits/uniform_int_dist.h
+ /usr/include/c++/14/bits/unique_ptr.h
+ /usr/include/c++/14/bits/unordered_map.h
+ /usr/include/c++/14/bits/uses_allocator.h
+ /usr/include/c++/14/bits/uses_allocator_args.h
+ /usr/include/c++/14/bits/utility.h
+ /usr/include/c++/14/bits/valarray_after.h
+ /usr/include/c++/14/bits/valarray_array.h
+ /usr/include/c++/14/bits/valarray_array.tcc
+ /usr/include/c++/14/bits/valarray_before.h
+ /usr/include/c++/14/bits/vector.tcc
+ /usr/include/c++/14/bits/version.h
+ /usr/include/c++/14/cctype
+ /usr/include/c++/14/cerrno
+ /usr/include/c++/14/clocale
+ /usr/include/c++/14/cmath
+ /usr/include/c++/14/codecvt
+ /usr/include/c++/14/compare
+ /usr/include/c++/14/concepts
+ /usr/include/c++/14/cstddef
+ /usr/include/c++/14/cstdint
+ /usr/include/c++/14/cstdio
+ /usr/include/c++/14/cstdlib
+ /usr/include/c++/14/cstring
+ /usr/include/c++/14/ctime
+ /usr/include/c++/14/cwchar
+ /usr/include/c++/14/cwctype
+ /usr/include/c++/14/debug/assertions.h
+ /usr/include/c++/14/debug/debug.h
+ /usr/include/c++/14/exception
+ /usr/include/c++/14/ext/aligned_buffer.h
+ /usr/include/c++/14/ext/alloc_traits.h
+ /usr/include/c++/14/ext/atomicity.h
+ /usr/include/c++/14/ext/concurrence.h
+ /usr/include/c++/14/ext/numeric_traits.h
+ /usr/include/c++/14/ext/string_conversions.h
+ /usr/include/c++/14/ext/type_traits.h
+ /usr/include/c++/14/filesystem
+ /usr/include/c++/14/initializer_list
+ /usr/include/c++/14/iomanip
+ /usr/include/c++/14/ios
+ /usr/include/c++/14/iosfwd
+ /usr/include/c++/14/iostream
+ /usr/include/c++/14/istream
+ /usr/include/c++/14/iterator
+ /usr/include/c++/14/limits
+ /usr/include/c++/14/list
+ /usr/include/c++/14/locale
+ /usr/include/c++/14/map
+ /usr/include/c++/14/memory
+ /usr/include/c++/14/new
+ /usr/include/c++/14/ostream
+ /usr/include/c++/14/pstl/execution_defs.h
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h
+ /usr/include/c++/14/pstl/glue_memory_defs.h
+ /usr/include/c++/14/pstl/pstl_config.h
+ /usr/include/c++/14/ratio
+ /usr/include/c++/14/set
+ /usr/include/c++/14/sstream
+ /usr/include/c++/14/stdexcept
+ /usr/include/c++/14/streambuf
+ /usr/include/c++/14/string
+ /usr/include/c++/14/string_view
+ /usr/include/c++/14/system_error
+ /usr/include/c++/14/tr1/bessel_function.tcc
+ /usr/include/c++/14/tr1/beta_function.tcc
+ /usr/include/c++/14/tr1/ell_integral.tcc
+ /usr/include/c++/14/tr1/exp_integral.tcc
+ /usr/include/c++/14/tr1/gamma.tcc
+ /usr/include/c++/14/tr1/hypergeometric.tcc
+ /usr/include/c++/14/tr1/legendre_function.tcc
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc
+ /usr/include/c++/14/tr1/poly_hermite.tcc
+ /usr/include/c++/14/tr1/poly_laguerre.tcc
+ /usr/include/c++/14/tr1/riemann_zeta.tcc
+ /usr/include/c++/14/tr1/special_function_util.h
+ /usr/include/c++/14/tuple
+ /usr/include/c++/14/type_traits
+ /usr/include/c++/14/typeinfo
+ /usr/include/c++/14/unordered_map
+ /usr/include/c++/14/utility
+ /usr/include/c++/14/valarray
+ /usr/include/c++/14/vector
+ /usr/include/ctype.h
+ /usr/include/dlfcn.h
+ /usr/include/endian.h
+ /usr/include/errno.h
+ /usr/include/features-time64.h
+ /usr/include/features.h
+ /usr/include/libintl.h
+ /usr/include/limits.h
+ /usr/include/linux/errno.h
+ /usr/include/linux/limits.h
+ /usr/include/locale.h
+ /usr/include/math.h
+ /usr/include/pthread.h
+ /usr/include/sched.h
+ /usr/include/stdc-predef.h
+ /usr/include/stdint.h
+ /usr/include/stdio.h
+ /usr/include/stdlib.h
+ /usr/include/string.h
+ /usr/include/strings.h
+ /usr/include/time.h
+ /usr/include/wchar.h
+ /usr/include/wctype.h
+ /usr/include/x86_64-linux-gnu/asm/errno.h
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h
+ /usr/include/x86_64-linux-gnu/bits/dlfcn.h
+ /usr/include/x86_64-linux-gnu/bits/endian.h
+ /usr/include/x86_64-linux-gnu/bits/endianness.h
+ /usr/include/x86_64-linux-gnu/bits/errno.h
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h
+ /usr/include/x86_64-linux-gnu/bits/floatn.h
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h
+ /usr/include/x86_64-linux-gnu/bits/locale.h
+ /usr/include/x86_64-linux-gnu/bits/long-double.h
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h
+ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h
+ /usr/include/x86_64-linux-gnu/bits/sched.h
+ /usr/include/x86_64-linux-gnu/bits/select.h
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h
+ /usr/include/x86_64-linux-gnu/bits/time.h
+ /usr/include/x86_64-linux-gnu/bits/time64.h
+ /usr/include/x86_64-linux-gnu/bits/timesize.h
+ /usr/include/x86_64-linux-gnu/bits/timex.h
+ /usr/include/x86_64-linux-gnu/bits/types.h
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h
+ /usr/include/x86_64-linux-gnu/bits/waitflags.h
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h
+ /usr/include/x86_64-linux-gnu/bits/wchar.h
+ /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h
+ /usr/include/x86_64-linux-gnu/sys/select.h
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h
+ /usr/include/x86_64-linux-gnu/sys/types.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h
+
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/compiler_depend.make b/gdlibretro/CMakeFiles/LibRetroHost.dir/compiler_depend.make
new file mode 100644
index 0000000..5fee7cc
--- /dev/null
+++ b/gdlibretro/CMakeFiles/LibRetroHost.dir/compiler_depend.make
@@ -0,0 +1,4243 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.30
+
+CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o: src/Audio.cpp \
+ extern/godot-cpp/gdextension/gdextension_interface.h \
+ extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp \
+ extern/godot-cpp/include/godot_cpp/classes/ref.hpp \
+ extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp \
+ extern/godot-cpp/include/godot_cpp/core/binder_common.hpp \
+ extern/godot-cpp/include/godot_cpp/core/class_db.hpp \
+ extern/godot-cpp/include/godot_cpp/core/defs.hpp \
+ extern/godot-cpp/include/godot_cpp/core/error_macros.hpp \
+ extern/godot-cpp/include/godot_cpp/core/math.hpp \
+ extern/godot-cpp/include/godot_cpp/core/memory.hpp \
+ extern/godot-cpp/include/godot_cpp/core/method_bind.hpp \
+ extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp \
+ extern/godot-cpp/include/godot_cpp/core/object.hpp \
+ extern/godot-cpp/include/godot_cpp/core/property_info.hpp \
+ extern/godot-cpp/include/godot_cpp/core/type_info.hpp \
+ extern/godot-cpp/include/godot_cpp/godot.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/list.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/aabb.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/basis.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/char_string.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/color.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/plane.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/projection.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/rect2.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/variant.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector2.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector3.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector4.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp \
+ extern/libretro-common/include/libretro.h \
+ extern/yaml-cpp/include/yaml-cpp/binary.h \
+ extern/yaml-cpp/include/yaml-cpp/dll.h \
+ extern/yaml-cpp/include/yaml-cpp/emitter.h \
+ extern/yaml-cpp/include/yaml-cpp/emitterdef.h \
+ extern/yaml-cpp/include/yaml-cpp/emittermanip.h \
+ extern/yaml-cpp/include/yaml-cpp/emitterstyle.h \
+ extern/yaml-cpp/include/yaml-cpp/exceptions.h \
+ extern/yaml-cpp/include/yaml-cpp/mark.h \
+ extern/yaml-cpp/include/yaml-cpp/node/convert.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h \
+ extern/yaml-cpp/include/yaml-cpp/node/emit.h \
+ extern/yaml-cpp/include/yaml-cpp/node/impl.h \
+ extern/yaml-cpp/include/yaml-cpp/node/iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/node.h \
+ extern/yaml-cpp/include/yaml-cpp/node/parse.h \
+ extern/yaml-cpp/include/yaml-cpp/node/ptr.h \
+ extern/yaml-cpp/include/yaml-cpp/node/type.h \
+ extern/yaml-cpp/include/yaml-cpp/noexcept.h \
+ extern/yaml-cpp/include/yaml-cpp/null.h \
+ extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h \
+ extern/yaml-cpp/include/yaml-cpp/parser.h \
+ extern/yaml-cpp/include/yaml-cpp/stlemitter.h \
+ extern/yaml-cpp/include/yaml-cpp/traits.h \
+ extern/yaml-cpp/include/yaml-cpp/yaml.h \
+ src/RetroHost.hpp \
+ /usr/include/alloca.h \
+ /usr/include/asm-generic/errno-base.h \
+ /usr/include/asm-generic/errno.h \
+ /usr/include/c++/14/algorithm \
+ /usr/include/c++/14/array \
+ /usr/include/c++/14/atomic \
+ /usr/include/c++/14/backward/auto_ptr.h \
+ /usr/include/c++/14/backward/binders.h \
+ /usr/include/c++/14/bit \
+ /usr/include/c++/14/bits/algorithmfwd.h \
+ /usr/include/c++/14/bits/align.h \
+ /usr/include/c++/14/bits/alloc_traits.h \
+ /usr/include/c++/14/bits/allocated_ptr.h \
+ /usr/include/c++/14/bits/allocator.h \
+ /usr/include/c++/14/bits/atomic_base.h \
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h \
+ /usr/include/c++/14/bits/basic_ios.h \
+ /usr/include/c++/14/bits/basic_ios.tcc \
+ /usr/include/c++/14/bits/basic_string.h \
+ /usr/include/c++/14/bits/basic_string.tcc \
+ /usr/include/c++/14/bits/char_traits.h \
+ /usr/include/c++/14/bits/charconv.h \
+ /usr/include/c++/14/bits/chrono.h \
+ /usr/include/c++/14/bits/codecvt.h \
+ /usr/include/c++/14/bits/concept_check.h \
+ /usr/include/c++/14/bits/cpp_type_traits.h \
+ /usr/include/c++/14/bits/cxxabi_forced.h \
+ /usr/include/c++/14/bits/cxxabi_init_exception.h \
+ /usr/include/c++/14/bits/enable_special_members.h \
+ /usr/include/c++/14/bits/erase_if.h \
+ /usr/include/c++/14/bits/exception.h \
+ /usr/include/c++/14/bits/exception_defines.h \
+ /usr/include/c++/14/bits/exception_ptr.h \
+ /usr/include/c++/14/bits/fs_dir.h \
+ /usr/include/c++/14/bits/fs_fwd.h \
+ /usr/include/c++/14/bits/fs_ops.h \
+ /usr/include/c++/14/bits/fs_path.h \
+ /usr/include/c++/14/bits/functexcept.h \
+ /usr/include/c++/14/bits/functional_hash.h \
+ /usr/include/c++/14/bits/gslice.h \
+ /usr/include/c++/14/bits/gslice_array.h \
+ /usr/include/c++/14/bits/hash_bytes.h \
+ /usr/include/c++/14/bits/hashtable.h \
+ /usr/include/c++/14/bits/hashtable_policy.h \
+ /usr/include/c++/14/bits/indirect_array.h \
+ /usr/include/c++/14/bits/invoke.h \
+ /usr/include/c++/14/bits/ios_base.h \
+ /usr/include/c++/14/bits/istream.tcc \
+ /usr/include/c++/14/bits/list.tcc \
+ /usr/include/c++/14/bits/locale_classes.h \
+ /usr/include/c++/14/bits/locale_classes.tcc \
+ /usr/include/c++/14/bits/locale_conv.h \
+ /usr/include/c++/14/bits/locale_facets.h \
+ /usr/include/c++/14/bits/locale_facets.tcc \
+ /usr/include/c++/14/bits/locale_facets_nonio.h \
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc \
+ /usr/include/c++/14/bits/localefwd.h \
+ /usr/include/c++/14/bits/mask_array.h \
+ /usr/include/c++/14/bits/memory_resource.h \
+ /usr/include/c++/14/bits/memoryfwd.h \
+ /usr/include/c++/14/bits/move.h \
+ /usr/include/c++/14/bits/nested_exception.h \
+ /usr/include/c++/14/bits/new_allocator.h \
+ /usr/include/c++/14/bits/node_handle.h \
+ /usr/include/c++/14/bits/ostream.tcc \
+ /usr/include/c++/14/bits/ostream_insert.h \
+ /usr/include/c++/14/bits/parse_numbers.h \
+ /usr/include/c++/14/bits/postypes.h \
+ /usr/include/c++/14/bits/predefined_ops.h \
+ /usr/include/c++/14/bits/ptr_traits.h \
+ /usr/include/c++/14/bits/quoted_string.h \
+ /usr/include/c++/14/bits/range_access.h \
+ /usr/include/c++/14/bits/refwrap.h \
+ /usr/include/c++/14/bits/requires_hosted.h \
+ /usr/include/c++/14/bits/shared_ptr.h \
+ /usr/include/c++/14/bits/shared_ptr_atomic.h \
+ /usr/include/c++/14/bits/shared_ptr_base.h \
+ /usr/include/c++/14/bits/slice_array.h \
+ /usr/include/c++/14/bits/specfun.h \
+ /usr/include/c++/14/bits/sstream.tcc \
+ /usr/include/c++/14/bits/std_abs.h \
+ /usr/include/c++/14/bits/stl_algo.h \
+ /usr/include/c++/14/bits/stl_algobase.h \
+ /usr/include/c++/14/bits/stl_bvector.h \
+ /usr/include/c++/14/bits/stl_construct.h \
+ /usr/include/c++/14/bits/stl_function.h \
+ /usr/include/c++/14/bits/stl_heap.h \
+ /usr/include/c++/14/bits/stl_iterator.h \
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h \
+ /usr/include/c++/14/bits/stl_iterator_base_types.h \
+ /usr/include/c++/14/bits/stl_list.h \
+ /usr/include/c++/14/bits/stl_map.h \
+ /usr/include/c++/14/bits/stl_multimap.h \
+ /usr/include/c++/14/bits/stl_multiset.h \
+ /usr/include/c++/14/bits/stl_pair.h \
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h \
+ /usr/include/c++/14/bits/stl_relops.h \
+ /usr/include/c++/14/bits/stl_set.h \
+ /usr/include/c++/14/bits/stl_tempbuf.h \
+ /usr/include/c++/14/bits/stl_tree.h \
+ /usr/include/c++/14/bits/stl_uninitialized.h \
+ /usr/include/c++/14/bits/stl_vector.h \
+ /usr/include/c++/14/bits/stream_iterator.h \
+ /usr/include/c++/14/bits/streambuf.tcc \
+ /usr/include/c++/14/bits/streambuf_iterator.h \
+ /usr/include/c++/14/bits/string_view.tcc \
+ /usr/include/c++/14/bits/stringfwd.h \
+ /usr/include/c++/14/bits/uniform_int_dist.h \
+ /usr/include/c++/14/bits/unique_ptr.h \
+ /usr/include/c++/14/bits/unordered_map.h \
+ /usr/include/c++/14/bits/uses_allocator.h \
+ /usr/include/c++/14/bits/uses_allocator_args.h \
+ /usr/include/c++/14/bits/utility.h \
+ /usr/include/c++/14/bits/valarray_after.h \
+ /usr/include/c++/14/bits/valarray_array.h \
+ /usr/include/c++/14/bits/valarray_array.tcc \
+ /usr/include/c++/14/bits/valarray_before.h \
+ /usr/include/c++/14/bits/vector.tcc \
+ /usr/include/c++/14/bits/version.h \
+ /usr/include/c++/14/cctype \
+ /usr/include/c++/14/cerrno \
+ /usr/include/c++/14/clocale \
+ /usr/include/c++/14/cmath \
+ /usr/include/c++/14/codecvt \
+ /usr/include/c++/14/compare \
+ /usr/include/c++/14/concepts \
+ /usr/include/c++/14/cstddef \
+ /usr/include/c++/14/cstdint \
+ /usr/include/c++/14/cstdio \
+ /usr/include/c++/14/cstdlib \
+ /usr/include/c++/14/cstring \
+ /usr/include/c++/14/ctime \
+ /usr/include/c++/14/cwchar \
+ /usr/include/c++/14/cwctype \
+ /usr/include/c++/14/debug/assertions.h \
+ /usr/include/c++/14/debug/debug.h \
+ /usr/include/c++/14/exception \
+ /usr/include/c++/14/ext/aligned_buffer.h \
+ /usr/include/c++/14/ext/alloc_traits.h \
+ /usr/include/c++/14/ext/atomicity.h \
+ /usr/include/c++/14/ext/concurrence.h \
+ /usr/include/c++/14/ext/numeric_traits.h \
+ /usr/include/c++/14/ext/string_conversions.h \
+ /usr/include/c++/14/ext/type_traits.h \
+ /usr/include/c++/14/filesystem \
+ /usr/include/c++/14/initializer_list \
+ /usr/include/c++/14/iomanip \
+ /usr/include/c++/14/ios \
+ /usr/include/c++/14/iosfwd \
+ /usr/include/c++/14/iostream \
+ /usr/include/c++/14/istream \
+ /usr/include/c++/14/iterator \
+ /usr/include/c++/14/limits \
+ /usr/include/c++/14/list \
+ /usr/include/c++/14/locale \
+ /usr/include/c++/14/map \
+ /usr/include/c++/14/memory \
+ /usr/include/c++/14/new \
+ /usr/include/c++/14/ostream \
+ /usr/include/c++/14/pstl/execution_defs.h \
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h \
+ /usr/include/c++/14/pstl/glue_memory_defs.h \
+ /usr/include/c++/14/pstl/pstl_config.h \
+ /usr/include/c++/14/ratio \
+ /usr/include/c++/14/set \
+ /usr/include/c++/14/sstream \
+ /usr/include/c++/14/stdexcept \
+ /usr/include/c++/14/streambuf \
+ /usr/include/c++/14/string \
+ /usr/include/c++/14/string_view \
+ /usr/include/c++/14/system_error \
+ /usr/include/c++/14/tr1/bessel_function.tcc \
+ /usr/include/c++/14/tr1/beta_function.tcc \
+ /usr/include/c++/14/tr1/ell_integral.tcc \
+ /usr/include/c++/14/tr1/exp_integral.tcc \
+ /usr/include/c++/14/tr1/gamma.tcc \
+ /usr/include/c++/14/tr1/hypergeometric.tcc \
+ /usr/include/c++/14/tr1/legendre_function.tcc \
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc \
+ /usr/include/c++/14/tr1/poly_hermite.tcc \
+ /usr/include/c++/14/tr1/poly_laguerre.tcc \
+ /usr/include/c++/14/tr1/riemann_zeta.tcc \
+ /usr/include/c++/14/tr1/special_function_util.h \
+ /usr/include/c++/14/tuple \
+ /usr/include/c++/14/type_traits \
+ /usr/include/c++/14/typeinfo \
+ /usr/include/c++/14/unordered_map \
+ /usr/include/c++/14/utility \
+ /usr/include/c++/14/valarray \
+ /usr/include/c++/14/vector \
+ /usr/include/ctype.h \
+ /usr/include/dlfcn.h \
+ /usr/include/endian.h \
+ /usr/include/errno.h \
+ /usr/include/features-time64.h \
+ /usr/include/features.h \
+ /usr/include/libintl.h \
+ /usr/include/limits.h \
+ /usr/include/linux/errno.h \
+ /usr/include/linux/limits.h \
+ /usr/include/locale.h \
+ /usr/include/math.h \
+ /usr/include/pthread.h \
+ /usr/include/sched.h \
+ /usr/include/stdc-predef.h \
+ /usr/include/stdint.h \
+ /usr/include/stdio.h \
+ /usr/include/stdlib.h \
+ /usr/include/string.h \
+ /usr/include/strings.h \
+ /usr/include/time.h \
+ /usr/include/wchar.h \
+ /usr/include/wctype.h \
+ /usr/include/x86_64-linux-gnu/asm/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h \
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h \
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h \
+ /usr/include/x86_64-linux-gnu/bits/dlfcn.h \
+ /usr/include/x86_64-linux-gnu/bits/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/endianness.h \
+ /usr/include/x86_64-linux-gnu/bits/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn.h \
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h \
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/locale.h \
+ /usr/include/x86_64-linux-gnu/bits/long-double.h \
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h \
+ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
+ /usr/include/x86_64-linux-gnu/bits/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/select.h \
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
+ /usr/include/x86_64-linux-gnu/bits/time.h \
+ /usr/include/x86_64-linux-gnu/bits/time64.h \
+ /usr/include/x86_64-linux-gnu/bits/timesize.h \
+ /usr/include/x86_64-linux-gnu/bits/timex.h \
+ /usr/include/x86_64-linux-gnu/bits/types.h \
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h \
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/waitflags.h \
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
+ /usr/include/x86_64-linux-gnu/bits/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h \
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h \
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h \
+ /usr/include/x86_64-linux-gnu/sys/select.h \
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h \
+ /usr/include/x86_64-linux-gnu/sys/types.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h
+
+CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o: src/CoreEnvironment.cpp \
+ extern/godot-cpp/gdextension/gdextension_interface.h \
+ extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/utility_functions.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp \
+ extern/godot-cpp/include/godot_cpp/classes/ref.hpp \
+ extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp \
+ extern/godot-cpp/include/godot_cpp/core/binder_common.hpp \
+ extern/godot-cpp/include/godot_cpp/core/class_db.hpp \
+ extern/godot-cpp/include/godot_cpp/core/defs.hpp \
+ extern/godot-cpp/include/godot_cpp/core/error_macros.hpp \
+ extern/godot-cpp/include/godot_cpp/core/math.hpp \
+ extern/godot-cpp/include/godot_cpp/core/memory.hpp \
+ extern/godot-cpp/include/godot_cpp/core/method_bind.hpp \
+ extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp \
+ extern/godot-cpp/include/godot_cpp/core/object.hpp \
+ extern/godot-cpp/include/godot_cpp/core/property_info.hpp \
+ extern/godot-cpp/include/godot_cpp/core/type_info.hpp \
+ extern/godot-cpp/include/godot_cpp/godot.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/list.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/aabb.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/basis.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/char_string.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/color.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/plane.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/projection.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/rect2.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/variant.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector2.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector3.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector4.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp \
+ extern/libretro-common/include/libretro.h \
+ extern/yaml-cpp/include/yaml-cpp/binary.h \
+ extern/yaml-cpp/include/yaml-cpp/dll.h \
+ extern/yaml-cpp/include/yaml-cpp/emitter.h \
+ extern/yaml-cpp/include/yaml-cpp/emitterdef.h \
+ extern/yaml-cpp/include/yaml-cpp/emittermanip.h \
+ extern/yaml-cpp/include/yaml-cpp/emitterstyle.h \
+ extern/yaml-cpp/include/yaml-cpp/exceptions.h \
+ extern/yaml-cpp/include/yaml-cpp/mark.h \
+ extern/yaml-cpp/include/yaml-cpp/node/convert.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h \
+ extern/yaml-cpp/include/yaml-cpp/node/emit.h \
+ extern/yaml-cpp/include/yaml-cpp/node/impl.h \
+ extern/yaml-cpp/include/yaml-cpp/node/iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/node.h \
+ extern/yaml-cpp/include/yaml-cpp/node/parse.h \
+ extern/yaml-cpp/include/yaml-cpp/node/ptr.h \
+ extern/yaml-cpp/include/yaml-cpp/node/type.h \
+ extern/yaml-cpp/include/yaml-cpp/noexcept.h \
+ extern/yaml-cpp/include/yaml-cpp/null.h \
+ extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h \
+ extern/yaml-cpp/include/yaml-cpp/parser.h \
+ extern/yaml-cpp/include/yaml-cpp/stlemitter.h \
+ extern/yaml-cpp/include/yaml-cpp/traits.h \
+ extern/yaml-cpp/include/yaml-cpp/yaml.h \
+ src/RetroHost.hpp \
+ /usr/include/alloca.h \
+ /usr/include/asm-generic/errno-base.h \
+ /usr/include/asm-generic/errno.h \
+ /usr/include/c++/14/algorithm \
+ /usr/include/c++/14/array \
+ /usr/include/c++/14/atomic \
+ /usr/include/c++/14/backward/auto_ptr.h \
+ /usr/include/c++/14/backward/binders.h \
+ /usr/include/c++/14/bit \
+ /usr/include/c++/14/bits/algorithmfwd.h \
+ /usr/include/c++/14/bits/align.h \
+ /usr/include/c++/14/bits/alloc_traits.h \
+ /usr/include/c++/14/bits/allocated_ptr.h \
+ /usr/include/c++/14/bits/allocator.h \
+ /usr/include/c++/14/bits/atomic_base.h \
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h \
+ /usr/include/c++/14/bits/basic_ios.h \
+ /usr/include/c++/14/bits/basic_ios.tcc \
+ /usr/include/c++/14/bits/basic_string.h \
+ /usr/include/c++/14/bits/basic_string.tcc \
+ /usr/include/c++/14/bits/char_traits.h \
+ /usr/include/c++/14/bits/charconv.h \
+ /usr/include/c++/14/bits/chrono.h \
+ /usr/include/c++/14/bits/codecvt.h \
+ /usr/include/c++/14/bits/concept_check.h \
+ /usr/include/c++/14/bits/cpp_type_traits.h \
+ /usr/include/c++/14/bits/cxxabi_forced.h \
+ /usr/include/c++/14/bits/cxxabi_init_exception.h \
+ /usr/include/c++/14/bits/enable_special_members.h \
+ /usr/include/c++/14/bits/erase_if.h \
+ /usr/include/c++/14/bits/exception.h \
+ /usr/include/c++/14/bits/exception_defines.h \
+ /usr/include/c++/14/bits/exception_ptr.h \
+ /usr/include/c++/14/bits/fs_dir.h \
+ /usr/include/c++/14/bits/fs_fwd.h \
+ /usr/include/c++/14/bits/fs_ops.h \
+ /usr/include/c++/14/bits/fs_path.h \
+ /usr/include/c++/14/bits/functexcept.h \
+ /usr/include/c++/14/bits/functional_hash.h \
+ /usr/include/c++/14/bits/gslice.h \
+ /usr/include/c++/14/bits/gslice_array.h \
+ /usr/include/c++/14/bits/hash_bytes.h \
+ /usr/include/c++/14/bits/hashtable.h \
+ /usr/include/c++/14/bits/hashtable_policy.h \
+ /usr/include/c++/14/bits/indirect_array.h \
+ /usr/include/c++/14/bits/invoke.h \
+ /usr/include/c++/14/bits/ios_base.h \
+ /usr/include/c++/14/bits/istream.tcc \
+ /usr/include/c++/14/bits/list.tcc \
+ /usr/include/c++/14/bits/locale_classes.h \
+ /usr/include/c++/14/bits/locale_classes.tcc \
+ /usr/include/c++/14/bits/locale_conv.h \
+ /usr/include/c++/14/bits/locale_facets.h \
+ /usr/include/c++/14/bits/locale_facets.tcc \
+ /usr/include/c++/14/bits/locale_facets_nonio.h \
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc \
+ /usr/include/c++/14/bits/localefwd.h \
+ /usr/include/c++/14/bits/mask_array.h \
+ /usr/include/c++/14/bits/memory_resource.h \
+ /usr/include/c++/14/bits/memoryfwd.h \
+ /usr/include/c++/14/bits/move.h \
+ /usr/include/c++/14/bits/nested_exception.h \
+ /usr/include/c++/14/bits/new_allocator.h \
+ /usr/include/c++/14/bits/node_handle.h \
+ /usr/include/c++/14/bits/ostream.tcc \
+ /usr/include/c++/14/bits/ostream_insert.h \
+ /usr/include/c++/14/bits/parse_numbers.h \
+ /usr/include/c++/14/bits/postypes.h \
+ /usr/include/c++/14/bits/predefined_ops.h \
+ /usr/include/c++/14/bits/ptr_traits.h \
+ /usr/include/c++/14/bits/quoted_string.h \
+ /usr/include/c++/14/bits/range_access.h \
+ /usr/include/c++/14/bits/refwrap.h \
+ /usr/include/c++/14/bits/requires_hosted.h \
+ /usr/include/c++/14/bits/shared_ptr.h \
+ /usr/include/c++/14/bits/shared_ptr_atomic.h \
+ /usr/include/c++/14/bits/shared_ptr_base.h \
+ /usr/include/c++/14/bits/slice_array.h \
+ /usr/include/c++/14/bits/specfun.h \
+ /usr/include/c++/14/bits/sstream.tcc \
+ /usr/include/c++/14/bits/std_abs.h \
+ /usr/include/c++/14/bits/stl_algo.h \
+ /usr/include/c++/14/bits/stl_algobase.h \
+ /usr/include/c++/14/bits/stl_bvector.h \
+ /usr/include/c++/14/bits/stl_construct.h \
+ /usr/include/c++/14/bits/stl_function.h \
+ /usr/include/c++/14/bits/stl_heap.h \
+ /usr/include/c++/14/bits/stl_iterator.h \
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h \
+ /usr/include/c++/14/bits/stl_iterator_base_types.h \
+ /usr/include/c++/14/bits/stl_list.h \
+ /usr/include/c++/14/bits/stl_map.h \
+ /usr/include/c++/14/bits/stl_multimap.h \
+ /usr/include/c++/14/bits/stl_multiset.h \
+ /usr/include/c++/14/bits/stl_pair.h \
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h \
+ /usr/include/c++/14/bits/stl_relops.h \
+ /usr/include/c++/14/bits/stl_set.h \
+ /usr/include/c++/14/bits/stl_tempbuf.h \
+ /usr/include/c++/14/bits/stl_tree.h \
+ /usr/include/c++/14/bits/stl_uninitialized.h \
+ /usr/include/c++/14/bits/stl_vector.h \
+ /usr/include/c++/14/bits/stream_iterator.h \
+ /usr/include/c++/14/bits/streambuf.tcc \
+ /usr/include/c++/14/bits/streambuf_iterator.h \
+ /usr/include/c++/14/bits/string_view.tcc \
+ /usr/include/c++/14/bits/stringfwd.h \
+ /usr/include/c++/14/bits/uniform_int_dist.h \
+ /usr/include/c++/14/bits/unique_ptr.h \
+ /usr/include/c++/14/bits/unordered_map.h \
+ /usr/include/c++/14/bits/uses_allocator.h \
+ /usr/include/c++/14/bits/uses_allocator_args.h \
+ /usr/include/c++/14/bits/utility.h \
+ /usr/include/c++/14/bits/valarray_after.h \
+ /usr/include/c++/14/bits/valarray_array.h \
+ /usr/include/c++/14/bits/valarray_array.tcc \
+ /usr/include/c++/14/bits/valarray_before.h \
+ /usr/include/c++/14/bits/vector.tcc \
+ /usr/include/c++/14/bits/version.h \
+ /usr/include/c++/14/cctype \
+ /usr/include/c++/14/cerrno \
+ /usr/include/c++/14/clocale \
+ /usr/include/c++/14/cmath \
+ /usr/include/c++/14/codecvt \
+ /usr/include/c++/14/compare \
+ /usr/include/c++/14/concepts \
+ /usr/include/c++/14/cstdarg \
+ /usr/include/c++/14/cstddef \
+ /usr/include/c++/14/cstdint \
+ /usr/include/c++/14/cstdio \
+ /usr/include/c++/14/cstdlib \
+ /usr/include/c++/14/cstring \
+ /usr/include/c++/14/ctime \
+ /usr/include/c++/14/cwchar \
+ /usr/include/c++/14/cwctype \
+ /usr/include/c++/14/debug/assertions.h \
+ /usr/include/c++/14/debug/debug.h \
+ /usr/include/c++/14/exception \
+ /usr/include/c++/14/ext/aligned_buffer.h \
+ /usr/include/c++/14/ext/alloc_traits.h \
+ /usr/include/c++/14/ext/atomicity.h \
+ /usr/include/c++/14/ext/concurrence.h \
+ /usr/include/c++/14/ext/numeric_traits.h \
+ /usr/include/c++/14/ext/string_conversions.h \
+ /usr/include/c++/14/ext/type_traits.h \
+ /usr/include/c++/14/filesystem \
+ /usr/include/c++/14/initializer_list \
+ /usr/include/c++/14/iomanip \
+ /usr/include/c++/14/ios \
+ /usr/include/c++/14/iosfwd \
+ /usr/include/c++/14/iostream \
+ /usr/include/c++/14/istream \
+ /usr/include/c++/14/iterator \
+ /usr/include/c++/14/limits \
+ /usr/include/c++/14/list \
+ /usr/include/c++/14/locale \
+ /usr/include/c++/14/map \
+ /usr/include/c++/14/memory \
+ /usr/include/c++/14/new \
+ /usr/include/c++/14/ostream \
+ /usr/include/c++/14/pstl/execution_defs.h \
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h \
+ /usr/include/c++/14/pstl/glue_memory_defs.h \
+ /usr/include/c++/14/pstl/pstl_config.h \
+ /usr/include/c++/14/ratio \
+ /usr/include/c++/14/set \
+ /usr/include/c++/14/sstream \
+ /usr/include/c++/14/stdexcept \
+ /usr/include/c++/14/streambuf \
+ /usr/include/c++/14/string \
+ /usr/include/c++/14/string_view \
+ /usr/include/c++/14/system_error \
+ /usr/include/c++/14/tr1/bessel_function.tcc \
+ /usr/include/c++/14/tr1/beta_function.tcc \
+ /usr/include/c++/14/tr1/ell_integral.tcc \
+ /usr/include/c++/14/tr1/exp_integral.tcc \
+ /usr/include/c++/14/tr1/gamma.tcc \
+ /usr/include/c++/14/tr1/hypergeometric.tcc \
+ /usr/include/c++/14/tr1/legendre_function.tcc \
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc \
+ /usr/include/c++/14/tr1/poly_hermite.tcc \
+ /usr/include/c++/14/tr1/poly_laguerre.tcc \
+ /usr/include/c++/14/tr1/riemann_zeta.tcc \
+ /usr/include/c++/14/tr1/special_function_util.h \
+ /usr/include/c++/14/tuple \
+ /usr/include/c++/14/type_traits \
+ /usr/include/c++/14/typeinfo \
+ /usr/include/c++/14/unordered_map \
+ /usr/include/c++/14/utility \
+ /usr/include/c++/14/valarray \
+ /usr/include/c++/14/vector \
+ /usr/include/ctype.h \
+ /usr/include/dlfcn.h \
+ /usr/include/endian.h \
+ /usr/include/errno.h \
+ /usr/include/features-time64.h \
+ /usr/include/features.h \
+ /usr/include/libintl.h \
+ /usr/include/limits.h \
+ /usr/include/linux/errno.h \
+ /usr/include/linux/limits.h \
+ /usr/include/locale.h \
+ /usr/include/math.h \
+ /usr/include/pthread.h \
+ /usr/include/sched.h \
+ /usr/include/stdc-predef.h \
+ /usr/include/stdint.h \
+ /usr/include/stdio.h \
+ /usr/include/stdlib.h \
+ /usr/include/string.h \
+ /usr/include/strings.h \
+ /usr/include/time.h \
+ /usr/include/wchar.h \
+ /usr/include/wctype.h \
+ /usr/include/x86_64-linux-gnu/asm/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h \
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h \
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h \
+ /usr/include/x86_64-linux-gnu/bits/dlfcn.h \
+ /usr/include/x86_64-linux-gnu/bits/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/endianness.h \
+ /usr/include/x86_64-linux-gnu/bits/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn.h \
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h \
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/locale.h \
+ /usr/include/x86_64-linux-gnu/bits/long-double.h \
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h \
+ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
+ /usr/include/x86_64-linux-gnu/bits/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/select.h \
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
+ /usr/include/x86_64-linux-gnu/bits/time.h \
+ /usr/include/x86_64-linux-gnu/bits/time64.h \
+ /usr/include/x86_64-linux-gnu/bits/timesize.h \
+ /usr/include/x86_64-linux-gnu/bits/timex.h \
+ /usr/include/x86_64-linux-gnu/bits/types.h \
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h \
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/waitflags.h \
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
+ /usr/include/x86_64-linux-gnu/bits/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h \
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h \
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h \
+ /usr/include/x86_64-linux-gnu/sys/select.h \
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h \
+ /usr/include/x86_64-linux-gnu/sys/types.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h
+
+CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o: src/CoreVariables.cpp \
+ extern/godot-cpp/gdextension/gdextension_interface.h \
+ extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/file_access.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/os.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/utility_functions.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp \
+ extern/godot-cpp/include/godot_cpp/classes/ref.hpp \
+ extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp \
+ extern/godot-cpp/include/godot_cpp/core/binder_common.hpp \
+ extern/godot-cpp/include/godot_cpp/core/class_db.hpp \
+ extern/godot-cpp/include/godot_cpp/core/defs.hpp \
+ extern/godot-cpp/include/godot_cpp/core/error_macros.hpp \
+ extern/godot-cpp/include/godot_cpp/core/math.hpp \
+ extern/godot-cpp/include/godot_cpp/core/memory.hpp \
+ extern/godot-cpp/include/godot_cpp/core/method_bind.hpp \
+ extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp \
+ extern/godot-cpp/include/godot_cpp/core/object.hpp \
+ extern/godot-cpp/include/godot_cpp/core/property_info.hpp \
+ extern/godot-cpp/include/godot_cpp/core/type_info.hpp \
+ extern/godot-cpp/include/godot_cpp/godot.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/list.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/aabb.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/basis.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/char_string.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/color.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/plane.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/projection.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/rect2.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/variant.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector2.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector3.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector4.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp \
+ extern/libretro-common/include/libretro.h \
+ extern/yaml-cpp/include/yaml-cpp/binary.h \
+ extern/yaml-cpp/include/yaml-cpp/dll.h \
+ extern/yaml-cpp/include/yaml-cpp/emitter.h \
+ extern/yaml-cpp/include/yaml-cpp/emitterdef.h \
+ extern/yaml-cpp/include/yaml-cpp/emittermanip.h \
+ extern/yaml-cpp/include/yaml-cpp/emitterstyle.h \
+ extern/yaml-cpp/include/yaml-cpp/exceptions.h \
+ extern/yaml-cpp/include/yaml-cpp/mark.h \
+ extern/yaml-cpp/include/yaml-cpp/node/convert.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h \
+ extern/yaml-cpp/include/yaml-cpp/node/emit.h \
+ extern/yaml-cpp/include/yaml-cpp/node/impl.h \
+ extern/yaml-cpp/include/yaml-cpp/node/iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/node.h \
+ extern/yaml-cpp/include/yaml-cpp/node/parse.h \
+ extern/yaml-cpp/include/yaml-cpp/node/ptr.h \
+ extern/yaml-cpp/include/yaml-cpp/node/type.h \
+ extern/yaml-cpp/include/yaml-cpp/noexcept.h \
+ extern/yaml-cpp/include/yaml-cpp/null.h \
+ extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h \
+ extern/yaml-cpp/include/yaml-cpp/parser.h \
+ extern/yaml-cpp/include/yaml-cpp/stlemitter.h \
+ extern/yaml-cpp/include/yaml-cpp/traits.h \
+ extern/yaml-cpp/include/yaml-cpp/yaml.h \
+ src/RetroHost.hpp \
+ /usr/include/alloca.h \
+ /usr/include/asm-generic/errno-base.h \
+ /usr/include/asm-generic/errno.h \
+ /usr/include/c++/14/algorithm \
+ /usr/include/c++/14/array \
+ /usr/include/c++/14/atomic \
+ /usr/include/c++/14/backward/auto_ptr.h \
+ /usr/include/c++/14/backward/binders.h \
+ /usr/include/c++/14/bit \
+ /usr/include/c++/14/bits/algorithmfwd.h \
+ /usr/include/c++/14/bits/align.h \
+ /usr/include/c++/14/bits/alloc_traits.h \
+ /usr/include/c++/14/bits/allocated_ptr.h \
+ /usr/include/c++/14/bits/allocator.h \
+ /usr/include/c++/14/bits/atomic_base.h \
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h \
+ /usr/include/c++/14/bits/basic_ios.h \
+ /usr/include/c++/14/bits/basic_ios.tcc \
+ /usr/include/c++/14/bits/basic_string.h \
+ /usr/include/c++/14/bits/basic_string.tcc \
+ /usr/include/c++/14/bits/char_traits.h \
+ /usr/include/c++/14/bits/charconv.h \
+ /usr/include/c++/14/bits/chrono.h \
+ /usr/include/c++/14/bits/codecvt.h \
+ /usr/include/c++/14/bits/concept_check.h \
+ /usr/include/c++/14/bits/cpp_type_traits.h \
+ /usr/include/c++/14/bits/cxxabi_forced.h \
+ /usr/include/c++/14/bits/cxxabi_init_exception.h \
+ /usr/include/c++/14/bits/enable_special_members.h \
+ /usr/include/c++/14/bits/erase_if.h \
+ /usr/include/c++/14/bits/exception.h \
+ /usr/include/c++/14/bits/exception_defines.h \
+ /usr/include/c++/14/bits/exception_ptr.h \
+ /usr/include/c++/14/bits/fs_dir.h \
+ /usr/include/c++/14/bits/fs_fwd.h \
+ /usr/include/c++/14/bits/fs_ops.h \
+ /usr/include/c++/14/bits/fs_path.h \
+ /usr/include/c++/14/bits/functexcept.h \
+ /usr/include/c++/14/bits/functional_hash.h \
+ /usr/include/c++/14/bits/gslice.h \
+ /usr/include/c++/14/bits/gslice_array.h \
+ /usr/include/c++/14/bits/hash_bytes.h \
+ /usr/include/c++/14/bits/hashtable.h \
+ /usr/include/c++/14/bits/hashtable_policy.h \
+ /usr/include/c++/14/bits/indirect_array.h \
+ /usr/include/c++/14/bits/invoke.h \
+ /usr/include/c++/14/bits/ios_base.h \
+ /usr/include/c++/14/bits/istream.tcc \
+ /usr/include/c++/14/bits/list.tcc \
+ /usr/include/c++/14/bits/locale_classes.h \
+ /usr/include/c++/14/bits/locale_classes.tcc \
+ /usr/include/c++/14/bits/locale_conv.h \
+ /usr/include/c++/14/bits/locale_facets.h \
+ /usr/include/c++/14/bits/locale_facets.tcc \
+ /usr/include/c++/14/bits/locale_facets_nonio.h \
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc \
+ /usr/include/c++/14/bits/localefwd.h \
+ /usr/include/c++/14/bits/mask_array.h \
+ /usr/include/c++/14/bits/memory_resource.h \
+ /usr/include/c++/14/bits/memoryfwd.h \
+ /usr/include/c++/14/bits/move.h \
+ /usr/include/c++/14/bits/nested_exception.h \
+ /usr/include/c++/14/bits/new_allocator.h \
+ /usr/include/c++/14/bits/node_handle.h \
+ /usr/include/c++/14/bits/ostream.tcc \
+ /usr/include/c++/14/bits/ostream_insert.h \
+ /usr/include/c++/14/bits/parse_numbers.h \
+ /usr/include/c++/14/bits/postypes.h \
+ /usr/include/c++/14/bits/predefined_ops.h \
+ /usr/include/c++/14/bits/ptr_traits.h \
+ /usr/include/c++/14/bits/quoted_string.h \
+ /usr/include/c++/14/bits/range_access.h \
+ /usr/include/c++/14/bits/refwrap.h \
+ /usr/include/c++/14/bits/requires_hosted.h \
+ /usr/include/c++/14/bits/shared_ptr.h \
+ /usr/include/c++/14/bits/shared_ptr_atomic.h \
+ /usr/include/c++/14/bits/shared_ptr_base.h \
+ /usr/include/c++/14/bits/slice_array.h \
+ /usr/include/c++/14/bits/specfun.h \
+ /usr/include/c++/14/bits/sstream.tcc \
+ /usr/include/c++/14/bits/std_abs.h \
+ /usr/include/c++/14/bits/stl_algo.h \
+ /usr/include/c++/14/bits/stl_algobase.h \
+ /usr/include/c++/14/bits/stl_bvector.h \
+ /usr/include/c++/14/bits/stl_construct.h \
+ /usr/include/c++/14/bits/stl_function.h \
+ /usr/include/c++/14/bits/stl_heap.h \
+ /usr/include/c++/14/bits/stl_iterator.h \
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h \
+ /usr/include/c++/14/bits/stl_iterator_base_types.h \
+ /usr/include/c++/14/bits/stl_list.h \
+ /usr/include/c++/14/bits/stl_map.h \
+ /usr/include/c++/14/bits/stl_multimap.h \
+ /usr/include/c++/14/bits/stl_multiset.h \
+ /usr/include/c++/14/bits/stl_pair.h \
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h \
+ /usr/include/c++/14/bits/stl_relops.h \
+ /usr/include/c++/14/bits/stl_set.h \
+ /usr/include/c++/14/bits/stl_tempbuf.h \
+ /usr/include/c++/14/bits/stl_tree.h \
+ /usr/include/c++/14/bits/stl_uninitialized.h \
+ /usr/include/c++/14/bits/stl_vector.h \
+ /usr/include/c++/14/bits/stream_iterator.h \
+ /usr/include/c++/14/bits/streambuf.tcc \
+ /usr/include/c++/14/bits/streambuf_iterator.h \
+ /usr/include/c++/14/bits/string_view.tcc \
+ /usr/include/c++/14/bits/stringfwd.h \
+ /usr/include/c++/14/bits/uniform_int_dist.h \
+ /usr/include/c++/14/bits/unique_ptr.h \
+ /usr/include/c++/14/bits/unordered_map.h \
+ /usr/include/c++/14/bits/uses_allocator.h \
+ /usr/include/c++/14/bits/uses_allocator_args.h \
+ /usr/include/c++/14/bits/utility.h \
+ /usr/include/c++/14/bits/valarray_after.h \
+ /usr/include/c++/14/bits/valarray_array.h \
+ /usr/include/c++/14/bits/valarray_array.tcc \
+ /usr/include/c++/14/bits/valarray_before.h \
+ /usr/include/c++/14/bits/vector.tcc \
+ /usr/include/c++/14/bits/version.h \
+ /usr/include/c++/14/cctype \
+ /usr/include/c++/14/cerrno \
+ /usr/include/c++/14/clocale \
+ /usr/include/c++/14/cmath \
+ /usr/include/c++/14/codecvt \
+ /usr/include/c++/14/compare \
+ /usr/include/c++/14/concepts \
+ /usr/include/c++/14/cstddef \
+ /usr/include/c++/14/cstdint \
+ /usr/include/c++/14/cstdio \
+ /usr/include/c++/14/cstdlib \
+ /usr/include/c++/14/cstring \
+ /usr/include/c++/14/ctime \
+ /usr/include/c++/14/cwchar \
+ /usr/include/c++/14/cwctype \
+ /usr/include/c++/14/debug/assertions.h \
+ /usr/include/c++/14/debug/debug.h \
+ /usr/include/c++/14/exception \
+ /usr/include/c++/14/ext/aligned_buffer.h \
+ /usr/include/c++/14/ext/alloc_traits.h \
+ /usr/include/c++/14/ext/atomicity.h \
+ /usr/include/c++/14/ext/concurrence.h \
+ /usr/include/c++/14/ext/numeric_traits.h \
+ /usr/include/c++/14/ext/string_conversions.h \
+ /usr/include/c++/14/ext/type_traits.h \
+ /usr/include/c++/14/filesystem \
+ /usr/include/c++/14/initializer_list \
+ /usr/include/c++/14/iomanip \
+ /usr/include/c++/14/ios \
+ /usr/include/c++/14/iosfwd \
+ /usr/include/c++/14/iostream \
+ /usr/include/c++/14/istream \
+ /usr/include/c++/14/iterator \
+ /usr/include/c++/14/limits \
+ /usr/include/c++/14/list \
+ /usr/include/c++/14/locale \
+ /usr/include/c++/14/map \
+ /usr/include/c++/14/memory \
+ /usr/include/c++/14/new \
+ /usr/include/c++/14/ostream \
+ /usr/include/c++/14/pstl/execution_defs.h \
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h \
+ /usr/include/c++/14/pstl/glue_memory_defs.h \
+ /usr/include/c++/14/pstl/pstl_config.h \
+ /usr/include/c++/14/ratio \
+ /usr/include/c++/14/set \
+ /usr/include/c++/14/sstream \
+ /usr/include/c++/14/stdexcept \
+ /usr/include/c++/14/streambuf \
+ /usr/include/c++/14/string \
+ /usr/include/c++/14/string_view \
+ /usr/include/c++/14/system_error \
+ /usr/include/c++/14/tr1/bessel_function.tcc \
+ /usr/include/c++/14/tr1/beta_function.tcc \
+ /usr/include/c++/14/tr1/ell_integral.tcc \
+ /usr/include/c++/14/tr1/exp_integral.tcc \
+ /usr/include/c++/14/tr1/gamma.tcc \
+ /usr/include/c++/14/tr1/hypergeometric.tcc \
+ /usr/include/c++/14/tr1/legendre_function.tcc \
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc \
+ /usr/include/c++/14/tr1/poly_hermite.tcc \
+ /usr/include/c++/14/tr1/poly_laguerre.tcc \
+ /usr/include/c++/14/tr1/riemann_zeta.tcc \
+ /usr/include/c++/14/tr1/special_function_util.h \
+ /usr/include/c++/14/tuple \
+ /usr/include/c++/14/type_traits \
+ /usr/include/c++/14/typeinfo \
+ /usr/include/c++/14/unordered_map \
+ /usr/include/c++/14/utility \
+ /usr/include/c++/14/valarray \
+ /usr/include/c++/14/vector \
+ /usr/include/ctype.h \
+ /usr/include/dlfcn.h \
+ /usr/include/endian.h \
+ /usr/include/errno.h \
+ /usr/include/features-time64.h \
+ /usr/include/features.h \
+ /usr/include/libintl.h \
+ /usr/include/limits.h \
+ /usr/include/linux/errno.h \
+ /usr/include/linux/limits.h \
+ /usr/include/locale.h \
+ /usr/include/math.h \
+ /usr/include/pthread.h \
+ /usr/include/sched.h \
+ /usr/include/stdc-predef.h \
+ /usr/include/stdint.h \
+ /usr/include/stdio.h \
+ /usr/include/stdlib.h \
+ /usr/include/string.h \
+ /usr/include/strings.h \
+ /usr/include/time.h \
+ /usr/include/wchar.h \
+ /usr/include/wctype.h \
+ /usr/include/x86_64-linux-gnu/asm/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h \
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h \
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h \
+ /usr/include/x86_64-linux-gnu/bits/dlfcn.h \
+ /usr/include/x86_64-linux-gnu/bits/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/endianness.h \
+ /usr/include/x86_64-linux-gnu/bits/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn.h \
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h \
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/locale.h \
+ /usr/include/x86_64-linux-gnu/bits/long-double.h \
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h \
+ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
+ /usr/include/x86_64-linux-gnu/bits/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/select.h \
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
+ /usr/include/x86_64-linux-gnu/bits/time.h \
+ /usr/include/x86_64-linux-gnu/bits/time64.h \
+ /usr/include/x86_64-linux-gnu/bits/timesize.h \
+ /usr/include/x86_64-linux-gnu/bits/timex.h \
+ /usr/include/x86_64-linux-gnu/bits/types.h \
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h \
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/waitflags.h \
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
+ /usr/include/x86_64-linux-gnu/bits/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h \
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h \
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h \
+ /usr/include/x86_64-linux-gnu/sys/select.h \
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h \
+ /usr/include/x86_64-linux-gnu/sys/types.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h
+
+CMakeFiles/LibRetroHost.dir/src/Input.cpp.o: src/Input.cpp \
+ extern/godot-cpp/gdextension/gdextension_interface.h \
+ extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/input_event_from_window.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/input_event_key.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/input_event_with_modifiers.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/utility_functions.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp \
+ extern/godot-cpp/include/godot_cpp/classes/ref.hpp \
+ extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp \
+ extern/godot-cpp/include/godot_cpp/core/binder_common.hpp \
+ extern/godot-cpp/include/godot_cpp/core/class_db.hpp \
+ extern/godot-cpp/include/godot_cpp/core/defs.hpp \
+ extern/godot-cpp/include/godot_cpp/core/error_macros.hpp \
+ extern/godot-cpp/include/godot_cpp/core/math.hpp \
+ extern/godot-cpp/include/godot_cpp/core/memory.hpp \
+ extern/godot-cpp/include/godot_cpp/core/method_bind.hpp \
+ extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp \
+ extern/godot-cpp/include/godot_cpp/core/object.hpp \
+ extern/godot-cpp/include/godot_cpp/core/property_info.hpp \
+ extern/godot-cpp/include/godot_cpp/core/type_info.hpp \
+ extern/godot-cpp/include/godot_cpp/godot.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/list.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/aabb.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/basis.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/char_string.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/color.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/plane.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/projection.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/rect2.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/variant.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector2.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector3.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector4.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp \
+ extern/libretro-common/include/libretro.h \
+ extern/yaml-cpp/include/yaml-cpp/binary.h \
+ extern/yaml-cpp/include/yaml-cpp/dll.h \
+ extern/yaml-cpp/include/yaml-cpp/emitter.h \
+ extern/yaml-cpp/include/yaml-cpp/emitterdef.h \
+ extern/yaml-cpp/include/yaml-cpp/emittermanip.h \
+ extern/yaml-cpp/include/yaml-cpp/emitterstyle.h \
+ extern/yaml-cpp/include/yaml-cpp/exceptions.h \
+ extern/yaml-cpp/include/yaml-cpp/mark.h \
+ extern/yaml-cpp/include/yaml-cpp/node/convert.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h \
+ extern/yaml-cpp/include/yaml-cpp/node/emit.h \
+ extern/yaml-cpp/include/yaml-cpp/node/impl.h \
+ extern/yaml-cpp/include/yaml-cpp/node/iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/node.h \
+ extern/yaml-cpp/include/yaml-cpp/node/parse.h \
+ extern/yaml-cpp/include/yaml-cpp/node/ptr.h \
+ extern/yaml-cpp/include/yaml-cpp/node/type.h \
+ extern/yaml-cpp/include/yaml-cpp/noexcept.h \
+ extern/yaml-cpp/include/yaml-cpp/null.h \
+ extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h \
+ extern/yaml-cpp/include/yaml-cpp/parser.h \
+ extern/yaml-cpp/include/yaml-cpp/stlemitter.h \
+ extern/yaml-cpp/include/yaml-cpp/traits.h \
+ extern/yaml-cpp/include/yaml-cpp/yaml.h \
+ src/KeyboardMap.hpp \
+ src/RetroHost.hpp \
+ /usr/include/alloca.h \
+ /usr/include/asm-generic/errno-base.h \
+ /usr/include/asm-generic/errno.h \
+ /usr/include/c++/14/algorithm \
+ /usr/include/c++/14/array \
+ /usr/include/c++/14/atomic \
+ /usr/include/c++/14/backward/auto_ptr.h \
+ /usr/include/c++/14/backward/binders.h \
+ /usr/include/c++/14/bit \
+ /usr/include/c++/14/bits/algorithmfwd.h \
+ /usr/include/c++/14/bits/align.h \
+ /usr/include/c++/14/bits/alloc_traits.h \
+ /usr/include/c++/14/bits/allocated_ptr.h \
+ /usr/include/c++/14/bits/allocator.h \
+ /usr/include/c++/14/bits/atomic_base.h \
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h \
+ /usr/include/c++/14/bits/basic_ios.h \
+ /usr/include/c++/14/bits/basic_ios.tcc \
+ /usr/include/c++/14/bits/basic_string.h \
+ /usr/include/c++/14/bits/basic_string.tcc \
+ /usr/include/c++/14/bits/char_traits.h \
+ /usr/include/c++/14/bits/charconv.h \
+ /usr/include/c++/14/bits/chrono.h \
+ /usr/include/c++/14/bits/codecvt.h \
+ /usr/include/c++/14/bits/concept_check.h \
+ /usr/include/c++/14/bits/cpp_type_traits.h \
+ /usr/include/c++/14/bits/cxxabi_forced.h \
+ /usr/include/c++/14/bits/cxxabi_init_exception.h \
+ /usr/include/c++/14/bits/enable_special_members.h \
+ /usr/include/c++/14/bits/erase_if.h \
+ /usr/include/c++/14/bits/exception.h \
+ /usr/include/c++/14/bits/exception_defines.h \
+ /usr/include/c++/14/bits/exception_ptr.h \
+ /usr/include/c++/14/bits/fs_dir.h \
+ /usr/include/c++/14/bits/fs_fwd.h \
+ /usr/include/c++/14/bits/fs_ops.h \
+ /usr/include/c++/14/bits/fs_path.h \
+ /usr/include/c++/14/bits/functexcept.h \
+ /usr/include/c++/14/bits/functional_hash.h \
+ /usr/include/c++/14/bits/gslice.h \
+ /usr/include/c++/14/bits/gslice_array.h \
+ /usr/include/c++/14/bits/hash_bytes.h \
+ /usr/include/c++/14/bits/hashtable.h \
+ /usr/include/c++/14/bits/hashtable_policy.h \
+ /usr/include/c++/14/bits/indirect_array.h \
+ /usr/include/c++/14/bits/invoke.h \
+ /usr/include/c++/14/bits/ios_base.h \
+ /usr/include/c++/14/bits/istream.tcc \
+ /usr/include/c++/14/bits/list.tcc \
+ /usr/include/c++/14/bits/locale_classes.h \
+ /usr/include/c++/14/bits/locale_classes.tcc \
+ /usr/include/c++/14/bits/locale_conv.h \
+ /usr/include/c++/14/bits/locale_facets.h \
+ /usr/include/c++/14/bits/locale_facets.tcc \
+ /usr/include/c++/14/bits/locale_facets_nonio.h \
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc \
+ /usr/include/c++/14/bits/localefwd.h \
+ /usr/include/c++/14/bits/mask_array.h \
+ /usr/include/c++/14/bits/memory_resource.h \
+ /usr/include/c++/14/bits/memoryfwd.h \
+ /usr/include/c++/14/bits/move.h \
+ /usr/include/c++/14/bits/nested_exception.h \
+ /usr/include/c++/14/bits/new_allocator.h \
+ /usr/include/c++/14/bits/node_handle.h \
+ /usr/include/c++/14/bits/ostream.tcc \
+ /usr/include/c++/14/bits/ostream_insert.h \
+ /usr/include/c++/14/bits/parse_numbers.h \
+ /usr/include/c++/14/bits/postypes.h \
+ /usr/include/c++/14/bits/predefined_ops.h \
+ /usr/include/c++/14/bits/ptr_traits.h \
+ /usr/include/c++/14/bits/quoted_string.h \
+ /usr/include/c++/14/bits/range_access.h \
+ /usr/include/c++/14/bits/refwrap.h \
+ /usr/include/c++/14/bits/requires_hosted.h \
+ /usr/include/c++/14/bits/shared_ptr.h \
+ /usr/include/c++/14/bits/shared_ptr_atomic.h \
+ /usr/include/c++/14/bits/shared_ptr_base.h \
+ /usr/include/c++/14/bits/slice_array.h \
+ /usr/include/c++/14/bits/specfun.h \
+ /usr/include/c++/14/bits/sstream.tcc \
+ /usr/include/c++/14/bits/std_abs.h \
+ /usr/include/c++/14/bits/stl_algo.h \
+ /usr/include/c++/14/bits/stl_algobase.h \
+ /usr/include/c++/14/bits/stl_bvector.h \
+ /usr/include/c++/14/bits/stl_construct.h \
+ /usr/include/c++/14/bits/stl_function.h \
+ /usr/include/c++/14/bits/stl_heap.h \
+ /usr/include/c++/14/bits/stl_iterator.h \
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h \
+ /usr/include/c++/14/bits/stl_iterator_base_types.h \
+ /usr/include/c++/14/bits/stl_list.h \
+ /usr/include/c++/14/bits/stl_map.h \
+ /usr/include/c++/14/bits/stl_multimap.h \
+ /usr/include/c++/14/bits/stl_multiset.h \
+ /usr/include/c++/14/bits/stl_pair.h \
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h \
+ /usr/include/c++/14/bits/stl_relops.h \
+ /usr/include/c++/14/bits/stl_set.h \
+ /usr/include/c++/14/bits/stl_tempbuf.h \
+ /usr/include/c++/14/bits/stl_tree.h \
+ /usr/include/c++/14/bits/stl_uninitialized.h \
+ /usr/include/c++/14/bits/stl_vector.h \
+ /usr/include/c++/14/bits/stream_iterator.h \
+ /usr/include/c++/14/bits/streambuf.tcc \
+ /usr/include/c++/14/bits/streambuf_iterator.h \
+ /usr/include/c++/14/bits/string_view.tcc \
+ /usr/include/c++/14/bits/stringfwd.h \
+ /usr/include/c++/14/bits/uniform_int_dist.h \
+ /usr/include/c++/14/bits/unique_ptr.h \
+ /usr/include/c++/14/bits/unordered_map.h \
+ /usr/include/c++/14/bits/uses_allocator.h \
+ /usr/include/c++/14/bits/uses_allocator_args.h \
+ /usr/include/c++/14/bits/utility.h \
+ /usr/include/c++/14/bits/valarray_after.h \
+ /usr/include/c++/14/bits/valarray_array.h \
+ /usr/include/c++/14/bits/valarray_array.tcc \
+ /usr/include/c++/14/bits/valarray_before.h \
+ /usr/include/c++/14/bits/vector.tcc \
+ /usr/include/c++/14/bits/version.h \
+ /usr/include/c++/14/cctype \
+ /usr/include/c++/14/cerrno \
+ /usr/include/c++/14/clocale \
+ /usr/include/c++/14/cmath \
+ /usr/include/c++/14/codecvt \
+ /usr/include/c++/14/compare \
+ /usr/include/c++/14/concepts \
+ /usr/include/c++/14/cstddef \
+ /usr/include/c++/14/cstdint \
+ /usr/include/c++/14/cstdio \
+ /usr/include/c++/14/cstdlib \
+ /usr/include/c++/14/cstring \
+ /usr/include/c++/14/ctime \
+ /usr/include/c++/14/cwchar \
+ /usr/include/c++/14/cwctype \
+ /usr/include/c++/14/debug/assertions.h \
+ /usr/include/c++/14/debug/debug.h \
+ /usr/include/c++/14/exception \
+ /usr/include/c++/14/ext/aligned_buffer.h \
+ /usr/include/c++/14/ext/alloc_traits.h \
+ /usr/include/c++/14/ext/atomicity.h \
+ /usr/include/c++/14/ext/concurrence.h \
+ /usr/include/c++/14/ext/numeric_traits.h \
+ /usr/include/c++/14/ext/string_conversions.h \
+ /usr/include/c++/14/ext/type_traits.h \
+ /usr/include/c++/14/filesystem \
+ /usr/include/c++/14/initializer_list \
+ /usr/include/c++/14/iomanip \
+ /usr/include/c++/14/ios \
+ /usr/include/c++/14/iosfwd \
+ /usr/include/c++/14/iostream \
+ /usr/include/c++/14/istream \
+ /usr/include/c++/14/iterator \
+ /usr/include/c++/14/limits \
+ /usr/include/c++/14/list \
+ /usr/include/c++/14/locale \
+ /usr/include/c++/14/map \
+ /usr/include/c++/14/memory \
+ /usr/include/c++/14/new \
+ /usr/include/c++/14/ostream \
+ /usr/include/c++/14/pstl/execution_defs.h \
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h \
+ /usr/include/c++/14/pstl/glue_memory_defs.h \
+ /usr/include/c++/14/pstl/pstl_config.h \
+ /usr/include/c++/14/ratio \
+ /usr/include/c++/14/set \
+ /usr/include/c++/14/sstream \
+ /usr/include/c++/14/stdexcept \
+ /usr/include/c++/14/streambuf \
+ /usr/include/c++/14/string \
+ /usr/include/c++/14/string_view \
+ /usr/include/c++/14/system_error \
+ /usr/include/c++/14/tr1/bessel_function.tcc \
+ /usr/include/c++/14/tr1/beta_function.tcc \
+ /usr/include/c++/14/tr1/ell_integral.tcc \
+ /usr/include/c++/14/tr1/exp_integral.tcc \
+ /usr/include/c++/14/tr1/gamma.tcc \
+ /usr/include/c++/14/tr1/hypergeometric.tcc \
+ /usr/include/c++/14/tr1/legendre_function.tcc \
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc \
+ /usr/include/c++/14/tr1/poly_hermite.tcc \
+ /usr/include/c++/14/tr1/poly_laguerre.tcc \
+ /usr/include/c++/14/tr1/riemann_zeta.tcc \
+ /usr/include/c++/14/tr1/special_function_util.h \
+ /usr/include/c++/14/tuple \
+ /usr/include/c++/14/type_traits \
+ /usr/include/c++/14/typeinfo \
+ /usr/include/c++/14/unordered_map \
+ /usr/include/c++/14/utility \
+ /usr/include/c++/14/valarray \
+ /usr/include/c++/14/vector \
+ /usr/include/ctype.h \
+ /usr/include/dlfcn.h \
+ /usr/include/endian.h \
+ /usr/include/errno.h \
+ /usr/include/features-time64.h \
+ /usr/include/features.h \
+ /usr/include/libintl.h \
+ /usr/include/limits.h \
+ /usr/include/linux/errno.h \
+ /usr/include/linux/limits.h \
+ /usr/include/locale.h \
+ /usr/include/math.h \
+ /usr/include/pthread.h \
+ /usr/include/sched.h \
+ /usr/include/stdc-predef.h \
+ /usr/include/stdint.h \
+ /usr/include/stdio.h \
+ /usr/include/stdlib.h \
+ /usr/include/string.h \
+ /usr/include/strings.h \
+ /usr/include/time.h \
+ /usr/include/wchar.h \
+ /usr/include/wctype.h \
+ /usr/include/x86_64-linux-gnu/asm/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h \
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h \
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h \
+ /usr/include/x86_64-linux-gnu/bits/dlfcn.h \
+ /usr/include/x86_64-linux-gnu/bits/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/endianness.h \
+ /usr/include/x86_64-linux-gnu/bits/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn.h \
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h \
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/locale.h \
+ /usr/include/x86_64-linux-gnu/bits/long-double.h \
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h \
+ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
+ /usr/include/x86_64-linux-gnu/bits/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/select.h \
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
+ /usr/include/x86_64-linux-gnu/bits/time.h \
+ /usr/include/x86_64-linux-gnu/bits/time64.h \
+ /usr/include/x86_64-linux-gnu/bits/timesize.h \
+ /usr/include/x86_64-linux-gnu/bits/timex.h \
+ /usr/include/x86_64-linux-gnu/bits/types.h \
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h \
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/waitflags.h \
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
+ /usr/include/x86_64-linux-gnu/bits/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h \
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h \
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h \
+ /usr/include/x86_64-linux-gnu/sys/select.h \
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h \
+ /usr/include/x86_64-linux-gnu/sys/types.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h
+
+CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o: src/RegisterExtension.cpp \
+ extern/godot-cpp/gdextension/gdextension_interface.h \
+ extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/engine.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp \
+ extern/godot-cpp/include/godot_cpp/classes/ref.hpp \
+ extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp \
+ extern/godot-cpp/include/godot_cpp/core/binder_common.hpp \
+ extern/godot-cpp/include/godot_cpp/core/class_db.hpp \
+ extern/godot-cpp/include/godot_cpp/core/defs.hpp \
+ extern/godot-cpp/include/godot_cpp/core/error_macros.hpp \
+ extern/godot-cpp/include/godot_cpp/core/math.hpp \
+ extern/godot-cpp/include/godot_cpp/core/memory.hpp \
+ extern/godot-cpp/include/godot_cpp/core/method_bind.hpp \
+ extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp \
+ extern/godot-cpp/include/godot_cpp/core/object.hpp \
+ extern/godot-cpp/include/godot_cpp/core/property_info.hpp \
+ extern/godot-cpp/include/godot_cpp/core/type_info.hpp \
+ extern/godot-cpp/include/godot_cpp/godot.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/list.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/aabb.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/basis.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/char_string.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/color.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/plane.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/projection.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/rect2.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/variant.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector2.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector3.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector4.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp \
+ extern/libretro-common/include/libretro.h \
+ extern/yaml-cpp/include/yaml-cpp/binary.h \
+ extern/yaml-cpp/include/yaml-cpp/dll.h \
+ extern/yaml-cpp/include/yaml-cpp/emitter.h \
+ extern/yaml-cpp/include/yaml-cpp/emitterdef.h \
+ extern/yaml-cpp/include/yaml-cpp/emittermanip.h \
+ extern/yaml-cpp/include/yaml-cpp/emitterstyle.h \
+ extern/yaml-cpp/include/yaml-cpp/exceptions.h \
+ extern/yaml-cpp/include/yaml-cpp/mark.h \
+ extern/yaml-cpp/include/yaml-cpp/node/convert.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h \
+ extern/yaml-cpp/include/yaml-cpp/node/emit.h \
+ extern/yaml-cpp/include/yaml-cpp/node/impl.h \
+ extern/yaml-cpp/include/yaml-cpp/node/iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/node.h \
+ extern/yaml-cpp/include/yaml-cpp/node/parse.h \
+ extern/yaml-cpp/include/yaml-cpp/node/ptr.h \
+ extern/yaml-cpp/include/yaml-cpp/node/type.h \
+ extern/yaml-cpp/include/yaml-cpp/noexcept.h \
+ extern/yaml-cpp/include/yaml-cpp/null.h \
+ extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h \
+ extern/yaml-cpp/include/yaml-cpp/parser.h \
+ extern/yaml-cpp/include/yaml-cpp/stlemitter.h \
+ extern/yaml-cpp/include/yaml-cpp/traits.h \
+ extern/yaml-cpp/include/yaml-cpp/yaml.h \
+ src/RetroHost.hpp \
+ /usr/include/alloca.h \
+ /usr/include/asm-generic/errno-base.h \
+ /usr/include/asm-generic/errno.h \
+ /usr/include/c++/14/algorithm \
+ /usr/include/c++/14/array \
+ /usr/include/c++/14/atomic \
+ /usr/include/c++/14/backward/auto_ptr.h \
+ /usr/include/c++/14/backward/binders.h \
+ /usr/include/c++/14/bit \
+ /usr/include/c++/14/bits/algorithmfwd.h \
+ /usr/include/c++/14/bits/align.h \
+ /usr/include/c++/14/bits/alloc_traits.h \
+ /usr/include/c++/14/bits/allocated_ptr.h \
+ /usr/include/c++/14/bits/allocator.h \
+ /usr/include/c++/14/bits/atomic_base.h \
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h \
+ /usr/include/c++/14/bits/basic_ios.h \
+ /usr/include/c++/14/bits/basic_ios.tcc \
+ /usr/include/c++/14/bits/basic_string.h \
+ /usr/include/c++/14/bits/basic_string.tcc \
+ /usr/include/c++/14/bits/char_traits.h \
+ /usr/include/c++/14/bits/charconv.h \
+ /usr/include/c++/14/bits/chrono.h \
+ /usr/include/c++/14/bits/codecvt.h \
+ /usr/include/c++/14/bits/concept_check.h \
+ /usr/include/c++/14/bits/cpp_type_traits.h \
+ /usr/include/c++/14/bits/cxxabi_forced.h \
+ /usr/include/c++/14/bits/cxxabi_init_exception.h \
+ /usr/include/c++/14/bits/enable_special_members.h \
+ /usr/include/c++/14/bits/erase_if.h \
+ /usr/include/c++/14/bits/exception.h \
+ /usr/include/c++/14/bits/exception_defines.h \
+ /usr/include/c++/14/bits/exception_ptr.h \
+ /usr/include/c++/14/bits/fs_dir.h \
+ /usr/include/c++/14/bits/fs_fwd.h \
+ /usr/include/c++/14/bits/fs_ops.h \
+ /usr/include/c++/14/bits/fs_path.h \
+ /usr/include/c++/14/bits/functexcept.h \
+ /usr/include/c++/14/bits/functional_hash.h \
+ /usr/include/c++/14/bits/gslice.h \
+ /usr/include/c++/14/bits/gslice_array.h \
+ /usr/include/c++/14/bits/hash_bytes.h \
+ /usr/include/c++/14/bits/hashtable.h \
+ /usr/include/c++/14/bits/hashtable_policy.h \
+ /usr/include/c++/14/bits/indirect_array.h \
+ /usr/include/c++/14/bits/invoke.h \
+ /usr/include/c++/14/bits/ios_base.h \
+ /usr/include/c++/14/bits/istream.tcc \
+ /usr/include/c++/14/bits/list.tcc \
+ /usr/include/c++/14/bits/locale_classes.h \
+ /usr/include/c++/14/bits/locale_classes.tcc \
+ /usr/include/c++/14/bits/locale_conv.h \
+ /usr/include/c++/14/bits/locale_facets.h \
+ /usr/include/c++/14/bits/locale_facets.tcc \
+ /usr/include/c++/14/bits/locale_facets_nonio.h \
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc \
+ /usr/include/c++/14/bits/localefwd.h \
+ /usr/include/c++/14/bits/mask_array.h \
+ /usr/include/c++/14/bits/memory_resource.h \
+ /usr/include/c++/14/bits/memoryfwd.h \
+ /usr/include/c++/14/bits/move.h \
+ /usr/include/c++/14/bits/nested_exception.h \
+ /usr/include/c++/14/bits/new_allocator.h \
+ /usr/include/c++/14/bits/node_handle.h \
+ /usr/include/c++/14/bits/ostream.tcc \
+ /usr/include/c++/14/bits/ostream_insert.h \
+ /usr/include/c++/14/bits/parse_numbers.h \
+ /usr/include/c++/14/bits/postypes.h \
+ /usr/include/c++/14/bits/predefined_ops.h \
+ /usr/include/c++/14/bits/ptr_traits.h \
+ /usr/include/c++/14/bits/quoted_string.h \
+ /usr/include/c++/14/bits/range_access.h \
+ /usr/include/c++/14/bits/refwrap.h \
+ /usr/include/c++/14/bits/requires_hosted.h \
+ /usr/include/c++/14/bits/shared_ptr.h \
+ /usr/include/c++/14/bits/shared_ptr_atomic.h \
+ /usr/include/c++/14/bits/shared_ptr_base.h \
+ /usr/include/c++/14/bits/slice_array.h \
+ /usr/include/c++/14/bits/specfun.h \
+ /usr/include/c++/14/bits/sstream.tcc \
+ /usr/include/c++/14/bits/std_abs.h \
+ /usr/include/c++/14/bits/stl_algo.h \
+ /usr/include/c++/14/bits/stl_algobase.h \
+ /usr/include/c++/14/bits/stl_bvector.h \
+ /usr/include/c++/14/bits/stl_construct.h \
+ /usr/include/c++/14/bits/stl_function.h \
+ /usr/include/c++/14/bits/stl_heap.h \
+ /usr/include/c++/14/bits/stl_iterator.h \
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h \
+ /usr/include/c++/14/bits/stl_iterator_base_types.h \
+ /usr/include/c++/14/bits/stl_list.h \
+ /usr/include/c++/14/bits/stl_map.h \
+ /usr/include/c++/14/bits/stl_multimap.h \
+ /usr/include/c++/14/bits/stl_multiset.h \
+ /usr/include/c++/14/bits/stl_pair.h \
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h \
+ /usr/include/c++/14/bits/stl_relops.h \
+ /usr/include/c++/14/bits/stl_set.h \
+ /usr/include/c++/14/bits/stl_tempbuf.h \
+ /usr/include/c++/14/bits/stl_tree.h \
+ /usr/include/c++/14/bits/stl_uninitialized.h \
+ /usr/include/c++/14/bits/stl_vector.h \
+ /usr/include/c++/14/bits/stream_iterator.h \
+ /usr/include/c++/14/bits/streambuf.tcc \
+ /usr/include/c++/14/bits/streambuf_iterator.h \
+ /usr/include/c++/14/bits/string_view.tcc \
+ /usr/include/c++/14/bits/stringfwd.h \
+ /usr/include/c++/14/bits/uniform_int_dist.h \
+ /usr/include/c++/14/bits/unique_ptr.h \
+ /usr/include/c++/14/bits/unordered_map.h \
+ /usr/include/c++/14/bits/uses_allocator.h \
+ /usr/include/c++/14/bits/uses_allocator_args.h \
+ /usr/include/c++/14/bits/utility.h \
+ /usr/include/c++/14/bits/valarray_after.h \
+ /usr/include/c++/14/bits/valarray_array.h \
+ /usr/include/c++/14/bits/valarray_array.tcc \
+ /usr/include/c++/14/bits/valarray_before.h \
+ /usr/include/c++/14/bits/vector.tcc \
+ /usr/include/c++/14/bits/version.h \
+ /usr/include/c++/14/cctype \
+ /usr/include/c++/14/cerrno \
+ /usr/include/c++/14/clocale \
+ /usr/include/c++/14/cmath \
+ /usr/include/c++/14/codecvt \
+ /usr/include/c++/14/compare \
+ /usr/include/c++/14/concepts \
+ /usr/include/c++/14/cstddef \
+ /usr/include/c++/14/cstdint \
+ /usr/include/c++/14/cstdio \
+ /usr/include/c++/14/cstdlib \
+ /usr/include/c++/14/cstring \
+ /usr/include/c++/14/ctime \
+ /usr/include/c++/14/cwchar \
+ /usr/include/c++/14/cwctype \
+ /usr/include/c++/14/debug/assertions.h \
+ /usr/include/c++/14/debug/debug.h \
+ /usr/include/c++/14/exception \
+ /usr/include/c++/14/ext/aligned_buffer.h \
+ /usr/include/c++/14/ext/alloc_traits.h \
+ /usr/include/c++/14/ext/atomicity.h \
+ /usr/include/c++/14/ext/concurrence.h \
+ /usr/include/c++/14/ext/numeric_traits.h \
+ /usr/include/c++/14/ext/string_conversions.h \
+ /usr/include/c++/14/ext/type_traits.h \
+ /usr/include/c++/14/filesystem \
+ /usr/include/c++/14/initializer_list \
+ /usr/include/c++/14/iomanip \
+ /usr/include/c++/14/ios \
+ /usr/include/c++/14/iosfwd \
+ /usr/include/c++/14/iostream \
+ /usr/include/c++/14/istream \
+ /usr/include/c++/14/iterator \
+ /usr/include/c++/14/limits \
+ /usr/include/c++/14/list \
+ /usr/include/c++/14/locale \
+ /usr/include/c++/14/map \
+ /usr/include/c++/14/memory \
+ /usr/include/c++/14/new \
+ /usr/include/c++/14/ostream \
+ /usr/include/c++/14/pstl/execution_defs.h \
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h \
+ /usr/include/c++/14/pstl/glue_memory_defs.h \
+ /usr/include/c++/14/pstl/pstl_config.h \
+ /usr/include/c++/14/ratio \
+ /usr/include/c++/14/set \
+ /usr/include/c++/14/sstream \
+ /usr/include/c++/14/stdexcept \
+ /usr/include/c++/14/streambuf \
+ /usr/include/c++/14/string \
+ /usr/include/c++/14/string_view \
+ /usr/include/c++/14/system_error \
+ /usr/include/c++/14/tr1/bessel_function.tcc \
+ /usr/include/c++/14/tr1/beta_function.tcc \
+ /usr/include/c++/14/tr1/ell_integral.tcc \
+ /usr/include/c++/14/tr1/exp_integral.tcc \
+ /usr/include/c++/14/tr1/gamma.tcc \
+ /usr/include/c++/14/tr1/hypergeometric.tcc \
+ /usr/include/c++/14/tr1/legendre_function.tcc \
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc \
+ /usr/include/c++/14/tr1/poly_hermite.tcc \
+ /usr/include/c++/14/tr1/poly_laguerre.tcc \
+ /usr/include/c++/14/tr1/riemann_zeta.tcc \
+ /usr/include/c++/14/tr1/special_function_util.h \
+ /usr/include/c++/14/tuple \
+ /usr/include/c++/14/type_traits \
+ /usr/include/c++/14/typeinfo \
+ /usr/include/c++/14/unordered_map \
+ /usr/include/c++/14/utility \
+ /usr/include/c++/14/valarray \
+ /usr/include/c++/14/vector \
+ /usr/include/ctype.h \
+ /usr/include/dlfcn.h \
+ /usr/include/endian.h \
+ /usr/include/errno.h \
+ /usr/include/features-time64.h \
+ /usr/include/features.h \
+ /usr/include/libintl.h \
+ /usr/include/limits.h \
+ /usr/include/linux/errno.h \
+ /usr/include/linux/limits.h \
+ /usr/include/locale.h \
+ /usr/include/math.h \
+ /usr/include/pthread.h \
+ /usr/include/sched.h \
+ /usr/include/stdc-predef.h \
+ /usr/include/stdint.h \
+ /usr/include/stdio.h \
+ /usr/include/stdlib.h \
+ /usr/include/string.h \
+ /usr/include/strings.h \
+ /usr/include/time.h \
+ /usr/include/wchar.h \
+ /usr/include/wctype.h \
+ /usr/include/x86_64-linux-gnu/asm/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h \
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h \
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h \
+ /usr/include/x86_64-linux-gnu/bits/dlfcn.h \
+ /usr/include/x86_64-linux-gnu/bits/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/endianness.h \
+ /usr/include/x86_64-linux-gnu/bits/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn.h \
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h \
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/locale.h \
+ /usr/include/x86_64-linux-gnu/bits/long-double.h \
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h \
+ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
+ /usr/include/x86_64-linux-gnu/bits/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/select.h \
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
+ /usr/include/x86_64-linux-gnu/bits/time.h \
+ /usr/include/x86_64-linux-gnu/bits/time64.h \
+ /usr/include/x86_64-linux-gnu/bits/timesize.h \
+ /usr/include/x86_64-linux-gnu/bits/timex.h \
+ /usr/include/x86_64-linux-gnu/bits/types.h \
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h \
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/waitflags.h \
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
+ /usr/include/x86_64-linux-gnu/bits/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h \
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h \
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h \
+ /usr/include/x86_64-linux-gnu/sys/select.h \
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h \
+ /usr/include/x86_64-linux-gnu/sys/types.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h
+
+CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o: src/RetroHost.cpp \
+ extern/godot-cpp/gdextension/gdextension_interface.h \
+ extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/file_access.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/os.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/project_settings.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/utility_functions.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp \
+ extern/godot-cpp/include/godot_cpp/classes/ref.hpp \
+ extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp \
+ extern/godot-cpp/include/godot_cpp/core/binder_common.hpp \
+ extern/godot-cpp/include/godot_cpp/core/class_db.hpp \
+ extern/godot-cpp/include/godot_cpp/core/defs.hpp \
+ extern/godot-cpp/include/godot_cpp/core/error_macros.hpp \
+ extern/godot-cpp/include/godot_cpp/core/math.hpp \
+ extern/godot-cpp/include/godot_cpp/core/memory.hpp \
+ extern/godot-cpp/include/godot_cpp/core/method_bind.hpp \
+ extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp \
+ extern/godot-cpp/include/godot_cpp/core/object.hpp \
+ extern/godot-cpp/include/godot_cpp/core/property_info.hpp \
+ extern/godot-cpp/include/godot_cpp/core/type_info.hpp \
+ extern/godot-cpp/include/godot_cpp/godot.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/list.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/aabb.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/basis.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/char_string.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/color.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/plane.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/projection.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/rect2.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/variant.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector2.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector3.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector4.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp \
+ extern/libretro-common/include/libretro.h \
+ extern/yaml-cpp/include/yaml-cpp/binary.h \
+ extern/yaml-cpp/include/yaml-cpp/dll.h \
+ extern/yaml-cpp/include/yaml-cpp/emitter.h \
+ extern/yaml-cpp/include/yaml-cpp/emitterdef.h \
+ extern/yaml-cpp/include/yaml-cpp/emittermanip.h \
+ extern/yaml-cpp/include/yaml-cpp/emitterstyle.h \
+ extern/yaml-cpp/include/yaml-cpp/exceptions.h \
+ extern/yaml-cpp/include/yaml-cpp/mark.h \
+ extern/yaml-cpp/include/yaml-cpp/node/convert.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h \
+ extern/yaml-cpp/include/yaml-cpp/node/emit.h \
+ extern/yaml-cpp/include/yaml-cpp/node/impl.h \
+ extern/yaml-cpp/include/yaml-cpp/node/iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/node.h \
+ extern/yaml-cpp/include/yaml-cpp/node/parse.h \
+ extern/yaml-cpp/include/yaml-cpp/node/ptr.h \
+ extern/yaml-cpp/include/yaml-cpp/node/type.h \
+ extern/yaml-cpp/include/yaml-cpp/noexcept.h \
+ extern/yaml-cpp/include/yaml-cpp/null.h \
+ extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h \
+ extern/yaml-cpp/include/yaml-cpp/parser.h \
+ extern/yaml-cpp/include/yaml-cpp/stlemitter.h \
+ extern/yaml-cpp/include/yaml-cpp/traits.h \
+ extern/yaml-cpp/include/yaml-cpp/yaml.h \
+ src/RetroHost.hpp \
+ /usr/include/alloca.h \
+ /usr/include/asm-generic/errno-base.h \
+ /usr/include/asm-generic/errno.h \
+ /usr/include/c++/14/algorithm \
+ /usr/include/c++/14/array \
+ /usr/include/c++/14/atomic \
+ /usr/include/c++/14/backward/auto_ptr.h \
+ /usr/include/c++/14/backward/binders.h \
+ /usr/include/c++/14/bit \
+ /usr/include/c++/14/bits/algorithmfwd.h \
+ /usr/include/c++/14/bits/align.h \
+ /usr/include/c++/14/bits/alloc_traits.h \
+ /usr/include/c++/14/bits/allocated_ptr.h \
+ /usr/include/c++/14/bits/allocator.h \
+ /usr/include/c++/14/bits/atomic_base.h \
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h \
+ /usr/include/c++/14/bits/basic_ios.h \
+ /usr/include/c++/14/bits/basic_ios.tcc \
+ /usr/include/c++/14/bits/basic_string.h \
+ /usr/include/c++/14/bits/basic_string.tcc \
+ /usr/include/c++/14/bits/char_traits.h \
+ /usr/include/c++/14/bits/charconv.h \
+ /usr/include/c++/14/bits/chrono.h \
+ /usr/include/c++/14/bits/codecvt.h \
+ /usr/include/c++/14/bits/concept_check.h \
+ /usr/include/c++/14/bits/cpp_type_traits.h \
+ /usr/include/c++/14/bits/cxxabi_forced.h \
+ /usr/include/c++/14/bits/cxxabi_init_exception.h \
+ /usr/include/c++/14/bits/enable_special_members.h \
+ /usr/include/c++/14/bits/erase_if.h \
+ /usr/include/c++/14/bits/exception.h \
+ /usr/include/c++/14/bits/exception_defines.h \
+ /usr/include/c++/14/bits/exception_ptr.h \
+ /usr/include/c++/14/bits/fs_dir.h \
+ /usr/include/c++/14/bits/fs_fwd.h \
+ /usr/include/c++/14/bits/fs_ops.h \
+ /usr/include/c++/14/bits/fs_path.h \
+ /usr/include/c++/14/bits/fstream.tcc \
+ /usr/include/c++/14/bits/functexcept.h \
+ /usr/include/c++/14/bits/functional_hash.h \
+ /usr/include/c++/14/bits/gslice.h \
+ /usr/include/c++/14/bits/gslice_array.h \
+ /usr/include/c++/14/bits/hash_bytes.h \
+ /usr/include/c++/14/bits/hashtable.h \
+ /usr/include/c++/14/bits/hashtable_policy.h \
+ /usr/include/c++/14/bits/indirect_array.h \
+ /usr/include/c++/14/bits/invoke.h \
+ /usr/include/c++/14/bits/ios_base.h \
+ /usr/include/c++/14/bits/istream.tcc \
+ /usr/include/c++/14/bits/list.tcc \
+ /usr/include/c++/14/bits/locale_classes.h \
+ /usr/include/c++/14/bits/locale_classes.tcc \
+ /usr/include/c++/14/bits/locale_conv.h \
+ /usr/include/c++/14/bits/locale_facets.h \
+ /usr/include/c++/14/bits/locale_facets.tcc \
+ /usr/include/c++/14/bits/locale_facets_nonio.h \
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc \
+ /usr/include/c++/14/bits/localefwd.h \
+ /usr/include/c++/14/bits/mask_array.h \
+ /usr/include/c++/14/bits/memory_resource.h \
+ /usr/include/c++/14/bits/memoryfwd.h \
+ /usr/include/c++/14/bits/move.h \
+ /usr/include/c++/14/bits/nested_exception.h \
+ /usr/include/c++/14/bits/new_allocator.h \
+ /usr/include/c++/14/bits/node_handle.h \
+ /usr/include/c++/14/bits/ostream.tcc \
+ /usr/include/c++/14/bits/ostream_insert.h \
+ /usr/include/c++/14/bits/parse_numbers.h \
+ /usr/include/c++/14/bits/postypes.h \
+ /usr/include/c++/14/bits/predefined_ops.h \
+ /usr/include/c++/14/bits/ptr_traits.h \
+ /usr/include/c++/14/bits/quoted_string.h \
+ /usr/include/c++/14/bits/range_access.h \
+ /usr/include/c++/14/bits/refwrap.h \
+ /usr/include/c++/14/bits/requires_hosted.h \
+ /usr/include/c++/14/bits/shared_ptr.h \
+ /usr/include/c++/14/bits/shared_ptr_atomic.h \
+ /usr/include/c++/14/bits/shared_ptr_base.h \
+ /usr/include/c++/14/bits/slice_array.h \
+ /usr/include/c++/14/bits/specfun.h \
+ /usr/include/c++/14/bits/sstream.tcc \
+ /usr/include/c++/14/bits/std_abs.h \
+ /usr/include/c++/14/bits/stl_algo.h \
+ /usr/include/c++/14/bits/stl_algobase.h \
+ /usr/include/c++/14/bits/stl_bvector.h \
+ /usr/include/c++/14/bits/stl_construct.h \
+ /usr/include/c++/14/bits/stl_function.h \
+ /usr/include/c++/14/bits/stl_heap.h \
+ /usr/include/c++/14/bits/stl_iterator.h \
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h \
+ /usr/include/c++/14/bits/stl_iterator_base_types.h \
+ /usr/include/c++/14/bits/stl_list.h \
+ /usr/include/c++/14/bits/stl_map.h \
+ /usr/include/c++/14/bits/stl_multimap.h \
+ /usr/include/c++/14/bits/stl_multiset.h \
+ /usr/include/c++/14/bits/stl_pair.h \
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h \
+ /usr/include/c++/14/bits/stl_relops.h \
+ /usr/include/c++/14/bits/stl_set.h \
+ /usr/include/c++/14/bits/stl_tempbuf.h \
+ /usr/include/c++/14/bits/stl_tree.h \
+ /usr/include/c++/14/bits/stl_uninitialized.h \
+ /usr/include/c++/14/bits/stl_vector.h \
+ /usr/include/c++/14/bits/stream_iterator.h \
+ /usr/include/c++/14/bits/streambuf.tcc \
+ /usr/include/c++/14/bits/streambuf_iterator.h \
+ /usr/include/c++/14/bits/string_view.tcc \
+ /usr/include/c++/14/bits/stringfwd.h \
+ /usr/include/c++/14/bits/uniform_int_dist.h \
+ /usr/include/c++/14/bits/unique_ptr.h \
+ /usr/include/c++/14/bits/unordered_map.h \
+ /usr/include/c++/14/bits/uses_allocator.h \
+ /usr/include/c++/14/bits/uses_allocator_args.h \
+ /usr/include/c++/14/bits/utility.h \
+ /usr/include/c++/14/bits/valarray_after.h \
+ /usr/include/c++/14/bits/valarray_array.h \
+ /usr/include/c++/14/bits/valarray_array.tcc \
+ /usr/include/c++/14/bits/valarray_before.h \
+ /usr/include/c++/14/bits/vector.tcc \
+ /usr/include/c++/14/bits/version.h \
+ /usr/include/c++/14/cctype \
+ /usr/include/c++/14/cerrno \
+ /usr/include/c++/14/clocale \
+ /usr/include/c++/14/cmath \
+ /usr/include/c++/14/codecvt \
+ /usr/include/c++/14/compare \
+ /usr/include/c++/14/concepts \
+ /usr/include/c++/14/cstddef \
+ /usr/include/c++/14/cstdint \
+ /usr/include/c++/14/cstdio \
+ /usr/include/c++/14/cstdlib \
+ /usr/include/c++/14/cstring \
+ /usr/include/c++/14/ctime \
+ /usr/include/c++/14/cwchar \
+ /usr/include/c++/14/cwctype \
+ /usr/include/c++/14/debug/assertions.h \
+ /usr/include/c++/14/debug/debug.h \
+ /usr/include/c++/14/exception \
+ /usr/include/c++/14/ext/aligned_buffer.h \
+ /usr/include/c++/14/ext/alloc_traits.h \
+ /usr/include/c++/14/ext/atomicity.h \
+ /usr/include/c++/14/ext/concurrence.h \
+ /usr/include/c++/14/ext/numeric_traits.h \
+ /usr/include/c++/14/ext/string_conversions.h \
+ /usr/include/c++/14/ext/type_traits.h \
+ /usr/include/c++/14/filesystem \
+ /usr/include/c++/14/fstream \
+ /usr/include/c++/14/initializer_list \
+ /usr/include/c++/14/iomanip \
+ /usr/include/c++/14/ios \
+ /usr/include/c++/14/iosfwd \
+ /usr/include/c++/14/iostream \
+ /usr/include/c++/14/istream \
+ /usr/include/c++/14/iterator \
+ /usr/include/c++/14/limits \
+ /usr/include/c++/14/list \
+ /usr/include/c++/14/locale \
+ /usr/include/c++/14/map \
+ /usr/include/c++/14/memory \
+ /usr/include/c++/14/new \
+ /usr/include/c++/14/ostream \
+ /usr/include/c++/14/pstl/execution_defs.h \
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h \
+ /usr/include/c++/14/pstl/glue_memory_defs.h \
+ /usr/include/c++/14/pstl/pstl_config.h \
+ /usr/include/c++/14/ratio \
+ /usr/include/c++/14/set \
+ /usr/include/c++/14/sstream \
+ /usr/include/c++/14/stdexcept \
+ /usr/include/c++/14/streambuf \
+ /usr/include/c++/14/string \
+ /usr/include/c++/14/string_view \
+ /usr/include/c++/14/system_error \
+ /usr/include/c++/14/tr1/bessel_function.tcc \
+ /usr/include/c++/14/tr1/beta_function.tcc \
+ /usr/include/c++/14/tr1/ell_integral.tcc \
+ /usr/include/c++/14/tr1/exp_integral.tcc \
+ /usr/include/c++/14/tr1/gamma.tcc \
+ /usr/include/c++/14/tr1/hypergeometric.tcc \
+ /usr/include/c++/14/tr1/legendre_function.tcc \
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc \
+ /usr/include/c++/14/tr1/poly_hermite.tcc \
+ /usr/include/c++/14/tr1/poly_laguerre.tcc \
+ /usr/include/c++/14/tr1/riemann_zeta.tcc \
+ /usr/include/c++/14/tr1/special_function_util.h \
+ /usr/include/c++/14/tuple \
+ /usr/include/c++/14/type_traits \
+ /usr/include/c++/14/typeinfo \
+ /usr/include/c++/14/unordered_map \
+ /usr/include/c++/14/utility \
+ /usr/include/c++/14/valarray \
+ /usr/include/c++/14/vector \
+ /usr/include/ctype.h \
+ /usr/include/dlfcn.h \
+ /usr/include/endian.h \
+ /usr/include/errno.h \
+ /usr/include/features-time64.h \
+ /usr/include/features.h \
+ /usr/include/libintl.h \
+ /usr/include/limits.h \
+ /usr/include/linux/errno.h \
+ /usr/include/linux/limits.h \
+ /usr/include/locale.h \
+ /usr/include/math.h \
+ /usr/include/pthread.h \
+ /usr/include/sched.h \
+ /usr/include/stdc-predef.h \
+ /usr/include/stdint.h \
+ /usr/include/stdio.h \
+ /usr/include/stdlib.h \
+ /usr/include/string.h \
+ /usr/include/strings.h \
+ /usr/include/time.h \
+ /usr/include/wchar.h \
+ /usr/include/wctype.h \
+ /usr/include/x86_64-linux-gnu/asm/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h \
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h \
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h \
+ /usr/include/x86_64-linux-gnu/bits/dlfcn.h \
+ /usr/include/x86_64-linux-gnu/bits/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/endianness.h \
+ /usr/include/x86_64-linux-gnu/bits/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn.h \
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h \
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/locale.h \
+ /usr/include/x86_64-linux-gnu/bits/long-double.h \
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h \
+ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
+ /usr/include/x86_64-linux-gnu/bits/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/select.h \
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
+ /usr/include/x86_64-linux-gnu/bits/time.h \
+ /usr/include/x86_64-linux-gnu/bits/time64.h \
+ /usr/include/x86_64-linux-gnu/bits/timesize.h \
+ /usr/include/x86_64-linux-gnu/bits/timex.h \
+ /usr/include/x86_64-linux-gnu/bits/types.h \
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h \
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/waitflags.h \
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
+ /usr/include/x86_64-linux-gnu/bits/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h \
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/basic_file.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++io.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h \
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h \
+ /usr/include/x86_64-linux-gnu/sys/select.h \
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h \
+ /usr/include/x86_64-linux-gnu/sys/types.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h
+
+CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o: src/VFS.cpp \
+ extern/godot-cpp/gdextension/gdextension_interface.h \
+ extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp \
+ extern/godot-cpp/include/godot_cpp/classes/ref.hpp \
+ extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp \
+ extern/godot-cpp/include/godot_cpp/core/binder_common.hpp \
+ extern/godot-cpp/include/godot_cpp/core/class_db.hpp \
+ extern/godot-cpp/include/godot_cpp/core/defs.hpp \
+ extern/godot-cpp/include/godot_cpp/core/error_macros.hpp \
+ extern/godot-cpp/include/godot_cpp/core/math.hpp \
+ extern/godot-cpp/include/godot_cpp/core/memory.hpp \
+ extern/godot-cpp/include/godot_cpp/core/method_bind.hpp \
+ extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp \
+ extern/godot-cpp/include/godot_cpp/core/object.hpp \
+ extern/godot-cpp/include/godot_cpp/core/property_info.hpp \
+ extern/godot-cpp/include/godot_cpp/core/type_info.hpp \
+ extern/godot-cpp/include/godot_cpp/godot.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/list.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/aabb.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/basis.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/char_string.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/color.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/plane.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/projection.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/rect2.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/variant.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector2.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector3.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector4.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp \
+ extern/libretro-common/include/libretro.h \
+ extern/yaml-cpp/include/yaml-cpp/binary.h \
+ extern/yaml-cpp/include/yaml-cpp/dll.h \
+ extern/yaml-cpp/include/yaml-cpp/emitter.h \
+ extern/yaml-cpp/include/yaml-cpp/emitterdef.h \
+ extern/yaml-cpp/include/yaml-cpp/emittermanip.h \
+ extern/yaml-cpp/include/yaml-cpp/emitterstyle.h \
+ extern/yaml-cpp/include/yaml-cpp/exceptions.h \
+ extern/yaml-cpp/include/yaml-cpp/mark.h \
+ extern/yaml-cpp/include/yaml-cpp/node/convert.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h \
+ extern/yaml-cpp/include/yaml-cpp/node/emit.h \
+ extern/yaml-cpp/include/yaml-cpp/node/impl.h \
+ extern/yaml-cpp/include/yaml-cpp/node/iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/node.h \
+ extern/yaml-cpp/include/yaml-cpp/node/parse.h \
+ extern/yaml-cpp/include/yaml-cpp/node/ptr.h \
+ extern/yaml-cpp/include/yaml-cpp/node/type.h \
+ extern/yaml-cpp/include/yaml-cpp/noexcept.h \
+ extern/yaml-cpp/include/yaml-cpp/null.h \
+ extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h \
+ extern/yaml-cpp/include/yaml-cpp/parser.h \
+ extern/yaml-cpp/include/yaml-cpp/stlemitter.h \
+ extern/yaml-cpp/include/yaml-cpp/traits.h \
+ extern/yaml-cpp/include/yaml-cpp/yaml.h \
+ src/RetroHost.hpp \
+ /usr/include/alloca.h \
+ /usr/include/asm-generic/errno-base.h \
+ /usr/include/asm-generic/errno.h \
+ /usr/include/c++/14/algorithm \
+ /usr/include/c++/14/array \
+ /usr/include/c++/14/atomic \
+ /usr/include/c++/14/backward/auto_ptr.h \
+ /usr/include/c++/14/backward/binders.h \
+ /usr/include/c++/14/bit \
+ /usr/include/c++/14/bits/algorithmfwd.h \
+ /usr/include/c++/14/bits/align.h \
+ /usr/include/c++/14/bits/alloc_traits.h \
+ /usr/include/c++/14/bits/allocated_ptr.h \
+ /usr/include/c++/14/bits/allocator.h \
+ /usr/include/c++/14/bits/atomic_base.h \
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h \
+ /usr/include/c++/14/bits/basic_ios.h \
+ /usr/include/c++/14/bits/basic_ios.tcc \
+ /usr/include/c++/14/bits/basic_string.h \
+ /usr/include/c++/14/bits/basic_string.tcc \
+ /usr/include/c++/14/bits/char_traits.h \
+ /usr/include/c++/14/bits/charconv.h \
+ /usr/include/c++/14/bits/chrono.h \
+ /usr/include/c++/14/bits/codecvt.h \
+ /usr/include/c++/14/bits/concept_check.h \
+ /usr/include/c++/14/bits/cpp_type_traits.h \
+ /usr/include/c++/14/bits/cxxabi_forced.h \
+ /usr/include/c++/14/bits/cxxabi_init_exception.h \
+ /usr/include/c++/14/bits/enable_special_members.h \
+ /usr/include/c++/14/bits/erase_if.h \
+ /usr/include/c++/14/bits/exception.h \
+ /usr/include/c++/14/bits/exception_defines.h \
+ /usr/include/c++/14/bits/exception_ptr.h \
+ /usr/include/c++/14/bits/fs_dir.h \
+ /usr/include/c++/14/bits/fs_fwd.h \
+ /usr/include/c++/14/bits/fs_ops.h \
+ /usr/include/c++/14/bits/fs_path.h \
+ /usr/include/c++/14/bits/functexcept.h \
+ /usr/include/c++/14/bits/functional_hash.h \
+ /usr/include/c++/14/bits/gslice.h \
+ /usr/include/c++/14/bits/gslice_array.h \
+ /usr/include/c++/14/bits/hash_bytes.h \
+ /usr/include/c++/14/bits/hashtable.h \
+ /usr/include/c++/14/bits/hashtable_policy.h \
+ /usr/include/c++/14/bits/indirect_array.h \
+ /usr/include/c++/14/bits/invoke.h \
+ /usr/include/c++/14/bits/ios_base.h \
+ /usr/include/c++/14/bits/istream.tcc \
+ /usr/include/c++/14/bits/list.tcc \
+ /usr/include/c++/14/bits/locale_classes.h \
+ /usr/include/c++/14/bits/locale_classes.tcc \
+ /usr/include/c++/14/bits/locale_conv.h \
+ /usr/include/c++/14/bits/locale_facets.h \
+ /usr/include/c++/14/bits/locale_facets.tcc \
+ /usr/include/c++/14/bits/locale_facets_nonio.h \
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc \
+ /usr/include/c++/14/bits/localefwd.h \
+ /usr/include/c++/14/bits/mask_array.h \
+ /usr/include/c++/14/bits/memory_resource.h \
+ /usr/include/c++/14/bits/memoryfwd.h \
+ /usr/include/c++/14/bits/move.h \
+ /usr/include/c++/14/bits/nested_exception.h \
+ /usr/include/c++/14/bits/new_allocator.h \
+ /usr/include/c++/14/bits/node_handle.h \
+ /usr/include/c++/14/bits/ostream.tcc \
+ /usr/include/c++/14/bits/ostream_insert.h \
+ /usr/include/c++/14/bits/parse_numbers.h \
+ /usr/include/c++/14/bits/postypes.h \
+ /usr/include/c++/14/bits/predefined_ops.h \
+ /usr/include/c++/14/bits/ptr_traits.h \
+ /usr/include/c++/14/bits/quoted_string.h \
+ /usr/include/c++/14/bits/range_access.h \
+ /usr/include/c++/14/bits/refwrap.h \
+ /usr/include/c++/14/bits/requires_hosted.h \
+ /usr/include/c++/14/bits/shared_ptr.h \
+ /usr/include/c++/14/bits/shared_ptr_atomic.h \
+ /usr/include/c++/14/bits/shared_ptr_base.h \
+ /usr/include/c++/14/bits/slice_array.h \
+ /usr/include/c++/14/bits/specfun.h \
+ /usr/include/c++/14/bits/sstream.tcc \
+ /usr/include/c++/14/bits/std_abs.h \
+ /usr/include/c++/14/bits/stl_algo.h \
+ /usr/include/c++/14/bits/stl_algobase.h \
+ /usr/include/c++/14/bits/stl_bvector.h \
+ /usr/include/c++/14/bits/stl_construct.h \
+ /usr/include/c++/14/bits/stl_function.h \
+ /usr/include/c++/14/bits/stl_heap.h \
+ /usr/include/c++/14/bits/stl_iterator.h \
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h \
+ /usr/include/c++/14/bits/stl_iterator_base_types.h \
+ /usr/include/c++/14/bits/stl_list.h \
+ /usr/include/c++/14/bits/stl_map.h \
+ /usr/include/c++/14/bits/stl_multimap.h \
+ /usr/include/c++/14/bits/stl_multiset.h \
+ /usr/include/c++/14/bits/stl_pair.h \
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h \
+ /usr/include/c++/14/bits/stl_relops.h \
+ /usr/include/c++/14/bits/stl_set.h \
+ /usr/include/c++/14/bits/stl_tempbuf.h \
+ /usr/include/c++/14/bits/stl_tree.h \
+ /usr/include/c++/14/bits/stl_uninitialized.h \
+ /usr/include/c++/14/bits/stl_vector.h \
+ /usr/include/c++/14/bits/stream_iterator.h \
+ /usr/include/c++/14/bits/streambuf.tcc \
+ /usr/include/c++/14/bits/streambuf_iterator.h \
+ /usr/include/c++/14/bits/string_view.tcc \
+ /usr/include/c++/14/bits/stringfwd.h \
+ /usr/include/c++/14/bits/uniform_int_dist.h \
+ /usr/include/c++/14/bits/unique_ptr.h \
+ /usr/include/c++/14/bits/unordered_map.h \
+ /usr/include/c++/14/bits/uses_allocator.h \
+ /usr/include/c++/14/bits/uses_allocator_args.h \
+ /usr/include/c++/14/bits/utility.h \
+ /usr/include/c++/14/bits/valarray_after.h \
+ /usr/include/c++/14/bits/valarray_array.h \
+ /usr/include/c++/14/bits/valarray_array.tcc \
+ /usr/include/c++/14/bits/valarray_before.h \
+ /usr/include/c++/14/bits/vector.tcc \
+ /usr/include/c++/14/bits/version.h \
+ /usr/include/c++/14/cctype \
+ /usr/include/c++/14/cerrno \
+ /usr/include/c++/14/clocale \
+ /usr/include/c++/14/cmath \
+ /usr/include/c++/14/codecvt \
+ /usr/include/c++/14/compare \
+ /usr/include/c++/14/concepts \
+ /usr/include/c++/14/cstddef \
+ /usr/include/c++/14/cstdint \
+ /usr/include/c++/14/cstdio \
+ /usr/include/c++/14/cstdlib \
+ /usr/include/c++/14/cstring \
+ /usr/include/c++/14/ctime \
+ /usr/include/c++/14/cwchar \
+ /usr/include/c++/14/cwctype \
+ /usr/include/c++/14/debug/assertions.h \
+ /usr/include/c++/14/debug/debug.h \
+ /usr/include/c++/14/exception \
+ /usr/include/c++/14/ext/aligned_buffer.h \
+ /usr/include/c++/14/ext/alloc_traits.h \
+ /usr/include/c++/14/ext/atomicity.h \
+ /usr/include/c++/14/ext/concurrence.h \
+ /usr/include/c++/14/ext/numeric_traits.h \
+ /usr/include/c++/14/ext/string_conversions.h \
+ /usr/include/c++/14/ext/type_traits.h \
+ /usr/include/c++/14/filesystem \
+ /usr/include/c++/14/initializer_list \
+ /usr/include/c++/14/iomanip \
+ /usr/include/c++/14/ios \
+ /usr/include/c++/14/iosfwd \
+ /usr/include/c++/14/iostream \
+ /usr/include/c++/14/istream \
+ /usr/include/c++/14/iterator \
+ /usr/include/c++/14/limits \
+ /usr/include/c++/14/list \
+ /usr/include/c++/14/locale \
+ /usr/include/c++/14/map \
+ /usr/include/c++/14/memory \
+ /usr/include/c++/14/new \
+ /usr/include/c++/14/ostream \
+ /usr/include/c++/14/pstl/execution_defs.h \
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h \
+ /usr/include/c++/14/pstl/glue_memory_defs.h \
+ /usr/include/c++/14/pstl/pstl_config.h \
+ /usr/include/c++/14/ratio \
+ /usr/include/c++/14/set \
+ /usr/include/c++/14/sstream \
+ /usr/include/c++/14/stdexcept \
+ /usr/include/c++/14/streambuf \
+ /usr/include/c++/14/string \
+ /usr/include/c++/14/string_view \
+ /usr/include/c++/14/system_error \
+ /usr/include/c++/14/tr1/bessel_function.tcc \
+ /usr/include/c++/14/tr1/beta_function.tcc \
+ /usr/include/c++/14/tr1/ell_integral.tcc \
+ /usr/include/c++/14/tr1/exp_integral.tcc \
+ /usr/include/c++/14/tr1/gamma.tcc \
+ /usr/include/c++/14/tr1/hypergeometric.tcc \
+ /usr/include/c++/14/tr1/legendre_function.tcc \
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc \
+ /usr/include/c++/14/tr1/poly_hermite.tcc \
+ /usr/include/c++/14/tr1/poly_laguerre.tcc \
+ /usr/include/c++/14/tr1/riemann_zeta.tcc \
+ /usr/include/c++/14/tr1/special_function_util.h \
+ /usr/include/c++/14/tuple \
+ /usr/include/c++/14/type_traits \
+ /usr/include/c++/14/typeinfo \
+ /usr/include/c++/14/unordered_map \
+ /usr/include/c++/14/utility \
+ /usr/include/c++/14/valarray \
+ /usr/include/c++/14/vector \
+ /usr/include/ctype.h \
+ /usr/include/dlfcn.h \
+ /usr/include/endian.h \
+ /usr/include/errno.h \
+ /usr/include/features-time64.h \
+ /usr/include/features.h \
+ /usr/include/libintl.h \
+ /usr/include/limits.h \
+ /usr/include/linux/errno.h \
+ /usr/include/linux/limits.h \
+ /usr/include/locale.h \
+ /usr/include/math.h \
+ /usr/include/pthread.h \
+ /usr/include/sched.h \
+ /usr/include/stdc-predef.h \
+ /usr/include/stdint.h \
+ /usr/include/stdio.h \
+ /usr/include/stdlib.h \
+ /usr/include/string.h \
+ /usr/include/strings.h \
+ /usr/include/time.h \
+ /usr/include/wchar.h \
+ /usr/include/wctype.h \
+ /usr/include/x86_64-linux-gnu/asm/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h \
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h \
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h \
+ /usr/include/x86_64-linux-gnu/bits/dlfcn.h \
+ /usr/include/x86_64-linux-gnu/bits/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/endianness.h \
+ /usr/include/x86_64-linux-gnu/bits/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn.h \
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h \
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/locale.h \
+ /usr/include/x86_64-linux-gnu/bits/long-double.h \
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h \
+ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
+ /usr/include/x86_64-linux-gnu/bits/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/select.h \
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
+ /usr/include/x86_64-linux-gnu/bits/time.h \
+ /usr/include/x86_64-linux-gnu/bits/time64.h \
+ /usr/include/x86_64-linux-gnu/bits/timesize.h \
+ /usr/include/x86_64-linux-gnu/bits/timex.h \
+ /usr/include/x86_64-linux-gnu/bits/types.h \
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h \
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/waitflags.h \
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
+ /usr/include/x86_64-linux-gnu/bits/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h \
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h \
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h \
+ /usr/include/x86_64-linux-gnu/sys/select.h \
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h \
+ /usr/include/x86_64-linux-gnu/sys/types.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h
+
+CMakeFiles/LibRetroHost.dir/src/Video.cpp.o: src/Video.cpp \
+ extern/godot-cpp/gdextension/gdextension_interface.h \
+ extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/utility_functions.hpp \
+ extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp \
+ extern/godot-cpp/include/godot_cpp/classes/ref.hpp \
+ extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp \
+ extern/godot-cpp/include/godot_cpp/core/binder_common.hpp \
+ extern/godot-cpp/include/godot_cpp/core/class_db.hpp \
+ extern/godot-cpp/include/godot_cpp/core/defs.hpp \
+ extern/godot-cpp/include/godot_cpp/core/error_macros.hpp \
+ extern/godot-cpp/include/godot_cpp/core/math.hpp \
+ extern/godot-cpp/include/godot_cpp/core/memory.hpp \
+ extern/godot-cpp/include/godot_cpp/core/method_bind.hpp \
+ extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp \
+ extern/godot-cpp/include/godot_cpp/core/object.hpp \
+ extern/godot-cpp/include/godot_cpp/core/property_info.hpp \
+ extern/godot-cpp/include/godot_cpp/core/type_info.hpp \
+ extern/godot-cpp/include/godot_cpp/godot.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/list.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp \
+ extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/aabb.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/basis.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/char_string.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/color.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/plane.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/projection.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/rect2.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/variant.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector2.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector3.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector4.hpp \
+ extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp \
+ extern/libretro-common/include/libretro.h \
+ extern/yaml-cpp/include/yaml-cpp/binary.h \
+ extern/yaml-cpp/include/yaml-cpp/dll.h \
+ extern/yaml-cpp/include/yaml-cpp/emitter.h \
+ extern/yaml-cpp/include/yaml-cpp/emitterdef.h \
+ extern/yaml-cpp/include/yaml-cpp/emittermanip.h \
+ extern/yaml-cpp/include/yaml-cpp/emitterstyle.h \
+ extern/yaml-cpp/include/yaml-cpp/exceptions.h \
+ extern/yaml-cpp/include/yaml-cpp/mark.h \
+ extern/yaml-cpp/include/yaml-cpp/node/convert.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h \
+ extern/yaml-cpp/include/yaml-cpp/node/emit.h \
+ extern/yaml-cpp/include/yaml-cpp/node/impl.h \
+ extern/yaml-cpp/include/yaml-cpp/node/iterator.h \
+ extern/yaml-cpp/include/yaml-cpp/node/node.h \
+ extern/yaml-cpp/include/yaml-cpp/node/parse.h \
+ extern/yaml-cpp/include/yaml-cpp/node/ptr.h \
+ extern/yaml-cpp/include/yaml-cpp/node/type.h \
+ extern/yaml-cpp/include/yaml-cpp/noexcept.h \
+ extern/yaml-cpp/include/yaml-cpp/null.h \
+ extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h \
+ extern/yaml-cpp/include/yaml-cpp/parser.h \
+ extern/yaml-cpp/include/yaml-cpp/stlemitter.h \
+ extern/yaml-cpp/include/yaml-cpp/traits.h \
+ extern/yaml-cpp/include/yaml-cpp/yaml.h \
+ src/RetroHost.hpp \
+ /usr/include/alloca.h \
+ /usr/include/asm-generic/errno-base.h \
+ /usr/include/asm-generic/errno.h \
+ /usr/include/c++/14/algorithm \
+ /usr/include/c++/14/array \
+ /usr/include/c++/14/atomic \
+ /usr/include/c++/14/backward/auto_ptr.h \
+ /usr/include/c++/14/backward/binders.h \
+ /usr/include/c++/14/bit \
+ /usr/include/c++/14/bits/algorithmfwd.h \
+ /usr/include/c++/14/bits/align.h \
+ /usr/include/c++/14/bits/alloc_traits.h \
+ /usr/include/c++/14/bits/allocated_ptr.h \
+ /usr/include/c++/14/bits/allocator.h \
+ /usr/include/c++/14/bits/atomic_base.h \
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h \
+ /usr/include/c++/14/bits/basic_ios.h \
+ /usr/include/c++/14/bits/basic_ios.tcc \
+ /usr/include/c++/14/bits/basic_string.h \
+ /usr/include/c++/14/bits/basic_string.tcc \
+ /usr/include/c++/14/bits/char_traits.h \
+ /usr/include/c++/14/bits/charconv.h \
+ /usr/include/c++/14/bits/chrono.h \
+ /usr/include/c++/14/bits/codecvt.h \
+ /usr/include/c++/14/bits/concept_check.h \
+ /usr/include/c++/14/bits/cpp_type_traits.h \
+ /usr/include/c++/14/bits/cxxabi_forced.h \
+ /usr/include/c++/14/bits/cxxabi_init_exception.h \
+ /usr/include/c++/14/bits/enable_special_members.h \
+ /usr/include/c++/14/bits/erase_if.h \
+ /usr/include/c++/14/bits/exception.h \
+ /usr/include/c++/14/bits/exception_defines.h \
+ /usr/include/c++/14/bits/exception_ptr.h \
+ /usr/include/c++/14/bits/fs_dir.h \
+ /usr/include/c++/14/bits/fs_fwd.h \
+ /usr/include/c++/14/bits/fs_ops.h \
+ /usr/include/c++/14/bits/fs_path.h \
+ /usr/include/c++/14/bits/functexcept.h \
+ /usr/include/c++/14/bits/functional_hash.h \
+ /usr/include/c++/14/bits/gslice.h \
+ /usr/include/c++/14/bits/gslice_array.h \
+ /usr/include/c++/14/bits/hash_bytes.h \
+ /usr/include/c++/14/bits/hashtable.h \
+ /usr/include/c++/14/bits/hashtable_policy.h \
+ /usr/include/c++/14/bits/indirect_array.h \
+ /usr/include/c++/14/bits/invoke.h \
+ /usr/include/c++/14/bits/ios_base.h \
+ /usr/include/c++/14/bits/istream.tcc \
+ /usr/include/c++/14/bits/list.tcc \
+ /usr/include/c++/14/bits/locale_classes.h \
+ /usr/include/c++/14/bits/locale_classes.tcc \
+ /usr/include/c++/14/bits/locale_conv.h \
+ /usr/include/c++/14/bits/locale_facets.h \
+ /usr/include/c++/14/bits/locale_facets.tcc \
+ /usr/include/c++/14/bits/locale_facets_nonio.h \
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc \
+ /usr/include/c++/14/bits/localefwd.h \
+ /usr/include/c++/14/bits/mask_array.h \
+ /usr/include/c++/14/bits/memory_resource.h \
+ /usr/include/c++/14/bits/memoryfwd.h \
+ /usr/include/c++/14/bits/move.h \
+ /usr/include/c++/14/bits/nested_exception.h \
+ /usr/include/c++/14/bits/new_allocator.h \
+ /usr/include/c++/14/bits/node_handle.h \
+ /usr/include/c++/14/bits/ostream.tcc \
+ /usr/include/c++/14/bits/ostream_insert.h \
+ /usr/include/c++/14/bits/parse_numbers.h \
+ /usr/include/c++/14/bits/postypes.h \
+ /usr/include/c++/14/bits/predefined_ops.h \
+ /usr/include/c++/14/bits/ptr_traits.h \
+ /usr/include/c++/14/bits/quoted_string.h \
+ /usr/include/c++/14/bits/range_access.h \
+ /usr/include/c++/14/bits/refwrap.h \
+ /usr/include/c++/14/bits/requires_hosted.h \
+ /usr/include/c++/14/bits/shared_ptr.h \
+ /usr/include/c++/14/bits/shared_ptr_atomic.h \
+ /usr/include/c++/14/bits/shared_ptr_base.h \
+ /usr/include/c++/14/bits/slice_array.h \
+ /usr/include/c++/14/bits/specfun.h \
+ /usr/include/c++/14/bits/sstream.tcc \
+ /usr/include/c++/14/bits/std_abs.h \
+ /usr/include/c++/14/bits/stl_algo.h \
+ /usr/include/c++/14/bits/stl_algobase.h \
+ /usr/include/c++/14/bits/stl_bvector.h \
+ /usr/include/c++/14/bits/stl_construct.h \
+ /usr/include/c++/14/bits/stl_function.h \
+ /usr/include/c++/14/bits/stl_heap.h \
+ /usr/include/c++/14/bits/stl_iterator.h \
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h \
+ /usr/include/c++/14/bits/stl_iterator_base_types.h \
+ /usr/include/c++/14/bits/stl_list.h \
+ /usr/include/c++/14/bits/stl_map.h \
+ /usr/include/c++/14/bits/stl_multimap.h \
+ /usr/include/c++/14/bits/stl_multiset.h \
+ /usr/include/c++/14/bits/stl_pair.h \
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h \
+ /usr/include/c++/14/bits/stl_relops.h \
+ /usr/include/c++/14/bits/stl_set.h \
+ /usr/include/c++/14/bits/stl_tempbuf.h \
+ /usr/include/c++/14/bits/stl_tree.h \
+ /usr/include/c++/14/bits/stl_uninitialized.h \
+ /usr/include/c++/14/bits/stl_vector.h \
+ /usr/include/c++/14/bits/stream_iterator.h \
+ /usr/include/c++/14/bits/streambuf.tcc \
+ /usr/include/c++/14/bits/streambuf_iterator.h \
+ /usr/include/c++/14/bits/string_view.tcc \
+ /usr/include/c++/14/bits/stringfwd.h \
+ /usr/include/c++/14/bits/uniform_int_dist.h \
+ /usr/include/c++/14/bits/unique_ptr.h \
+ /usr/include/c++/14/bits/unordered_map.h \
+ /usr/include/c++/14/bits/uses_allocator.h \
+ /usr/include/c++/14/bits/uses_allocator_args.h \
+ /usr/include/c++/14/bits/utility.h \
+ /usr/include/c++/14/bits/valarray_after.h \
+ /usr/include/c++/14/bits/valarray_array.h \
+ /usr/include/c++/14/bits/valarray_array.tcc \
+ /usr/include/c++/14/bits/valarray_before.h \
+ /usr/include/c++/14/bits/vector.tcc \
+ /usr/include/c++/14/bits/version.h \
+ /usr/include/c++/14/cctype \
+ /usr/include/c++/14/cerrno \
+ /usr/include/c++/14/clocale \
+ /usr/include/c++/14/cmath \
+ /usr/include/c++/14/codecvt \
+ /usr/include/c++/14/compare \
+ /usr/include/c++/14/concepts \
+ /usr/include/c++/14/cstddef \
+ /usr/include/c++/14/cstdint \
+ /usr/include/c++/14/cstdio \
+ /usr/include/c++/14/cstdlib \
+ /usr/include/c++/14/cstring \
+ /usr/include/c++/14/ctime \
+ /usr/include/c++/14/cwchar \
+ /usr/include/c++/14/cwctype \
+ /usr/include/c++/14/debug/assertions.h \
+ /usr/include/c++/14/debug/debug.h \
+ /usr/include/c++/14/exception \
+ /usr/include/c++/14/ext/aligned_buffer.h \
+ /usr/include/c++/14/ext/alloc_traits.h \
+ /usr/include/c++/14/ext/atomicity.h \
+ /usr/include/c++/14/ext/concurrence.h \
+ /usr/include/c++/14/ext/numeric_traits.h \
+ /usr/include/c++/14/ext/string_conversions.h \
+ /usr/include/c++/14/ext/type_traits.h \
+ /usr/include/c++/14/filesystem \
+ /usr/include/c++/14/initializer_list \
+ /usr/include/c++/14/iomanip \
+ /usr/include/c++/14/ios \
+ /usr/include/c++/14/iosfwd \
+ /usr/include/c++/14/iostream \
+ /usr/include/c++/14/istream \
+ /usr/include/c++/14/iterator \
+ /usr/include/c++/14/limits \
+ /usr/include/c++/14/list \
+ /usr/include/c++/14/locale \
+ /usr/include/c++/14/map \
+ /usr/include/c++/14/memory \
+ /usr/include/c++/14/new \
+ /usr/include/c++/14/ostream \
+ /usr/include/c++/14/pstl/execution_defs.h \
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h \
+ /usr/include/c++/14/pstl/glue_memory_defs.h \
+ /usr/include/c++/14/pstl/pstl_config.h \
+ /usr/include/c++/14/ratio \
+ /usr/include/c++/14/set \
+ /usr/include/c++/14/sstream \
+ /usr/include/c++/14/stdexcept \
+ /usr/include/c++/14/streambuf \
+ /usr/include/c++/14/string \
+ /usr/include/c++/14/string_view \
+ /usr/include/c++/14/system_error \
+ /usr/include/c++/14/tr1/bessel_function.tcc \
+ /usr/include/c++/14/tr1/beta_function.tcc \
+ /usr/include/c++/14/tr1/ell_integral.tcc \
+ /usr/include/c++/14/tr1/exp_integral.tcc \
+ /usr/include/c++/14/tr1/gamma.tcc \
+ /usr/include/c++/14/tr1/hypergeometric.tcc \
+ /usr/include/c++/14/tr1/legendre_function.tcc \
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc \
+ /usr/include/c++/14/tr1/poly_hermite.tcc \
+ /usr/include/c++/14/tr1/poly_laguerre.tcc \
+ /usr/include/c++/14/tr1/riemann_zeta.tcc \
+ /usr/include/c++/14/tr1/special_function_util.h \
+ /usr/include/c++/14/tuple \
+ /usr/include/c++/14/type_traits \
+ /usr/include/c++/14/typeinfo \
+ /usr/include/c++/14/unordered_map \
+ /usr/include/c++/14/utility \
+ /usr/include/c++/14/valarray \
+ /usr/include/c++/14/vector \
+ /usr/include/ctype.h \
+ /usr/include/dlfcn.h \
+ /usr/include/endian.h \
+ /usr/include/errno.h \
+ /usr/include/features-time64.h \
+ /usr/include/features.h \
+ /usr/include/libintl.h \
+ /usr/include/limits.h \
+ /usr/include/linux/errno.h \
+ /usr/include/linux/limits.h \
+ /usr/include/locale.h \
+ /usr/include/math.h \
+ /usr/include/pthread.h \
+ /usr/include/sched.h \
+ /usr/include/stdc-predef.h \
+ /usr/include/stdint.h \
+ /usr/include/stdio.h \
+ /usr/include/stdlib.h \
+ /usr/include/string.h \
+ /usr/include/strings.h \
+ /usr/include/time.h \
+ /usr/include/wchar.h \
+ /usr/include/wctype.h \
+ /usr/include/x86_64-linux-gnu/asm/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h \
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h \
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h \
+ /usr/include/x86_64-linux-gnu/bits/dlfcn.h \
+ /usr/include/x86_64-linux-gnu/bits/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/endianness.h \
+ /usr/include/x86_64-linux-gnu/bits/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn.h \
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h \
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/locale.h \
+ /usr/include/x86_64-linux-gnu/bits/long-double.h \
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h \
+ /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
+ /usr/include/x86_64-linux-gnu/bits/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/select.h \
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
+ /usr/include/x86_64-linux-gnu/bits/time.h \
+ /usr/include/x86_64-linux-gnu/bits/time64.h \
+ /usr/include/x86_64-linux-gnu/bits/timesize.h \
+ /usr/include/x86_64-linux-gnu/bits/timex.h \
+ /usr/include/x86_64-linux-gnu/bits/types.h \
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h \
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/waitflags.h \
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
+ /usr/include/x86_64-linux-gnu/bits/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h \
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h \
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h \
+ /usr/include/x86_64-linux-gnu/sys/select.h \
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h \
+ /usr/include/x86_64-linux-gnu/sys/types.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h
+
+
+src/Video.cpp:
+
+src/VFS.cpp:
+
+/usr/include/x86_64-linux-gnu/c++/14/bits/c++io.h:
+
+/usr/include/c++/14/fstream:
+
+/usr/include/c++/14/bits/fstream.tcc:
+
+src/KeyboardMap.hpp:
+
+extern/godot-cpp/gen/include/godot_cpp/classes/file_access.hpp:
+
+src/CoreVariables.cpp:
+
+/usr/include/c++/14/cstdarg:
+
+/usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h:
+
+/usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h:
+
+/usr/include/x86_64-linux-gnu/sys/types.h:
+
+src/Input.cpp:
+
+/usr/include/x86_64-linux-gnu/sys/select.h:
+
+/usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h:
+
+/usr/include/x86_64-linux-gnu/gnu/stubs.h:
+
+extern/godot-cpp/gen/include/godot_cpp/classes/os.hpp:
+
+/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
+
+/usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h:
+
+/usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h:
+
+/usr/include/x86_64-linux-gnu/sys/cdefs.h:
+
+/usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h:
+
+/usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h:
+
+/usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h:
+
+/usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h:
+
+/usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h:
+
+/usr/include/x86_64-linux-gnu/bits/wchar.h:
+
+/usr/include/x86_64-linux-gnu/bits/waitstatus.h:
+
+/usr/include/x86_64-linux-gnu/bits/typesizes.h:
+
+/usr/include/x86_64-linux-gnu/bits/types/wint_t.h:
+
+/usr/include/x86_64-linux-gnu/bits/types/time_t.h:
+
+/usr/include/x86_64-linux-gnu/c++/14/bits/basic_file.h:
+
+/usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h:
+
+/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h:
+
+/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h:
+
+/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:
+
+/usr/include/x86_64-linux-gnu/bits/types/error_t.h:
+
+/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h:
+
+/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h:
+
+/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
+
+/usr/include/x86_64-linux-gnu/bits/types/clock_t.h:
+
+/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:
+
+/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
+
+/usr/include/x86_64-linux-gnu/bits/types.h:
+
+/usr/include/x86_64-linux-gnu/bits/timesize.h:
+
+/usr/include/x86_64-linux-gnu/bits/time64.h:
+
+/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:
+
+/usr/include/x86_64-linux-gnu/bits/timex.h:
+
+/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
+
+/usr/include/x86_64-linux-gnu/bits/stdint-least.h:
+
+/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
+
+/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h:
+
+/usr/include/x86_64-linux-gnu/bits/posix1_lim.h:
+
+/usr/include/x86_64-linux-gnu/bits/mathcalls.h:
+
+/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:
+
+/usr/include/x86_64-linux-gnu/bits/math-vector.h:
+
+/usr/include/x86_64-linux-gnu/bits/long-double.h:
+
+/usr/include/x86_64-linux-gnu/bits/locale.h:
+
+/usr/include/x86_64-linux-gnu/bits/local_lim.h:
+
+/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
+
+/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:
+
+/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
+
+/usr/include/x86_64-linux-gnu/bits/fp-logb.h:
+
+/usr/include/x86_64-linux-gnu/bits/fp-fast.h:
+
+/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h:
+
+/usr/include/x86_64-linux-gnu/bits/floatn.h:
+
+/usr/include/x86_64-linux-gnu/bits/errno.h:
+
+/usr/include/x86_64-linux-gnu/bits/endianness.h:
+
+/usr/include/x86_64-linux-gnu/bits/dlfcn.h:
+
+/usr/include/x86_64-linux-gnu/bits/cpu-set.h:
+
+/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h:
+
+/usr/include/wchar.h:
+
+/usr/include/stdlib.h:
+
+/usr/include/stdio.h:
+
+/usr/include/stdc-predef.h:
+
+/usr/include/pthread.h:
+
+/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
+
+/usr/include/math.h:
+
+/usr/include/linux/errno.h:
+
+/usr/include/limits.h:
+
+/usr/include/errno.h:
+
+/usr/include/stdint.h:
+
+/usr/include/endian.h:
+
+/usr/include/dlfcn.h:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/utility_functions.hpp:
+
+/usr/include/ctype.h:
+
+/usr/include/c++/14/vector:
+
+/usr/include/c++/14/valarray:
+
+/usr/include/c++/14/unordered_map:
+
+/usr/include/c++/14/typeinfo:
+
+/usr/include/c++/14/tuple:
+
+/usr/include/c++/14/tr1/riemann_zeta.tcc:
+
+/usr/include/c++/14/tr1/poly_laguerre.tcc:
+
+/usr/include/x86_64-linux-gnu/bits/iscanonical.h:
+
+/usr/include/c++/14/tr1/poly_hermite.tcc:
+
+/usr/include/c++/14/tr1/legendre_function.tcc:
+
+extern/godot-cpp/gen/include/godot_cpp/classes/input_event_with_modifiers.hpp:
+
+/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
+
+/usr/include/c++/14/tr1/gamma.tcc:
+
+/usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h:
+
+/usr/include/c++/14/tr1/exp_integral.tcc:
+
+/usr/include/c++/14/system_error:
+
+/usr/include/c++/14/string_view:
+
+/usr/include/c++/14/string:
+
+/usr/include/c++/14/streambuf:
+
+/usr/include/c++/14/tr1/special_function_util.h:
+
+/usr/include/c++/14/stdexcept:
+
+/usr/include/x86_64-linux-gnu/bits/sched.h:
+
+/usr/include/c++/14/ratio:
+
+/usr/include/c++/14/pstl/glue_memory_defs.h:
+
+/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
+
+/usr/include/c++/14/pstl/glue_algorithm_defs.h:
+
+/usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h:
+
+/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h:
+
+/usr/include/c++/14/utility:
+
+/usr/include/c++/14/pstl/execution_defs.h:
+
+/usr/include/c++/14/new:
+
+/usr/include/c++/14/bits/cpp_type_traits.h:
+
+/usr/include/c++/14/cstring:
+
+/usr/include/wctype.h:
+
+/usr/include/sched.h:
+
+/usr/include/c++/14/filesystem:
+
+extern/libretro-common/include/libretro.h:
+
+/usr/include/c++/14/bits/basic_ios.h:
+
+/usr/include/c++/14/backward/binders.h:
+
+/usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp:
+
+/usr/include/c++/14/tr1/ell_integral.tcc:
+
+/usr/include/c++/14/bits/move.h:
+
+/usr/include/c++/14/array:
+
+/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h:
+
+/usr/include/asm-generic/errno.h:
+
+/usr/include/c++/14/bits/predefined_ops.h:
+
+src/RetroHost.hpp:
+
+/usr/include/c++/14/bits/invoke.h:
+
+extern/yaml-cpp/include/yaml-cpp/parser.h:
+
+/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:
+
+extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h:
+
+/usr/include/linux/limits.h:
+
+/usr/include/c++/14/bits/atomic_lockfree_defines.h:
+
+/usr/include/c++/14/bits/atomic_base.h:
+
+extern/yaml-cpp/include/yaml-cpp/node/parse.h:
+
+extern/yaml-cpp/include/yaml-cpp/node/node.h:
+
+extern/godot-cpp/include/godot_cpp/variant/vector3.hpp:
+
+extern/godot-cpp/gen/include/godot_cpp/classes/project_settings.hpp:
+
+/usr/include/c++/14/bits/exception_ptr.h:
+
+/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
+
+extern/yaml-cpp/include/yaml-cpp/noexcept.h:
+
+/usr/include/c++/14/bits/refwrap.h:
+
+extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h:
+
+/usr/include/c++/14/tr1/modified_bessel_func.tcc:
+
+extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h:
+
+/usr/include/c++/14/bits/valarray_array.tcc:
+
+extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h:
+
+/usr/include/c++/14/ext/type_traits.h:
+
+/usr/include/x86_64-linux-gnu/bits/waitflags.h:
+
+/usr/include/c++/14/bits/hash_bytes.h:
+
+/usr/include/asm-generic/errno-base.h:
+
+/usr/include/c++/14/bits/stl_algobase.h:
+
+/usr/include/c++/14/bits/stl_iterator.h:
+
+/usr/include/c++/14/pstl/pstl_config.h:
+
+extern/yaml-cpp/include/yaml-cpp/emitterstyle.h:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp:
+
+/usr/include/c++/14/cwctype:
+
+/usr/include/x86_64-linux-gnu/bits/setjmp.h:
+
+/usr/include/time.h:
+
+extern/yaml-cpp/include/yaml-cpp/node/impl.h:
+
+extern/yaml-cpp/include/yaml-cpp/emitterdef.h:
+
+/usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h:
+
+/usr/include/c++/14/clocale:
+
+extern/yaml-cpp/include/yaml-cpp/binary.h:
+
+extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp:
+
+extern/yaml-cpp/include/yaml-cpp/yaml.h:
+
+extern/godot-cpp/include/godot_cpp/variant/vector4.hpp:
+
+/usr/include/c++/14/bits/hashtable.h:
+
+/usr/include/x86_64-linux-gnu/sys/single_threaded.h:
+
+extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp:
+
+/usr/include/c++/14/bits/alloc_traits.h:
+
+/usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h:
+
+/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
+
+extern/yaml-cpp/include/yaml-cpp/node/iterator.h:
+
+extern/godot-cpp/include/godot_cpp/variant/aabb.hpp:
+
+extern/godot-cpp/include/godot_cpp/variant/variant.hpp:
+
+/usr/include/x86_64-linux-gnu/bits/time.h:
+
+/usr/include/x86_64-linux-gnu/bits/select.h:
+
+extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp:
+
+/usr/include/c++/14/bits/codecvt.h:
+
+extern/yaml-cpp/include/yaml-cpp/exceptions.h:
+
+/usr/include/c++/14/tr1/bessel_function.tcc:
+
+extern/yaml-cpp/include/yaml-cpp/node/emit.h:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp:
+
+extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp:
+
+/usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h:
+
+/usr/include/c++/14/bits/allocated_ptr.h:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp:
+
+/usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h:
+
+extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp:
+
+/usr/include/c++/14/bits/stl_uninitialized.h:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp:
+
+extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp:
+
+extern/yaml-cpp/include/yaml-cpp/stlemitter.h:
+
+/usr/include/x86_64-linux-gnu/bits/endian.h:
+
+/usr/include/c++/14/ostream:
+
+/usr/include/c++/14/compare:
+
+/usr/include/c++/14/bits/parse_numbers.h:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp:
+
+/usr/include/c++/14/bits/stl_construct.h:
+
+extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp:
+
+extern/godot-cpp/include/godot_cpp/variant/rect2.hpp:
+
+/usr/include/c++/14/bits/version.h:
+
+/usr/include/c++/14/map:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp:
+
+extern/godot-cpp/include/godot_cpp/templates/list.hpp:
+
+/usr/include/c++/14/bits/unordered_map.h:
+
+extern/godot-cpp/include/godot_cpp/core/memory.hpp:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp:
+
+/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
+
+extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp:
+
+extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h:
+
+/usr/include/c++/14/ext/atomicity.h:
+
+src/Audio.cpp:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp:
+
+extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp:
+
+extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp:
+
+/usr/include/c++/14/cwchar:
+
+extern/godot-cpp/include/godot_cpp/core/property_info.hpp:
+
+/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
+
+extern/yaml-cpp/include/yaml-cpp/node/ptr.h:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp:
+
+extern/godot-cpp/gdextension/gdextension_interface.h:
+
+/usr/include/x86_64-linux-gnu/bits/byteswap.h:
+
+extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp:
+
+/usr/include/c++/14/algorithm:
+
+extern/godot-cpp/include/godot_cpp/godot.hpp:
+
+extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp:
+
+/usr/include/c++/14/istream:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp:
+
+extern/godot-cpp/include/godot_cpp/core/method_bind.hpp:
+
+/usr/include/x86_64-linux-gnu/bits/floatn-common.h:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp:
+
+/usr/include/c++/14/bits/locale_facets.tcc:
+
+extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp:
+
+extern/yaml-cpp/include/yaml-cpp/dll.h:
+
+/usr/include/alloca.h:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp:
+
+/usr/include/locale.h:
+
+extern/godot-cpp/include/godot_cpp/variant/char_string.hpp:
+
+extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h:
+
+extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp:
+
+/usr/include/c++/14/bits/specfun.h:
+
+extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp:
+
+extern/yaml-cpp/include/yaml-cpp/node/convert.h:
+
+extern/yaml-cpp/include/yaml-cpp/emitter.h:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp:
+
+extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp:
+
+extern/yaml-cpp/include/yaml-cpp/mark.h:
+
+extern/godot-cpp/include/godot_cpp/variant/vector2.hpp:
+
+extern/godot-cpp/include/godot_cpp/classes/ref.hpp:
+
+/usr/include/libintl.h:
+
+/usr/include/c++/14/bits/locale_classes.tcc:
+
+extern/yaml-cpp/include/yaml-cpp/traits.h:
+
+/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
+
+extern/yaml-cpp/include/yaml-cpp/null.h:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp:
+
+extern/godot-cpp/include/godot_cpp/core/binder_common.hpp:
+
+src/RetroHost.cpp:
+
+/usr/include/c++/14/type_traits:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp:
+
+/usr/include/c++/14/debug/assertions.h:
+
+extern/godot-cpp/include/godot_cpp/core/defs.hpp:
+
+/usr/include/c++/14/bits/charconv.h:
+
+/usr/include/c++/14/bits/basic_ios.tcc:
+
+extern/godot-cpp/include/godot_cpp/variant/basis.hpp:
+
+/usr/include/c++/14/bits/stl_multimap.h:
+
+extern/godot-cpp/include/godot_cpp/core/error_macros.hpp:
+
+/usr/include/string.h:
+
+/usr/include/c++/14/bits/allocator.h:
+
+extern/godot-cpp/include/godot_cpp/core/object.hpp:
+
+/usr/include/x86_64-linux-gnu/bits/xopen_lim.h:
+
+extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h:
+
+extern/yaml-cpp/include/yaml-cpp/node/detail/node.h:
+
+/usr/include/c++/14/backward/auto_ptr.h:
+
+extern/godot-cpp/include/godot_cpp/variant/color.hpp:
+
+/usr/include/c++/14/bits/range_access.h:
+
+src/RegisterExtension.cpp:
+
+extern/yaml-cpp/include/yaml-cpp/emittermanip.h:
+
+/usr/include/c++/14/bits/stream_iterator.h:
+
+/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
+
+extern/godot-cpp/include/godot_cpp/core/type_info.hpp:
+
+extern/yaml-cpp/include/yaml-cpp/node/type.h:
+
+/usr/include/c++/14/bits/fs_ops.h:
+
+extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp:
+
+/usr/include/c++/14/bits/chrono.h:
+
+/usr/include/c++/14/bit:
+
+/usr/include/strings.h:
+
+extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp:
+
+/usr/include/c++/14/memory:
+
+/usr/include/c++/14/bits/stl_function.h:
+
+/usr/include/c++/14/bits/gslice.h:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp:
+
+/usr/include/c++/14/bits/algorithmfwd.h:
+
+/usr/include/c++/14/bits/istream.tcc:
+
+/usr/include/features-time64.h:
+
+extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp:
+
+/usr/include/c++/14/bits/locale_conv.h:
+
+/usr/include/c++/14/iosfwd:
+
+extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp:
+
+/usr/include/c++/14/codecvt:
+
+extern/godot-cpp/include/godot_cpp/variant/plane.hpp:
+
+/usr/include/x86_64-linux-gnu/asm/errno.h:
+
+/usr/include/c++/14/bits/cxxabi_forced.h:
+
+/usr/include/c++/14/bits/cxxabi_init_exception.h:
+
+/usr/include/x86_64-linux-gnu/bits/uio_lim.h:
+
+/usr/include/c++/14/bits/valarray_array.h:
+
+/usr/include/c++/14/bits/valarray_before.h:
+
+/usr/include/c++/14/bits/enable_special_members.h:
+
+/usr/include/c++/14/bits/erase_if.h:
+
+/usr/include/c++/14/bits/fs_dir.h:
+
+/usr/include/c++/14/bits/exception.h:
+
+/usr/include/c++/14/cctype:
+
+/usr/include/x86_64-linux-gnu/bits/wctype-wchar.h:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp:
+
+/usr/include/c++/14/bits/exception_defines.h:
+
+extern/godot-cpp/include/godot_cpp/core/class_db.hpp:
+
+/usr/include/c++/14/bits/fs_fwd.h:
+
+extern/godot-cpp/gen/include/godot_cpp/classes/input_event_key.hpp:
+
+/usr/include/c++/14/bits/fs_path.h:
+
+/usr/include/c++/14/set:
+
+/usr/include/c++/14/bits/functexcept.h:
+
+/usr/include/c++/14/bits/hashtable_policy.h:
+
+/usr/include/c++/14/bits/gslice_array.h:
+
+/usr/include/c++/14/bits/indirect_array.h:
+
+/usr/include/x86_64-linux-gnu/bits/posix2_lim.h:
+
+/usr/include/c++/14/bits/ios_base.h:
+
+/usr/include/c++/14/bits/list.tcc:
+
+/usr/include/c++/14/bits/locale_classes.h:
+
+/usr/include/c++/14/bits/basic_string.h:
+
+/usr/include/c++/14/bits/locale_facets.h:
+
+/usr/include/c++/14/bits/streambuf.tcc:
+
+/usr/include/c++/14/ios:
+
+/usr/include/c++/14/bits/locale_facets_nonio.h:
+
+/usr/include/c++/14/bits/ptr_traits.h:
+
+extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp:
+
+/usr/include/c++/14/bits/locale_facets_nonio.tcc:
+
+extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp:
+
+/usr/include/c++/14/bits/localefwd.h:
+
+/usr/include/c++/14/bits/mask_array.h:
+
+/usr/include/c++/14/ext/alloc_traits.h:
+
+extern/godot-cpp/include/godot_cpp/core/math.hpp:
+
+/usr/include/c++/14/bits/memory_resource.h:
+
+/usr/include/c++/14/bits/memoryfwd.h:
+
+/usr/include/c++/14/bits/nested_exception.h:
+
+/usr/include/features.h:
+
+/usr/include/c++/14/bits/node_handle.h:
+
+extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp:
+
+/usr/include/c++/14/bits/quoted_string.h:
+
+/usr/include/c++/14/bits/requires_hosted.h:
+
+/usr/include/c++/14/iostream:
+
+/usr/include/c++/14/bits/shared_ptr.h:
+
+/usr/include/c++/14/bits/shared_ptr_atomic.h:
+
+/usr/include/c++/14/tr1/beta_function.tcc:
+
+/usr/include/c++/14/bits/shared_ptr_base.h:
+
+/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
+
+/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:
+
+/usr/include/c++/14/bits/uniform_int_dist.h:
+
+/usr/include/c++/14/bits/std_abs.h:
+
+/usr/include/c++/14/sstream:
+
+/usr/include/c++/14/cmath:
+
+/usr/include/c++/14/bits/stl_algo.h:
+
+/usr/include/c++/14/bits/new_allocator.h:
+
+/usr/include/c++/14/bits/stl_bvector.h:
+
+/usr/include/c++/14/bits/basic_string.tcc:
+
+/usr/include/c++/14/bits/stl_vector.h:
+
+extern/godot-cpp/gen/include/godot_cpp/classes/input_event_from_window.hpp:
+
+extern/godot-cpp/include/godot_cpp/variant/projection.hpp:
+
+/usr/include/c++/14/bits/stl_heap.h:
+
+src/CoreEnvironment.cpp:
+
+/usr/include/c++/14/bits/unique_ptr.h:
+
+/usr/include/c++/14/iterator:
+
+/usr/include/c++/14/bits/stl_iterator_base_funcs.h:
+
+/usr/include/c++/14/ctime:
+
+/usr/include/c++/14/ext/numeric_traits.h:
+
+/usr/include/c++/14/bits/stl_iterator_base_types.h:
+
+/usr/include/c++/14/bits/stl_list.h:
+
+/usr/include/c++/14/bits/stl_map.h:
+
+/usr/include/c++/14/bits/stl_multiset.h:
+
+/usr/include/c++/14/bits/ostream_insert.h:
+
+/usr/include/c++/14/bits/stl_pair.h:
+
+extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp:
+
+/usr/include/c++/14/bits/stl_raw_storage_iter.h:
+
+/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
+
+/usr/include/c++/14/bits/stl_relops.h:
+
+/usr/include/c++/14/bits/sstream.tcc:
+
+/usr/include/c++/14/bits/stl_set.h:
+
+/usr/include/c++/14/bits/stl_tempbuf.h:
+
+extern/godot-cpp/gen/include/godot_cpp/classes/engine.hpp:
+
+/usr/include/c++/14/bits/stl_tree.h:
+
+/usr/include/c++/14/bits/streambuf_iterator.h:
+
+/usr/include/c++/14/bits/string_view.tcc:
+
+/usr/include/x86_64-linux-gnu/bits/dl_find_object.h:
+
+/usr/include/c++/14/bits/stringfwd.h:
+
+/usr/include/c++/14/bits/uses_allocator.h:
+
+/usr/include/c++/14/bits/uses_allocator_args.h:
+
+/usr/include/c++/14/bits/valarray_after.h:
+
+/usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h:
+
+/usr/include/c++/14/bits/vector.tcc:
+
+/usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h:
+
+/usr/include/c++/14/cerrno:
+
+/usr/include/c++/14/bits/slice_array.h:
+
+/usr/include/c++/14/concepts:
+
+/usr/include/c++/14/cstddef:
+
+/usr/include/c++/14/cstdint:
+
+/usr/include/c++/14/bits/utility.h:
+
+/usr/include/c++/14/cstdio:
+
+/usr/include/c++/14/cstdlib:
+
+/usr/include/c++/14/tr1/hypergeometric.tcc:
+
+/usr/include/c++/14/debug/debug.h:
+
+/usr/include/x86_64-linux-gnu/bits/wordsize.h:
+
+/usr/include/c++/14/atomic:
+
+/usr/include/c++/14/exception:
+
+/usr/include/c++/14/bits/concept_check.h:
+
+/usr/include/c++/14/bits/ostream.tcc:
+
+/usr/include/c++/14/bits/align.h:
+
+/usr/include/c++/14/ext/aligned_buffer.h:
+
+/usr/include/c++/14/ext/concurrence.h:
+
+/usr/include/c++/14/ext/string_conversions.h:
+
+/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:
+
+/usr/include/c++/14/bits/postypes.h:
+
+/usr/include/c++/14/initializer_list:
+
+/usr/include/c++/14/bits/functional_hash.h:
+
+/usr/include/c++/14/limits:
+
+/usr/include/c++/14/iomanip:
+
+/usr/include/c++/14/bits/char_traits.h:
+
+extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h:
+
+/usr/include/c++/14/list:
+
+/usr/include/x86_64-linux-gnu/bits/stdlib-float.h:
+
+/usr/include/c++/14/locale:
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/compiler_depend.ts b/gdlibretro/CMakeFiles/LibRetroHost.dir/compiler_depend.ts
new file mode 100644
index 0000000..5755530
--- /dev/null
+++ b/gdlibretro/CMakeFiles/LibRetroHost.dir/compiler_depend.ts
@@ -0,0 +1,2 @@
+# CMAKE generated file: DO NOT EDIT!
+# Timestamp file for compiler generated dependencies management for LibRetroHost.
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/depend.make b/gdlibretro/CMakeFiles/LibRetroHost.dir/depend.make
new file mode 100644
index 0000000..b6489a2
--- /dev/null
+++ b/gdlibretro/CMakeFiles/LibRetroHost.dir/depend.make
@@ -0,0 +1,2 @@
+# Empty dependencies file for LibRetroHost.
+# This may be replaced when dependencies are built.
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/flags.make b/gdlibretro/CMakeFiles/LibRetroHost.dir/flags.make
new file mode 100644
index 0000000..5a4aed2
--- /dev/null
+++ b/gdlibretro/CMakeFiles/LibRetroHost.dir/flags.make
@@ -0,0 +1,10 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.30
+
+# compile CXX with /usr/bin/c++
+CXX_DEFINES = -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -DLibRetroHost_EXPORTS -DYAML_CPP_STATIC_DEFINE
+
+CXX_INCLUDES = -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/gen -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/src -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension
+
+CXX_FLAGS = -DLINUX -g -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -Wall -Wcast-align -Wctor-dtor-privacy -Wextra -Wformat=2 -Wnon-virtual-dtor -Wnull-dereference -Woverloaded-virtual -Wpedantic -Wshadow -Wunused -Wwrite-strings -Wno-unused-parameter -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wlogical-op -Werror
+
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/link.txt b/gdlibretro/CMakeFiles/LibRetroHost.dir/link.txt
new file mode 100644
index 0000000..5690754
--- /dev/null
+++ b/gdlibretro/CMakeFiles/LibRetroHost.dir/link.txt
@@ -0,0 +1 @@
+/usr/bin/c++ -fPIC -DLINUX -g -shared -Wl,-soname,libLibRetroHost-d.so -o LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o CMakeFiles/LibRetroHost.dir/src/Input.cpp.o CMakeFiles/LibRetroHost.dir/src/Video.cpp.o CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o -ldl extern/godot-cpp/bin/libgodot-cpp.linux.debug.64.a extern/yaml-cpp/libyaml-cppd.a
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/progress.make b/gdlibretro/CMakeFiles/LibRetroHost.dir/progress.make
new file mode 100644
index 0000000..c8e8c8d
--- /dev/null
+++ b/gdlibretro/CMakeFiles/LibRetroHost.dir/progress.make
@@ -0,0 +1,10 @@
+CMAKE_PROGRESS_1 =
+CMAKE_PROGRESS_2 =
+CMAKE_PROGRESS_3 =
+CMAKE_PROGRESS_4 =
+CMAKE_PROGRESS_5 =
+CMAKE_PROGRESS_6 =
+CMAKE_PROGRESS_7 =
+CMAKE_PROGRESS_8 =
+CMAKE_PROGRESS_9 =
+
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o
new file mode 100644
index 0000000..0ae40a7
Binary files /dev/null and b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o differ
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o.d b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o.d
new file mode 100644
index 0000000..670d885
--- /dev/null
+++ b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o.d
@@ -0,0 +1,358 @@
+CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o: \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Audio.cpp \
+ /usr/include/stdc-predef.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.hpp \
+ /usr/include/c++/14/filesystem \
+ /usr/include/c++/14/bits/requires_hosted.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h \
+ /usr/include/features.h /usr/include/features-time64.h \
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h \
+ /usr/include/x86_64-linux-gnu/bits/timesize.h \
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h \
+ /usr/include/x86_64-linux-gnu/bits/long-double.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h \
+ /usr/include/c++/14/pstl/pstl_config.h \
+ /usr/include/c++/14/bits/version.h /usr/include/c++/14/bits/fs_fwd.h \
+ /usr/include/c++/14/system_error \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h \
+ /usr/include/c++/14/cerrno /usr/include/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
+ /usr/include/x86_64-linux-gnu/asm/errno.h \
+ /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h \
+ /usr/include/c++/14/iosfwd /usr/include/c++/14/bits/stringfwd.h \
+ /usr/include/c++/14/bits/memoryfwd.h /usr/include/c++/14/bits/postypes.h \
+ /usr/include/c++/14/cwchar /usr/include/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
+ /usr/include/x86_64-linux-gnu/bits/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
+ /usr/include/c++/14/stdexcept /usr/include/c++/14/exception \
+ /usr/include/c++/14/bits/exception.h \
+ /usr/include/c++/14/bits/exception_ptr.h \
+ /usr/include/c++/14/bits/exception_defines.h \
+ /usr/include/c++/14/bits/cxxabi_init_exception.h \
+ /usr/include/c++/14/typeinfo /usr/include/c++/14/bits/hash_bytes.h \
+ /usr/include/c++/14/new /usr/include/c++/14/bits/move.h \
+ /usr/include/c++/14/type_traits \
+ /usr/include/c++/14/bits/nested_exception.h /usr/include/c++/14/string \
+ /usr/include/c++/14/bits/char_traits.h \
+ /usr/include/c++/14/bits/allocator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h \
+ /usr/include/c++/14/bits/new_allocator.h \
+ /usr/include/c++/14/bits/functexcept.h \
+ /usr/include/c++/14/bits/cpp_type_traits.h \
+ /usr/include/c++/14/bits/localefwd.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h \
+ /usr/include/c++/14/clocale /usr/include/locale.h \
+ /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/14/cctype \
+ /usr/include/ctype.h /usr/include/x86_64-linux-gnu/bits/types.h \
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h \
+ /usr/include/x86_64-linux-gnu/bits/time64.h \
+ /usr/include/x86_64-linux-gnu/bits/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/endianness.h \
+ /usr/include/c++/14/bits/ostream_insert.h \
+ /usr/include/c++/14/bits/cxxabi_forced.h \
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h \
+ /usr/include/c++/14/bits/concept_check.h \
+ /usr/include/c++/14/debug/assertions.h \
+ /usr/include/c++/14/bits/stl_iterator_base_types.h \
+ /usr/include/c++/14/bits/stl_iterator.h \
+ /usr/include/c++/14/ext/type_traits.h \
+ /usr/include/c++/14/bits/ptr_traits.h \
+ /usr/include/c++/14/bits/stl_function.h \
+ /usr/include/c++/14/backward/binders.h \
+ /usr/include/c++/14/ext/numeric_traits.h \
+ /usr/include/c++/14/bits/stl_algobase.h \
+ /usr/include/c++/14/bits/stl_pair.h /usr/include/c++/14/bits/utility.h \
+ /usr/include/c++/14/debug/debug.h \
+ /usr/include/c++/14/bits/predefined_ops.h /usr/include/c++/14/bit \
+ /usr/include/c++/14/concepts /usr/include/c++/14/bits/refwrap.h \
+ /usr/include/c++/14/bits/invoke.h \
+ /usr/include/c++/14/bits/range_access.h \
+ /usr/include/c++/14/initializer_list \
+ /usr/include/c++/14/bits/basic_string.h \
+ /usr/include/c++/14/ext/alloc_traits.h \
+ /usr/include/c++/14/bits/alloc_traits.h \
+ /usr/include/c++/14/bits/stl_construct.h /usr/include/c++/14/string_view \
+ /usr/include/c++/14/bits/functional_hash.h \
+ /usr/include/c++/14/bits/string_view.tcc \
+ /usr/include/c++/14/ext/string_conversions.h /usr/include/c++/14/cstdlib \
+ /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
+ /usr/include/x86_64-linux-gnu/sys/types.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h \
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
+ /usr/include/x86_64-linux-gnu/sys/select.h \
+ /usr/include/x86_64-linux-gnu/bits/select.h \
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
+ /usr/include/c++/14/bits/std_abs.h /usr/include/c++/14/cstdio \
+ /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
+ /usr/include/c++/14/bits/charconv.h \
+ /usr/include/c++/14/bits/basic_string.tcc \
+ /usr/include/c++/14/bits/memory_resource.h /usr/include/c++/14/cstddef \
+ /usr/include/c++/14/bits/uses_allocator.h \
+ /usr/include/c++/14/bits/uses_allocator_args.h /usr/include/c++/14/tuple \
+ /usr/include/c++/14/cstdint \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h /usr/include/stdint.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h \
+ /usr/include/c++/14/bits/chrono.h /usr/include/c++/14/ratio \
+ /usr/include/c++/14/limits /usr/include/c++/14/ctime /usr/include/time.h \
+ /usr/include/x86_64-linux-gnu/bits/time.h \
+ /usr/include/x86_64-linux-gnu/bits/timex.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
+ /usr/include/c++/14/bits/parse_numbers.h \
+ /usr/include/c++/14/bits/fs_path.h /usr/include/c++/14/locale \
+ /usr/include/c++/14/bits/locale_classes.h \
+ /usr/include/c++/14/ext/atomicity.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h \
+ /usr/include/pthread.h /usr/include/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h \
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h \
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h \
+ /usr/include/c++/14/bits/locale_classes.tcc \
+ /usr/include/c++/14/bits/locale_facets.h /usr/include/c++/14/cwctype \
+ /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h \
+ /usr/include/c++/14/bits/ios_base.h /usr/include/c++/14/streambuf \
+ /usr/include/c++/14/bits/streambuf.tcc \
+ /usr/include/c++/14/bits/streambuf_iterator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h \
+ /usr/include/c++/14/bits/locale_facets.tcc \
+ /usr/include/c++/14/bits/locale_facets_nonio.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h \
+ /usr/include/libintl.h /usr/include/c++/14/bits/codecvt.h \
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc \
+ /usr/include/c++/14/bits/locale_conv.h /usr/include/c++/14/iomanip \
+ /usr/include/c++/14/bits/quoted_string.h /usr/include/c++/14/sstream \
+ /usr/include/c++/14/istream /usr/include/c++/14/ios \
+ /usr/include/c++/14/bits/basic_ios.h \
+ /usr/include/c++/14/bits/basic_ios.tcc /usr/include/c++/14/ostream \
+ /usr/include/c++/14/bits/ostream.tcc \
+ /usr/include/c++/14/bits/istream.tcc \
+ /usr/include/c++/14/bits/sstream.tcc /usr/include/c++/14/codecvt \
+ /usr/include/c++/14/ext/concurrence.h \
+ /usr/include/c++/14/bits/shared_ptr.h \
+ /usr/include/c++/14/bits/shared_ptr_base.h \
+ /usr/include/c++/14/bits/allocated_ptr.h \
+ /usr/include/c++/14/bits/unique_ptr.h \
+ /usr/include/c++/14/ext/aligned_buffer.h \
+ /usr/include/c++/14/bits/fs_dir.h /usr/include/c++/14/bits/fs_ops.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/color.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/math.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/defs.hpp \
+ /usr/include/c++/14/cstring /usr/include/string.h /usr/include/strings.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension/gdextension_interface.h \
+ /usr/include/c++/14/cmath /usr/include/math.h \
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h \
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h \
+ /usr/include/c++/14/bits/specfun.h /usr/include/c++/14/tr1/gamma.tcc \
+ /usr/include/c++/14/tr1/special_function_util.h \
+ /usr/include/c++/14/tr1/bessel_function.tcc \
+ /usr/include/c++/14/tr1/beta_function.tcc \
+ /usr/include/c++/14/tr1/ell_integral.tcc \
+ /usr/include/c++/14/tr1/exp_integral.tcc \
+ /usr/include/c++/14/tr1/hypergeometric.tcc \
+ /usr/include/c++/14/tr1/legendre_function.tcc \
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc \
+ /usr/include/c++/14/tr1/poly_hermite.tcc \
+ /usr/include/c++/14/tr1/poly_laguerre.tcc \
+ /usr/include/c++/14/tr1/riemann_zeta.tcc \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/error_macros.hpp \
+ /usr/include/c++/14/atomic /usr/include/c++/14/bits/atomic_base.h \
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/ref.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_string.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/memory.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/godot.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/variant.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/plane.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/aabb.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/basis.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/projection.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp \
+ /usr/include/c++/14/array /usr/include/c++/14/compare \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/property_info.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/list.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/object.hpp \
+ /usr/include/c++/14/vector /usr/include/c++/14/bits/stl_uninitialized.h \
+ /usr/include/c++/14/bits/stl_vector.h \
+ /usr/include/c++/14/bits/stl_bvector.h \
+ /usr/include/c++/14/bits/vector.tcc \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/class_db.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_bind.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/binder_common.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/type_info.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp \
+ /usr/include/c++/14/iostream \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp \
+ /usr/include/c++/14/list /usr/include/c++/14/bits/stl_list.h \
+ /usr/include/c++/14/bits/list.tcc /usr/include/c++/14/set \
+ /usr/include/c++/14/bits/stl_tree.h \
+ /usr/include/c++/14/bits/node_handle.h \
+ /usr/include/c++/14/bits/stl_set.h \
+ /usr/include/c++/14/bits/stl_multiset.h \
+ /usr/include/c++/14/bits/erase_if.h /usr/include/c++/14/unordered_map \
+ /usr/include/c++/14/bits/unordered_map.h \
+ /usr/include/c++/14/bits/hashtable.h \
+ /usr/include/c++/14/bits/hashtable_policy.h \
+ /usr/include/c++/14/bits/enable_special_members.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include/libretro.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h \
+ /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h \
+ /usr/include/linux/limits.h \
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/yaml.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/parser.h \
+ /usr/include/c++/14/memory /usr/include/c++/14/bits/stl_tempbuf.h \
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h \
+ /usr/include/c++/14/bits/align.h \
+ /usr/include/c++/14/bits/shared_ptr_atomic.h \
+ /usr/include/c++/14/backward/auto_ptr.h \
+ /usr/include/c++/14/pstl/glue_memory_defs.h \
+ /usr/include/c++/14/pstl/execution_defs.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/dll.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitter.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/binary.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterdef.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emittermanip.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/null.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterstyle.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/stlemitter.h \
+ /usr/include/c++/14/map /usr/include/c++/14/bits/stl_map.h \
+ /usr/include/c++/14/bits/stl_multimap.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/exceptions.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/mark.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/noexcept.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/traits.h \
+ /usr/include/c++/14/utility /usr/include/c++/14/bits/stl_relops.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/node.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/ptr.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/type.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/impl.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h \
+ /usr/include/c++/14/iterator /usr/include/c++/14/bits/stream_iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/convert.h \
+ /usr/include/c++/14/valarray /usr/include/c++/14/algorithm \
+ /usr/include/c++/14/bits/stl_algo.h \
+ /usr/include/c++/14/bits/algorithmfwd.h \
+ /usr/include/c++/14/bits/stl_heap.h \
+ /usr/include/c++/14/bits/uniform_int_dist.h \
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h \
+ /usr/include/c++/14/bits/valarray_array.h \
+ /usr/include/c++/14/bits/valarray_array.tcc \
+ /usr/include/c++/14/bits/valarray_before.h \
+ /usr/include/c++/14/bits/slice_array.h \
+ /usr/include/c++/14/bits/valarray_after.h \
+ /usr/include/c++/14/bits/gslice.h \
+ /usr/include/c++/14/bits/gslice_array.h \
+ /usr/include/c++/14/bits/mask_array.h \
+ /usr/include/c++/14/bits/indirect_array.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/parse.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/emit.h \
+ /usr/include/dlfcn.h /usr/include/x86_64-linux-gnu/bits/dlfcn.h \
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o
new file mode 100644
index 0000000..146fcfa
Binary files /dev/null and b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o differ
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o.d b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o.d
new file mode 100644
index 0000000..0d37cd7
--- /dev/null
+++ b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o.d
@@ -0,0 +1,360 @@
+CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o: \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CoreEnvironment.cpp \
+ /usr/include/stdc-predef.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.hpp \
+ /usr/include/c++/14/filesystem \
+ /usr/include/c++/14/bits/requires_hosted.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h \
+ /usr/include/features.h /usr/include/features-time64.h \
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h \
+ /usr/include/x86_64-linux-gnu/bits/timesize.h \
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h \
+ /usr/include/x86_64-linux-gnu/bits/long-double.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h \
+ /usr/include/c++/14/pstl/pstl_config.h \
+ /usr/include/c++/14/bits/version.h /usr/include/c++/14/bits/fs_fwd.h \
+ /usr/include/c++/14/system_error \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h \
+ /usr/include/c++/14/cerrno /usr/include/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
+ /usr/include/x86_64-linux-gnu/asm/errno.h \
+ /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h \
+ /usr/include/c++/14/iosfwd /usr/include/c++/14/bits/stringfwd.h \
+ /usr/include/c++/14/bits/memoryfwd.h /usr/include/c++/14/bits/postypes.h \
+ /usr/include/c++/14/cwchar /usr/include/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
+ /usr/include/x86_64-linux-gnu/bits/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
+ /usr/include/c++/14/stdexcept /usr/include/c++/14/exception \
+ /usr/include/c++/14/bits/exception.h \
+ /usr/include/c++/14/bits/exception_ptr.h \
+ /usr/include/c++/14/bits/exception_defines.h \
+ /usr/include/c++/14/bits/cxxabi_init_exception.h \
+ /usr/include/c++/14/typeinfo /usr/include/c++/14/bits/hash_bytes.h \
+ /usr/include/c++/14/new /usr/include/c++/14/bits/move.h \
+ /usr/include/c++/14/type_traits \
+ /usr/include/c++/14/bits/nested_exception.h /usr/include/c++/14/string \
+ /usr/include/c++/14/bits/char_traits.h \
+ /usr/include/c++/14/bits/allocator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h \
+ /usr/include/c++/14/bits/new_allocator.h \
+ /usr/include/c++/14/bits/functexcept.h \
+ /usr/include/c++/14/bits/cpp_type_traits.h \
+ /usr/include/c++/14/bits/localefwd.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h \
+ /usr/include/c++/14/clocale /usr/include/locale.h \
+ /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/14/cctype \
+ /usr/include/ctype.h /usr/include/x86_64-linux-gnu/bits/types.h \
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h \
+ /usr/include/x86_64-linux-gnu/bits/time64.h \
+ /usr/include/x86_64-linux-gnu/bits/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/endianness.h \
+ /usr/include/c++/14/bits/ostream_insert.h \
+ /usr/include/c++/14/bits/cxxabi_forced.h \
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h \
+ /usr/include/c++/14/bits/concept_check.h \
+ /usr/include/c++/14/debug/assertions.h \
+ /usr/include/c++/14/bits/stl_iterator_base_types.h \
+ /usr/include/c++/14/bits/stl_iterator.h \
+ /usr/include/c++/14/ext/type_traits.h \
+ /usr/include/c++/14/bits/ptr_traits.h \
+ /usr/include/c++/14/bits/stl_function.h \
+ /usr/include/c++/14/backward/binders.h \
+ /usr/include/c++/14/ext/numeric_traits.h \
+ /usr/include/c++/14/bits/stl_algobase.h \
+ /usr/include/c++/14/bits/stl_pair.h /usr/include/c++/14/bits/utility.h \
+ /usr/include/c++/14/debug/debug.h \
+ /usr/include/c++/14/bits/predefined_ops.h /usr/include/c++/14/bit \
+ /usr/include/c++/14/concepts /usr/include/c++/14/bits/refwrap.h \
+ /usr/include/c++/14/bits/invoke.h \
+ /usr/include/c++/14/bits/range_access.h \
+ /usr/include/c++/14/initializer_list \
+ /usr/include/c++/14/bits/basic_string.h \
+ /usr/include/c++/14/ext/alloc_traits.h \
+ /usr/include/c++/14/bits/alloc_traits.h \
+ /usr/include/c++/14/bits/stl_construct.h /usr/include/c++/14/string_view \
+ /usr/include/c++/14/bits/functional_hash.h \
+ /usr/include/c++/14/bits/string_view.tcc \
+ /usr/include/c++/14/ext/string_conversions.h /usr/include/c++/14/cstdlib \
+ /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
+ /usr/include/x86_64-linux-gnu/sys/types.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h \
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
+ /usr/include/x86_64-linux-gnu/sys/select.h \
+ /usr/include/x86_64-linux-gnu/bits/select.h \
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
+ /usr/include/c++/14/bits/std_abs.h /usr/include/c++/14/cstdio \
+ /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
+ /usr/include/c++/14/bits/charconv.h \
+ /usr/include/c++/14/bits/basic_string.tcc \
+ /usr/include/c++/14/bits/memory_resource.h /usr/include/c++/14/cstddef \
+ /usr/include/c++/14/bits/uses_allocator.h \
+ /usr/include/c++/14/bits/uses_allocator_args.h /usr/include/c++/14/tuple \
+ /usr/include/c++/14/cstdint \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h /usr/include/stdint.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h \
+ /usr/include/c++/14/bits/chrono.h /usr/include/c++/14/ratio \
+ /usr/include/c++/14/limits /usr/include/c++/14/ctime /usr/include/time.h \
+ /usr/include/x86_64-linux-gnu/bits/time.h \
+ /usr/include/x86_64-linux-gnu/bits/timex.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
+ /usr/include/c++/14/bits/parse_numbers.h \
+ /usr/include/c++/14/bits/fs_path.h /usr/include/c++/14/locale \
+ /usr/include/c++/14/bits/locale_classes.h \
+ /usr/include/c++/14/ext/atomicity.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h \
+ /usr/include/pthread.h /usr/include/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h \
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h \
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h \
+ /usr/include/c++/14/bits/locale_classes.tcc \
+ /usr/include/c++/14/bits/locale_facets.h /usr/include/c++/14/cwctype \
+ /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h \
+ /usr/include/c++/14/bits/ios_base.h /usr/include/c++/14/streambuf \
+ /usr/include/c++/14/bits/streambuf.tcc \
+ /usr/include/c++/14/bits/streambuf_iterator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h \
+ /usr/include/c++/14/bits/locale_facets.tcc \
+ /usr/include/c++/14/bits/locale_facets_nonio.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h \
+ /usr/include/libintl.h /usr/include/c++/14/bits/codecvt.h \
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc \
+ /usr/include/c++/14/bits/locale_conv.h /usr/include/c++/14/iomanip \
+ /usr/include/c++/14/bits/quoted_string.h /usr/include/c++/14/sstream \
+ /usr/include/c++/14/istream /usr/include/c++/14/ios \
+ /usr/include/c++/14/bits/basic_ios.h \
+ /usr/include/c++/14/bits/basic_ios.tcc /usr/include/c++/14/ostream \
+ /usr/include/c++/14/bits/ostream.tcc \
+ /usr/include/c++/14/bits/istream.tcc \
+ /usr/include/c++/14/bits/sstream.tcc /usr/include/c++/14/codecvt \
+ /usr/include/c++/14/ext/concurrence.h \
+ /usr/include/c++/14/bits/shared_ptr.h \
+ /usr/include/c++/14/bits/shared_ptr_base.h \
+ /usr/include/c++/14/bits/allocated_ptr.h \
+ /usr/include/c++/14/bits/unique_ptr.h \
+ /usr/include/c++/14/ext/aligned_buffer.h \
+ /usr/include/c++/14/bits/fs_dir.h /usr/include/c++/14/bits/fs_ops.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/color.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/math.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/defs.hpp \
+ /usr/include/c++/14/cstring /usr/include/string.h /usr/include/strings.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension/gdextension_interface.h \
+ /usr/include/c++/14/cmath /usr/include/math.h \
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h \
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h \
+ /usr/include/c++/14/bits/specfun.h /usr/include/c++/14/tr1/gamma.tcc \
+ /usr/include/c++/14/tr1/special_function_util.h \
+ /usr/include/c++/14/tr1/bessel_function.tcc \
+ /usr/include/c++/14/tr1/beta_function.tcc \
+ /usr/include/c++/14/tr1/ell_integral.tcc \
+ /usr/include/c++/14/tr1/exp_integral.tcc \
+ /usr/include/c++/14/tr1/hypergeometric.tcc \
+ /usr/include/c++/14/tr1/legendre_function.tcc \
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc \
+ /usr/include/c++/14/tr1/poly_hermite.tcc \
+ /usr/include/c++/14/tr1/poly_laguerre.tcc \
+ /usr/include/c++/14/tr1/riemann_zeta.tcc \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/error_macros.hpp \
+ /usr/include/c++/14/atomic /usr/include/c++/14/bits/atomic_base.h \
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/ref.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_string.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/memory.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/godot.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/variant.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/plane.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/aabb.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/basis.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/projection.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp \
+ /usr/include/c++/14/array /usr/include/c++/14/compare \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/property_info.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/list.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/object.hpp \
+ /usr/include/c++/14/vector /usr/include/c++/14/bits/stl_uninitialized.h \
+ /usr/include/c++/14/bits/stl_vector.h \
+ /usr/include/c++/14/bits/stl_bvector.h \
+ /usr/include/c++/14/bits/vector.tcc \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/class_db.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_bind.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/binder_common.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/type_info.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp \
+ /usr/include/c++/14/iostream \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp \
+ /usr/include/c++/14/list /usr/include/c++/14/bits/stl_list.h \
+ /usr/include/c++/14/bits/list.tcc /usr/include/c++/14/set \
+ /usr/include/c++/14/bits/stl_tree.h \
+ /usr/include/c++/14/bits/node_handle.h \
+ /usr/include/c++/14/bits/stl_set.h \
+ /usr/include/c++/14/bits/stl_multiset.h \
+ /usr/include/c++/14/bits/erase_if.h /usr/include/c++/14/unordered_map \
+ /usr/include/c++/14/bits/unordered_map.h \
+ /usr/include/c++/14/bits/hashtable.h \
+ /usr/include/c++/14/bits/hashtable_policy.h \
+ /usr/include/c++/14/bits/enable_special_members.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include/libretro.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h \
+ /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h \
+ /usr/include/linux/limits.h \
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/yaml.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/parser.h \
+ /usr/include/c++/14/memory /usr/include/c++/14/bits/stl_tempbuf.h \
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h \
+ /usr/include/c++/14/bits/align.h \
+ /usr/include/c++/14/bits/shared_ptr_atomic.h \
+ /usr/include/c++/14/backward/auto_ptr.h \
+ /usr/include/c++/14/pstl/glue_memory_defs.h \
+ /usr/include/c++/14/pstl/execution_defs.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/dll.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitter.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/binary.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterdef.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emittermanip.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/null.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterstyle.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/stlemitter.h \
+ /usr/include/c++/14/map /usr/include/c++/14/bits/stl_map.h \
+ /usr/include/c++/14/bits/stl_multimap.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/exceptions.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/mark.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/noexcept.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/traits.h \
+ /usr/include/c++/14/utility /usr/include/c++/14/bits/stl_relops.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/node.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/ptr.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/type.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/impl.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h \
+ /usr/include/c++/14/iterator /usr/include/c++/14/bits/stream_iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/convert.h \
+ /usr/include/c++/14/valarray /usr/include/c++/14/algorithm \
+ /usr/include/c++/14/bits/stl_algo.h \
+ /usr/include/c++/14/bits/algorithmfwd.h \
+ /usr/include/c++/14/bits/stl_heap.h \
+ /usr/include/c++/14/bits/uniform_int_dist.h \
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h \
+ /usr/include/c++/14/bits/valarray_array.h \
+ /usr/include/c++/14/bits/valarray_array.tcc \
+ /usr/include/c++/14/bits/valarray_before.h \
+ /usr/include/c++/14/bits/slice_array.h \
+ /usr/include/c++/14/bits/valarray_after.h \
+ /usr/include/c++/14/bits/gslice.h \
+ /usr/include/c++/14/bits/gslice_array.h \
+ /usr/include/c++/14/bits/mask_array.h \
+ /usr/include/c++/14/bits/indirect_array.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/parse.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/emit.h \
+ /usr/include/dlfcn.h /usr/include/x86_64-linux-gnu/bits/dlfcn.h \
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/utility_functions.hpp \
+ /usr/include/c++/14/cstdarg
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o
new file mode 100644
index 0000000..5fa6009
Binary files /dev/null and b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o differ
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o.d b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o.d
new file mode 100644
index 0000000..59e4f3d
--- /dev/null
+++ b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o.d
@@ -0,0 +1,361 @@
+CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o: \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CoreVariables.cpp \
+ /usr/include/stdc-predef.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.hpp \
+ /usr/include/c++/14/filesystem \
+ /usr/include/c++/14/bits/requires_hosted.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h \
+ /usr/include/features.h /usr/include/features-time64.h \
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h \
+ /usr/include/x86_64-linux-gnu/bits/timesize.h \
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h \
+ /usr/include/x86_64-linux-gnu/bits/long-double.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h \
+ /usr/include/c++/14/pstl/pstl_config.h \
+ /usr/include/c++/14/bits/version.h /usr/include/c++/14/bits/fs_fwd.h \
+ /usr/include/c++/14/system_error \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h \
+ /usr/include/c++/14/cerrno /usr/include/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
+ /usr/include/x86_64-linux-gnu/asm/errno.h \
+ /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h \
+ /usr/include/c++/14/iosfwd /usr/include/c++/14/bits/stringfwd.h \
+ /usr/include/c++/14/bits/memoryfwd.h /usr/include/c++/14/bits/postypes.h \
+ /usr/include/c++/14/cwchar /usr/include/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
+ /usr/include/x86_64-linux-gnu/bits/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
+ /usr/include/c++/14/stdexcept /usr/include/c++/14/exception \
+ /usr/include/c++/14/bits/exception.h \
+ /usr/include/c++/14/bits/exception_ptr.h \
+ /usr/include/c++/14/bits/exception_defines.h \
+ /usr/include/c++/14/bits/cxxabi_init_exception.h \
+ /usr/include/c++/14/typeinfo /usr/include/c++/14/bits/hash_bytes.h \
+ /usr/include/c++/14/new /usr/include/c++/14/bits/move.h \
+ /usr/include/c++/14/type_traits \
+ /usr/include/c++/14/bits/nested_exception.h /usr/include/c++/14/string \
+ /usr/include/c++/14/bits/char_traits.h \
+ /usr/include/c++/14/bits/allocator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h \
+ /usr/include/c++/14/bits/new_allocator.h \
+ /usr/include/c++/14/bits/functexcept.h \
+ /usr/include/c++/14/bits/cpp_type_traits.h \
+ /usr/include/c++/14/bits/localefwd.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h \
+ /usr/include/c++/14/clocale /usr/include/locale.h \
+ /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/14/cctype \
+ /usr/include/ctype.h /usr/include/x86_64-linux-gnu/bits/types.h \
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h \
+ /usr/include/x86_64-linux-gnu/bits/time64.h \
+ /usr/include/x86_64-linux-gnu/bits/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/endianness.h \
+ /usr/include/c++/14/bits/ostream_insert.h \
+ /usr/include/c++/14/bits/cxxabi_forced.h \
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h \
+ /usr/include/c++/14/bits/concept_check.h \
+ /usr/include/c++/14/debug/assertions.h \
+ /usr/include/c++/14/bits/stl_iterator_base_types.h \
+ /usr/include/c++/14/bits/stl_iterator.h \
+ /usr/include/c++/14/ext/type_traits.h \
+ /usr/include/c++/14/bits/ptr_traits.h \
+ /usr/include/c++/14/bits/stl_function.h \
+ /usr/include/c++/14/backward/binders.h \
+ /usr/include/c++/14/ext/numeric_traits.h \
+ /usr/include/c++/14/bits/stl_algobase.h \
+ /usr/include/c++/14/bits/stl_pair.h /usr/include/c++/14/bits/utility.h \
+ /usr/include/c++/14/debug/debug.h \
+ /usr/include/c++/14/bits/predefined_ops.h /usr/include/c++/14/bit \
+ /usr/include/c++/14/concepts /usr/include/c++/14/bits/refwrap.h \
+ /usr/include/c++/14/bits/invoke.h \
+ /usr/include/c++/14/bits/range_access.h \
+ /usr/include/c++/14/initializer_list \
+ /usr/include/c++/14/bits/basic_string.h \
+ /usr/include/c++/14/ext/alloc_traits.h \
+ /usr/include/c++/14/bits/alloc_traits.h \
+ /usr/include/c++/14/bits/stl_construct.h /usr/include/c++/14/string_view \
+ /usr/include/c++/14/bits/functional_hash.h \
+ /usr/include/c++/14/bits/string_view.tcc \
+ /usr/include/c++/14/ext/string_conversions.h /usr/include/c++/14/cstdlib \
+ /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
+ /usr/include/x86_64-linux-gnu/sys/types.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h \
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
+ /usr/include/x86_64-linux-gnu/sys/select.h \
+ /usr/include/x86_64-linux-gnu/bits/select.h \
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
+ /usr/include/c++/14/bits/std_abs.h /usr/include/c++/14/cstdio \
+ /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
+ /usr/include/c++/14/bits/charconv.h \
+ /usr/include/c++/14/bits/basic_string.tcc \
+ /usr/include/c++/14/bits/memory_resource.h /usr/include/c++/14/cstddef \
+ /usr/include/c++/14/bits/uses_allocator.h \
+ /usr/include/c++/14/bits/uses_allocator_args.h /usr/include/c++/14/tuple \
+ /usr/include/c++/14/cstdint \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h /usr/include/stdint.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h \
+ /usr/include/c++/14/bits/chrono.h /usr/include/c++/14/ratio \
+ /usr/include/c++/14/limits /usr/include/c++/14/ctime /usr/include/time.h \
+ /usr/include/x86_64-linux-gnu/bits/time.h \
+ /usr/include/x86_64-linux-gnu/bits/timex.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
+ /usr/include/c++/14/bits/parse_numbers.h \
+ /usr/include/c++/14/bits/fs_path.h /usr/include/c++/14/locale \
+ /usr/include/c++/14/bits/locale_classes.h \
+ /usr/include/c++/14/ext/atomicity.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h \
+ /usr/include/pthread.h /usr/include/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h \
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h \
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h \
+ /usr/include/c++/14/bits/locale_classes.tcc \
+ /usr/include/c++/14/bits/locale_facets.h /usr/include/c++/14/cwctype \
+ /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h \
+ /usr/include/c++/14/bits/ios_base.h /usr/include/c++/14/streambuf \
+ /usr/include/c++/14/bits/streambuf.tcc \
+ /usr/include/c++/14/bits/streambuf_iterator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h \
+ /usr/include/c++/14/bits/locale_facets.tcc \
+ /usr/include/c++/14/bits/locale_facets_nonio.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h \
+ /usr/include/libintl.h /usr/include/c++/14/bits/codecvt.h \
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc \
+ /usr/include/c++/14/bits/locale_conv.h /usr/include/c++/14/iomanip \
+ /usr/include/c++/14/bits/quoted_string.h /usr/include/c++/14/sstream \
+ /usr/include/c++/14/istream /usr/include/c++/14/ios \
+ /usr/include/c++/14/bits/basic_ios.h \
+ /usr/include/c++/14/bits/basic_ios.tcc /usr/include/c++/14/ostream \
+ /usr/include/c++/14/bits/ostream.tcc \
+ /usr/include/c++/14/bits/istream.tcc \
+ /usr/include/c++/14/bits/sstream.tcc /usr/include/c++/14/codecvt \
+ /usr/include/c++/14/ext/concurrence.h \
+ /usr/include/c++/14/bits/shared_ptr.h \
+ /usr/include/c++/14/bits/shared_ptr_base.h \
+ /usr/include/c++/14/bits/allocated_ptr.h \
+ /usr/include/c++/14/bits/unique_ptr.h \
+ /usr/include/c++/14/ext/aligned_buffer.h \
+ /usr/include/c++/14/bits/fs_dir.h /usr/include/c++/14/bits/fs_ops.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/color.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/math.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/defs.hpp \
+ /usr/include/c++/14/cstring /usr/include/string.h /usr/include/strings.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension/gdextension_interface.h \
+ /usr/include/c++/14/cmath /usr/include/math.h \
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h \
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h \
+ /usr/include/c++/14/bits/specfun.h /usr/include/c++/14/tr1/gamma.tcc \
+ /usr/include/c++/14/tr1/special_function_util.h \
+ /usr/include/c++/14/tr1/bessel_function.tcc \
+ /usr/include/c++/14/tr1/beta_function.tcc \
+ /usr/include/c++/14/tr1/ell_integral.tcc \
+ /usr/include/c++/14/tr1/exp_integral.tcc \
+ /usr/include/c++/14/tr1/hypergeometric.tcc \
+ /usr/include/c++/14/tr1/legendre_function.tcc \
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc \
+ /usr/include/c++/14/tr1/poly_hermite.tcc \
+ /usr/include/c++/14/tr1/poly_laguerre.tcc \
+ /usr/include/c++/14/tr1/riemann_zeta.tcc \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/error_macros.hpp \
+ /usr/include/c++/14/atomic /usr/include/c++/14/bits/atomic_base.h \
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/ref.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_string.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/memory.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/godot.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/variant.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/plane.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/aabb.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/basis.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/projection.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp \
+ /usr/include/c++/14/array /usr/include/c++/14/compare \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/property_info.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/list.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/object.hpp \
+ /usr/include/c++/14/vector /usr/include/c++/14/bits/stl_uninitialized.h \
+ /usr/include/c++/14/bits/stl_vector.h \
+ /usr/include/c++/14/bits/stl_bvector.h \
+ /usr/include/c++/14/bits/vector.tcc \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/class_db.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_bind.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/binder_common.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/type_info.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp \
+ /usr/include/c++/14/iostream \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp \
+ /usr/include/c++/14/list /usr/include/c++/14/bits/stl_list.h \
+ /usr/include/c++/14/bits/list.tcc /usr/include/c++/14/set \
+ /usr/include/c++/14/bits/stl_tree.h \
+ /usr/include/c++/14/bits/node_handle.h \
+ /usr/include/c++/14/bits/stl_set.h \
+ /usr/include/c++/14/bits/stl_multiset.h \
+ /usr/include/c++/14/bits/erase_if.h /usr/include/c++/14/unordered_map \
+ /usr/include/c++/14/bits/unordered_map.h \
+ /usr/include/c++/14/bits/hashtable.h \
+ /usr/include/c++/14/bits/hashtable_policy.h \
+ /usr/include/c++/14/bits/enable_special_members.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include/libretro.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h \
+ /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h \
+ /usr/include/linux/limits.h \
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/yaml.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/parser.h \
+ /usr/include/c++/14/memory /usr/include/c++/14/bits/stl_tempbuf.h \
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h \
+ /usr/include/c++/14/bits/align.h \
+ /usr/include/c++/14/bits/shared_ptr_atomic.h \
+ /usr/include/c++/14/backward/auto_ptr.h \
+ /usr/include/c++/14/pstl/glue_memory_defs.h \
+ /usr/include/c++/14/pstl/execution_defs.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/dll.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitter.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/binary.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterdef.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emittermanip.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/null.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterstyle.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/stlemitter.h \
+ /usr/include/c++/14/map /usr/include/c++/14/bits/stl_map.h \
+ /usr/include/c++/14/bits/stl_multimap.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/exceptions.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/mark.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/noexcept.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/traits.h \
+ /usr/include/c++/14/utility /usr/include/c++/14/bits/stl_relops.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/node.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/ptr.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/type.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/impl.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h \
+ /usr/include/c++/14/iterator /usr/include/c++/14/bits/stream_iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/convert.h \
+ /usr/include/c++/14/valarray /usr/include/c++/14/algorithm \
+ /usr/include/c++/14/bits/stl_algo.h \
+ /usr/include/c++/14/bits/algorithmfwd.h \
+ /usr/include/c++/14/bits/stl_heap.h \
+ /usr/include/c++/14/bits/uniform_int_dist.h \
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h \
+ /usr/include/c++/14/bits/valarray_array.h \
+ /usr/include/c++/14/bits/valarray_array.tcc \
+ /usr/include/c++/14/bits/valarray_before.h \
+ /usr/include/c++/14/bits/slice_array.h \
+ /usr/include/c++/14/bits/valarray_after.h \
+ /usr/include/c++/14/bits/gslice.h \
+ /usr/include/c++/14/bits/gslice_array.h \
+ /usr/include/c++/14/bits/mask_array.h \
+ /usr/include/c++/14/bits/indirect_array.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/parse.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/emit.h \
+ /usr/include/dlfcn.h /usr/include/x86_64-linux-gnu/bits/dlfcn.h \
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/utility_functions.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/file_access.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/os.hpp
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/src/Input.cpp.o b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/Input.cpp.o
new file mode 100644
index 0000000..8753983
Binary files /dev/null and b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/Input.cpp.o differ
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/src/Input.cpp.o.d b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/Input.cpp.o.d
new file mode 100644
index 0000000..67f8664
--- /dev/null
+++ b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/Input.cpp.o.d
@@ -0,0 +1,363 @@
+CMakeFiles/LibRetroHost.dir/src/Input.cpp.o: \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Input.cpp \
+ /usr/include/stdc-predef.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.hpp \
+ /usr/include/c++/14/filesystem \
+ /usr/include/c++/14/bits/requires_hosted.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h \
+ /usr/include/features.h /usr/include/features-time64.h \
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h \
+ /usr/include/x86_64-linux-gnu/bits/timesize.h \
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h \
+ /usr/include/x86_64-linux-gnu/bits/long-double.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h \
+ /usr/include/c++/14/pstl/pstl_config.h \
+ /usr/include/c++/14/bits/version.h /usr/include/c++/14/bits/fs_fwd.h \
+ /usr/include/c++/14/system_error \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h \
+ /usr/include/c++/14/cerrno /usr/include/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
+ /usr/include/x86_64-linux-gnu/asm/errno.h \
+ /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h \
+ /usr/include/c++/14/iosfwd /usr/include/c++/14/bits/stringfwd.h \
+ /usr/include/c++/14/bits/memoryfwd.h /usr/include/c++/14/bits/postypes.h \
+ /usr/include/c++/14/cwchar /usr/include/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
+ /usr/include/x86_64-linux-gnu/bits/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
+ /usr/include/c++/14/stdexcept /usr/include/c++/14/exception \
+ /usr/include/c++/14/bits/exception.h \
+ /usr/include/c++/14/bits/exception_ptr.h \
+ /usr/include/c++/14/bits/exception_defines.h \
+ /usr/include/c++/14/bits/cxxabi_init_exception.h \
+ /usr/include/c++/14/typeinfo /usr/include/c++/14/bits/hash_bytes.h \
+ /usr/include/c++/14/new /usr/include/c++/14/bits/move.h \
+ /usr/include/c++/14/type_traits \
+ /usr/include/c++/14/bits/nested_exception.h /usr/include/c++/14/string \
+ /usr/include/c++/14/bits/char_traits.h \
+ /usr/include/c++/14/bits/allocator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h \
+ /usr/include/c++/14/bits/new_allocator.h \
+ /usr/include/c++/14/bits/functexcept.h \
+ /usr/include/c++/14/bits/cpp_type_traits.h \
+ /usr/include/c++/14/bits/localefwd.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h \
+ /usr/include/c++/14/clocale /usr/include/locale.h \
+ /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/14/cctype \
+ /usr/include/ctype.h /usr/include/x86_64-linux-gnu/bits/types.h \
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h \
+ /usr/include/x86_64-linux-gnu/bits/time64.h \
+ /usr/include/x86_64-linux-gnu/bits/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/endianness.h \
+ /usr/include/c++/14/bits/ostream_insert.h \
+ /usr/include/c++/14/bits/cxxabi_forced.h \
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h \
+ /usr/include/c++/14/bits/concept_check.h \
+ /usr/include/c++/14/debug/assertions.h \
+ /usr/include/c++/14/bits/stl_iterator_base_types.h \
+ /usr/include/c++/14/bits/stl_iterator.h \
+ /usr/include/c++/14/ext/type_traits.h \
+ /usr/include/c++/14/bits/ptr_traits.h \
+ /usr/include/c++/14/bits/stl_function.h \
+ /usr/include/c++/14/backward/binders.h \
+ /usr/include/c++/14/ext/numeric_traits.h \
+ /usr/include/c++/14/bits/stl_algobase.h \
+ /usr/include/c++/14/bits/stl_pair.h /usr/include/c++/14/bits/utility.h \
+ /usr/include/c++/14/debug/debug.h \
+ /usr/include/c++/14/bits/predefined_ops.h /usr/include/c++/14/bit \
+ /usr/include/c++/14/concepts /usr/include/c++/14/bits/refwrap.h \
+ /usr/include/c++/14/bits/invoke.h \
+ /usr/include/c++/14/bits/range_access.h \
+ /usr/include/c++/14/initializer_list \
+ /usr/include/c++/14/bits/basic_string.h \
+ /usr/include/c++/14/ext/alloc_traits.h \
+ /usr/include/c++/14/bits/alloc_traits.h \
+ /usr/include/c++/14/bits/stl_construct.h /usr/include/c++/14/string_view \
+ /usr/include/c++/14/bits/functional_hash.h \
+ /usr/include/c++/14/bits/string_view.tcc \
+ /usr/include/c++/14/ext/string_conversions.h /usr/include/c++/14/cstdlib \
+ /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
+ /usr/include/x86_64-linux-gnu/sys/types.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h \
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
+ /usr/include/x86_64-linux-gnu/sys/select.h \
+ /usr/include/x86_64-linux-gnu/bits/select.h \
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
+ /usr/include/c++/14/bits/std_abs.h /usr/include/c++/14/cstdio \
+ /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
+ /usr/include/c++/14/bits/charconv.h \
+ /usr/include/c++/14/bits/basic_string.tcc \
+ /usr/include/c++/14/bits/memory_resource.h /usr/include/c++/14/cstddef \
+ /usr/include/c++/14/bits/uses_allocator.h \
+ /usr/include/c++/14/bits/uses_allocator_args.h /usr/include/c++/14/tuple \
+ /usr/include/c++/14/cstdint \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h /usr/include/stdint.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h \
+ /usr/include/c++/14/bits/chrono.h /usr/include/c++/14/ratio \
+ /usr/include/c++/14/limits /usr/include/c++/14/ctime /usr/include/time.h \
+ /usr/include/x86_64-linux-gnu/bits/time.h \
+ /usr/include/x86_64-linux-gnu/bits/timex.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
+ /usr/include/c++/14/bits/parse_numbers.h \
+ /usr/include/c++/14/bits/fs_path.h /usr/include/c++/14/locale \
+ /usr/include/c++/14/bits/locale_classes.h \
+ /usr/include/c++/14/ext/atomicity.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h \
+ /usr/include/pthread.h /usr/include/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h \
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h \
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h \
+ /usr/include/c++/14/bits/locale_classes.tcc \
+ /usr/include/c++/14/bits/locale_facets.h /usr/include/c++/14/cwctype \
+ /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h \
+ /usr/include/c++/14/bits/ios_base.h /usr/include/c++/14/streambuf \
+ /usr/include/c++/14/bits/streambuf.tcc \
+ /usr/include/c++/14/bits/streambuf_iterator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h \
+ /usr/include/c++/14/bits/locale_facets.tcc \
+ /usr/include/c++/14/bits/locale_facets_nonio.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h \
+ /usr/include/libintl.h /usr/include/c++/14/bits/codecvt.h \
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc \
+ /usr/include/c++/14/bits/locale_conv.h /usr/include/c++/14/iomanip \
+ /usr/include/c++/14/bits/quoted_string.h /usr/include/c++/14/sstream \
+ /usr/include/c++/14/istream /usr/include/c++/14/ios \
+ /usr/include/c++/14/bits/basic_ios.h \
+ /usr/include/c++/14/bits/basic_ios.tcc /usr/include/c++/14/ostream \
+ /usr/include/c++/14/bits/ostream.tcc \
+ /usr/include/c++/14/bits/istream.tcc \
+ /usr/include/c++/14/bits/sstream.tcc /usr/include/c++/14/codecvt \
+ /usr/include/c++/14/ext/concurrence.h \
+ /usr/include/c++/14/bits/shared_ptr.h \
+ /usr/include/c++/14/bits/shared_ptr_base.h \
+ /usr/include/c++/14/bits/allocated_ptr.h \
+ /usr/include/c++/14/bits/unique_ptr.h \
+ /usr/include/c++/14/ext/aligned_buffer.h \
+ /usr/include/c++/14/bits/fs_dir.h /usr/include/c++/14/bits/fs_ops.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/color.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/math.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/defs.hpp \
+ /usr/include/c++/14/cstring /usr/include/string.h /usr/include/strings.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension/gdextension_interface.h \
+ /usr/include/c++/14/cmath /usr/include/math.h \
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h \
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h \
+ /usr/include/c++/14/bits/specfun.h /usr/include/c++/14/tr1/gamma.tcc \
+ /usr/include/c++/14/tr1/special_function_util.h \
+ /usr/include/c++/14/tr1/bessel_function.tcc \
+ /usr/include/c++/14/tr1/beta_function.tcc \
+ /usr/include/c++/14/tr1/ell_integral.tcc \
+ /usr/include/c++/14/tr1/exp_integral.tcc \
+ /usr/include/c++/14/tr1/hypergeometric.tcc \
+ /usr/include/c++/14/tr1/legendre_function.tcc \
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc \
+ /usr/include/c++/14/tr1/poly_hermite.tcc \
+ /usr/include/c++/14/tr1/poly_laguerre.tcc \
+ /usr/include/c++/14/tr1/riemann_zeta.tcc \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/error_macros.hpp \
+ /usr/include/c++/14/atomic /usr/include/c++/14/bits/atomic_base.h \
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/ref.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_string.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/memory.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/godot.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/variant.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/plane.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/aabb.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/basis.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/projection.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp \
+ /usr/include/c++/14/array /usr/include/c++/14/compare \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/property_info.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/list.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/object.hpp \
+ /usr/include/c++/14/vector /usr/include/c++/14/bits/stl_uninitialized.h \
+ /usr/include/c++/14/bits/stl_vector.h \
+ /usr/include/c++/14/bits/stl_bvector.h \
+ /usr/include/c++/14/bits/vector.tcc \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/class_db.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_bind.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/binder_common.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/type_info.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp \
+ /usr/include/c++/14/iostream \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp \
+ /usr/include/c++/14/list /usr/include/c++/14/bits/stl_list.h \
+ /usr/include/c++/14/bits/list.tcc /usr/include/c++/14/set \
+ /usr/include/c++/14/bits/stl_tree.h \
+ /usr/include/c++/14/bits/node_handle.h \
+ /usr/include/c++/14/bits/stl_set.h \
+ /usr/include/c++/14/bits/stl_multiset.h \
+ /usr/include/c++/14/bits/erase_if.h /usr/include/c++/14/unordered_map \
+ /usr/include/c++/14/bits/unordered_map.h \
+ /usr/include/c++/14/bits/hashtable.h \
+ /usr/include/c++/14/bits/hashtable_policy.h \
+ /usr/include/c++/14/bits/enable_special_members.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include/libretro.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h \
+ /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h \
+ /usr/include/linux/limits.h \
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/yaml.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/parser.h \
+ /usr/include/c++/14/memory /usr/include/c++/14/bits/stl_tempbuf.h \
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h \
+ /usr/include/c++/14/bits/align.h \
+ /usr/include/c++/14/bits/shared_ptr_atomic.h \
+ /usr/include/c++/14/backward/auto_ptr.h \
+ /usr/include/c++/14/pstl/glue_memory_defs.h \
+ /usr/include/c++/14/pstl/execution_defs.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/dll.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitter.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/binary.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterdef.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emittermanip.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/null.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterstyle.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/stlemitter.h \
+ /usr/include/c++/14/map /usr/include/c++/14/bits/stl_map.h \
+ /usr/include/c++/14/bits/stl_multimap.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/exceptions.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/mark.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/noexcept.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/traits.h \
+ /usr/include/c++/14/utility /usr/include/c++/14/bits/stl_relops.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/node.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/ptr.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/type.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/impl.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h \
+ /usr/include/c++/14/iterator /usr/include/c++/14/bits/stream_iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/convert.h \
+ /usr/include/c++/14/valarray /usr/include/c++/14/algorithm \
+ /usr/include/c++/14/bits/stl_algo.h \
+ /usr/include/c++/14/bits/algorithmfwd.h \
+ /usr/include/c++/14/bits/stl_heap.h \
+ /usr/include/c++/14/bits/uniform_int_dist.h \
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h \
+ /usr/include/c++/14/bits/valarray_array.h \
+ /usr/include/c++/14/bits/valarray_array.tcc \
+ /usr/include/c++/14/bits/valarray_before.h \
+ /usr/include/c++/14/bits/slice_array.h \
+ /usr/include/c++/14/bits/valarray_after.h \
+ /usr/include/c++/14/bits/gslice.h \
+ /usr/include/c++/14/bits/gslice_array.h \
+ /usr/include/c++/14/bits/mask_array.h \
+ /usr/include/c++/14/bits/indirect_array.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/parse.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/emit.h \
+ /usr/include/dlfcn.h /usr/include/x86_64-linux-gnu/bits/dlfcn.h \
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/KeyboardMap.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event_key.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event_with_modifiers.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event_from_window.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/utility_functions.hpp
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o
new file mode 100644
index 0000000..337b388
Binary files /dev/null and b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o differ
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o.d b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o.d
new file mode 100644
index 0000000..9813ac6
--- /dev/null
+++ b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o.d
@@ -0,0 +1,357 @@
+CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o: \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RegisterExtension.cpp \
+ /usr/include/stdc-predef.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension/gdextension_interface.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h /usr/include/stdint.h \
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
+ /usr/include/features.h /usr/include/features-time64.h \
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h \
+ /usr/include/x86_64-linux-gnu/bits/timesize.h \
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h \
+ /usr/include/x86_64-linux-gnu/bits/long-double.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
+ /usr/include/x86_64-linux-gnu/bits/types.h \
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h \
+ /usr/include/x86_64-linux-gnu/bits/time64.h \
+ /usr/include/x86_64-linux-gnu/bits/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/class_db.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/defs.hpp \
+ /usr/include/c++/14/cstddef \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h \
+ /usr/include/c++/14/pstl/pstl_config.h \
+ /usr/include/c++/14/bits/version.h /usr/include/c++/14/cstdint \
+ /usr/include/c++/14/cstring /usr/include/string.h \
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
+ /usr/include/strings.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/error_macros.hpp \
+ /usr/include/c++/14/atomic /usr/include/c++/14/bits/atomic_base.h \
+ /usr/include/c++/14/new /usr/include/c++/14/bits/exception.h \
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h \
+ /usr/include/c++/14/bits/move.h /usr/include/c++/14/type_traits \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_bind.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/binder_common.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/object.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/property_info.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/variant.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_string.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/math.hpp \
+ /usr/include/c++/14/cmath /usr/include/c++/14/bits/requires_hosted.h \
+ /usr/include/c++/14/bits/cpp_type_traits.h \
+ /usr/include/c++/14/ext/type_traits.h /usr/include/math.h \
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h \
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h \
+ /usr/include/c++/14/bits/std_abs.h /usr/include/stdlib.h \
+ /usr/include/x86_64-linux-gnu/bits/waitflags.h \
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
+ /usr/include/x86_64-linux-gnu/sys/types.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h /usr/include/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/endianness.h \
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h \
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
+ /usr/include/x86_64-linux-gnu/sys/select.h \
+ /usr/include/x86_64-linux-gnu/bits/select.h \
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
+ /usr/include/c++/14/bits/specfun.h \
+ /usr/include/c++/14/bits/stl_algobase.h \
+ /usr/include/c++/14/bits/functexcept.h \
+ /usr/include/c++/14/bits/exception_defines.h \
+ /usr/include/c++/14/ext/numeric_traits.h \
+ /usr/include/c++/14/bits/stl_pair.h /usr/include/c++/14/bits/utility.h \
+ /usr/include/c++/14/bits/stl_iterator_base_types.h \
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h \
+ /usr/include/c++/14/bits/concept_check.h \
+ /usr/include/c++/14/debug/assertions.h \
+ /usr/include/c++/14/bits/stl_iterator.h \
+ /usr/include/c++/14/bits/ptr_traits.h /usr/include/c++/14/debug/debug.h \
+ /usr/include/c++/14/bits/predefined_ops.h /usr/include/c++/14/bit \
+ /usr/include/c++/14/concepts /usr/include/c++/14/limits \
+ /usr/include/c++/14/tr1/gamma.tcc \
+ /usr/include/c++/14/tr1/special_function_util.h \
+ /usr/include/c++/14/tr1/bessel_function.tcc \
+ /usr/include/c++/14/tr1/beta_function.tcc \
+ /usr/include/c++/14/tr1/ell_integral.tcc \
+ /usr/include/c++/14/tr1/exp_integral.tcc \
+ /usr/include/c++/14/tr1/hypergeometric.tcc \
+ /usr/include/c++/14/tr1/legendre_function.tcc \
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc \
+ /usr/include/c++/14/tr1/poly_hermite.tcc \
+ /usr/include/c++/14/tr1/poly_laguerre.tcc \
+ /usr/include/c++/14/tr1/riemann_zeta.tcc \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/memory.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/godot.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/plane.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/aabb.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/basis.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/projection.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/color.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp \
+ /usr/include/c++/14/array /usr/include/c++/14/compare \
+ /usr/include/c++/14/initializer_list \
+ /usr/include/c++/14/bits/range_access.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/list.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp \
+ /usr/include/c++/14/vector /usr/include/c++/14/bits/allocator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h \
+ /usr/include/c++/14/bits/new_allocator.h \
+ /usr/include/c++/14/bits/memoryfwd.h \
+ /usr/include/c++/14/bits/stl_construct.h \
+ /usr/include/c++/14/bits/stl_uninitialized.h \
+ /usr/include/c++/14/ext/alloc_traits.h \
+ /usr/include/c++/14/bits/alloc_traits.h \
+ /usr/include/c++/14/bits/stl_vector.h \
+ /usr/include/c++/14/bits/stl_bvector.h \
+ /usr/include/c++/14/bits/functional_hash.h \
+ /usr/include/c++/14/bits/hash_bytes.h /usr/include/c++/14/bits/refwrap.h \
+ /usr/include/c++/14/bits/invoke.h \
+ /usr/include/c++/14/bits/stl_function.h \
+ /usr/include/c++/14/backward/binders.h \
+ /usr/include/c++/14/bits/vector.tcc \
+ /usr/include/c++/14/bits/memory_resource.h \
+ /usr/include/c++/14/bits/uses_allocator.h \
+ /usr/include/c++/14/bits/uses_allocator_args.h /usr/include/c++/14/tuple \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/type_info.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp \
+ /usr/include/c++/14/string /usr/include/c++/14/bits/stringfwd.h \
+ /usr/include/c++/14/bits/char_traits.h \
+ /usr/include/c++/14/bits/postypes.h /usr/include/c++/14/cwchar \
+ /usr/include/wchar.h /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
+ /usr/include/c++/14/bits/localefwd.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h \
+ /usr/include/c++/14/clocale /usr/include/locale.h \
+ /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/14/iosfwd \
+ /usr/include/c++/14/cctype /usr/include/ctype.h \
+ /usr/include/c++/14/bits/ostream_insert.h \
+ /usr/include/c++/14/bits/cxxabi_forced.h \
+ /usr/include/c++/14/bits/basic_string.h /usr/include/c++/14/string_view \
+ /usr/include/c++/14/bits/string_view.tcc \
+ /usr/include/c++/14/ext/string_conversions.h /usr/include/c++/14/cstdlib \
+ /usr/include/c++/14/cstdio /usr/include/stdio.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
+ /usr/include/c++/14/cerrno /usr/include/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
+ /usr/include/x86_64-linux-gnu/asm/errno.h \
+ /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h \
+ /usr/include/c++/14/bits/charconv.h \
+ /usr/include/c++/14/bits/basic_string.tcc /usr/include/c++/14/iostream \
+ /usr/include/c++/14/ostream /usr/include/c++/14/ios \
+ /usr/include/c++/14/exception /usr/include/c++/14/bits/exception_ptr.h \
+ /usr/include/c++/14/bits/cxxabi_init_exception.h \
+ /usr/include/c++/14/typeinfo /usr/include/c++/14/bits/nested_exception.h \
+ /usr/include/c++/14/bits/ios_base.h /usr/include/c++/14/ext/atomicity.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h \
+ /usr/include/pthread.h /usr/include/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h /usr/include/time.h \
+ /usr/include/x86_64-linux-gnu/bits/time.h \
+ /usr/include/x86_64-linux-gnu/bits/timex.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h \
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h \
+ /usr/include/c++/14/bits/locale_classes.h \
+ /usr/include/c++/14/bits/locale_classes.tcc \
+ /usr/include/c++/14/system_error \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h \
+ /usr/include/c++/14/stdexcept /usr/include/c++/14/streambuf \
+ /usr/include/c++/14/bits/streambuf.tcc \
+ /usr/include/c++/14/bits/basic_ios.h \
+ /usr/include/c++/14/bits/locale_facets.h /usr/include/c++/14/cwctype \
+ /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h \
+ /usr/include/c++/14/bits/streambuf_iterator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h \
+ /usr/include/c++/14/bits/locale_facets.tcc \
+ /usr/include/c++/14/bits/basic_ios.tcc \
+ /usr/include/c++/14/bits/ostream.tcc /usr/include/c++/14/istream \
+ /usr/include/c++/14/bits/istream.tcc \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp \
+ /usr/include/c++/14/list /usr/include/c++/14/bits/stl_list.h \
+ /usr/include/c++/14/bits/allocated_ptr.h \
+ /usr/include/c++/14/ext/aligned_buffer.h \
+ /usr/include/c++/14/bits/list.tcc /usr/include/c++/14/set \
+ /usr/include/c++/14/bits/stl_tree.h \
+ /usr/include/c++/14/bits/node_handle.h \
+ /usr/include/c++/14/bits/stl_set.h \
+ /usr/include/c++/14/bits/stl_multiset.h \
+ /usr/include/c++/14/bits/erase_if.h /usr/include/c++/14/unordered_map \
+ /usr/include/c++/14/bits/unordered_map.h \
+ /usr/include/c++/14/bits/hashtable.h \
+ /usr/include/c++/14/bits/hashtable_policy.h \
+ /usr/include/c++/14/bits/enable_special_members.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/engine.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.hpp \
+ /usr/include/c++/14/filesystem /usr/include/c++/14/bits/fs_fwd.h \
+ /usr/include/c++/14/bits/chrono.h /usr/include/c++/14/ratio \
+ /usr/include/c++/14/ctime /usr/include/c++/14/bits/parse_numbers.h \
+ /usr/include/c++/14/bits/fs_path.h /usr/include/c++/14/locale \
+ /usr/include/c++/14/bits/locale_facets_nonio.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h \
+ /usr/include/libintl.h /usr/include/c++/14/bits/codecvt.h \
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc \
+ /usr/include/c++/14/bits/locale_conv.h /usr/include/c++/14/iomanip \
+ /usr/include/c++/14/bits/quoted_string.h /usr/include/c++/14/sstream \
+ /usr/include/c++/14/bits/sstream.tcc /usr/include/c++/14/codecvt \
+ /usr/include/c++/14/ext/concurrence.h \
+ /usr/include/c++/14/bits/shared_ptr.h \
+ /usr/include/c++/14/bits/shared_ptr_base.h \
+ /usr/include/c++/14/bits/unique_ptr.h /usr/include/c++/14/bits/fs_dir.h \
+ /usr/include/c++/14/bits/fs_ops.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/ref.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include/libretro.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h \
+ /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h \
+ /usr/include/linux/limits.h \
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/yaml.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/parser.h \
+ /usr/include/c++/14/memory /usr/include/c++/14/bits/stl_tempbuf.h \
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h \
+ /usr/include/c++/14/bits/align.h \
+ /usr/include/c++/14/bits/shared_ptr_atomic.h \
+ /usr/include/c++/14/backward/auto_ptr.h \
+ /usr/include/c++/14/pstl/glue_memory_defs.h \
+ /usr/include/c++/14/pstl/execution_defs.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/dll.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitter.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/binary.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterdef.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emittermanip.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/null.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterstyle.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/stlemitter.h \
+ /usr/include/c++/14/map /usr/include/c++/14/bits/stl_map.h \
+ /usr/include/c++/14/bits/stl_multimap.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/exceptions.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/mark.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/noexcept.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/traits.h \
+ /usr/include/c++/14/utility /usr/include/c++/14/bits/stl_relops.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/node.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/ptr.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/type.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/impl.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h \
+ /usr/include/c++/14/iterator /usr/include/c++/14/bits/stream_iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/convert.h \
+ /usr/include/c++/14/valarray /usr/include/c++/14/algorithm \
+ /usr/include/c++/14/bits/stl_algo.h \
+ /usr/include/c++/14/bits/algorithmfwd.h \
+ /usr/include/c++/14/bits/stl_heap.h \
+ /usr/include/c++/14/bits/uniform_int_dist.h \
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h \
+ /usr/include/c++/14/bits/valarray_array.h \
+ /usr/include/c++/14/bits/valarray_array.tcc \
+ /usr/include/c++/14/bits/valarray_before.h \
+ /usr/include/c++/14/bits/slice_array.h \
+ /usr/include/c++/14/bits/valarray_after.h \
+ /usr/include/c++/14/bits/gslice.h \
+ /usr/include/c++/14/bits/gslice_array.h \
+ /usr/include/c++/14/bits/mask_array.h \
+ /usr/include/c++/14/bits/indirect_array.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/parse.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/emit.h \
+ /usr/include/dlfcn.h /usr/include/x86_64-linux-gnu/bits/dlfcn.h \
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o
new file mode 100644
index 0000000..c78a553
Binary files /dev/null and b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o differ
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o.d b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o.d
new file mode 100644
index 0000000..0f15e3b
--- /dev/null
+++ b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o.d
@@ -0,0 +1,366 @@
+CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o: \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.cpp \
+ /usr/include/stdc-predef.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.hpp \
+ /usr/include/c++/14/filesystem \
+ /usr/include/c++/14/bits/requires_hosted.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h \
+ /usr/include/features.h /usr/include/features-time64.h \
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h \
+ /usr/include/x86_64-linux-gnu/bits/timesize.h \
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h \
+ /usr/include/x86_64-linux-gnu/bits/long-double.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h \
+ /usr/include/c++/14/pstl/pstl_config.h \
+ /usr/include/c++/14/bits/version.h /usr/include/c++/14/bits/fs_fwd.h \
+ /usr/include/c++/14/system_error \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h \
+ /usr/include/c++/14/cerrno /usr/include/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
+ /usr/include/x86_64-linux-gnu/asm/errno.h \
+ /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h \
+ /usr/include/c++/14/iosfwd /usr/include/c++/14/bits/stringfwd.h \
+ /usr/include/c++/14/bits/memoryfwd.h /usr/include/c++/14/bits/postypes.h \
+ /usr/include/c++/14/cwchar /usr/include/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
+ /usr/include/x86_64-linux-gnu/bits/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
+ /usr/include/c++/14/stdexcept /usr/include/c++/14/exception \
+ /usr/include/c++/14/bits/exception.h \
+ /usr/include/c++/14/bits/exception_ptr.h \
+ /usr/include/c++/14/bits/exception_defines.h \
+ /usr/include/c++/14/bits/cxxabi_init_exception.h \
+ /usr/include/c++/14/typeinfo /usr/include/c++/14/bits/hash_bytes.h \
+ /usr/include/c++/14/new /usr/include/c++/14/bits/move.h \
+ /usr/include/c++/14/type_traits \
+ /usr/include/c++/14/bits/nested_exception.h /usr/include/c++/14/string \
+ /usr/include/c++/14/bits/char_traits.h \
+ /usr/include/c++/14/bits/allocator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h \
+ /usr/include/c++/14/bits/new_allocator.h \
+ /usr/include/c++/14/bits/functexcept.h \
+ /usr/include/c++/14/bits/cpp_type_traits.h \
+ /usr/include/c++/14/bits/localefwd.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h \
+ /usr/include/c++/14/clocale /usr/include/locale.h \
+ /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/14/cctype \
+ /usr/include/ctype.h /usr/include/x86_64-linux-gnu/bits/types.h \
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h \
+ /usr/include/x86_64-linux-gnu/bits/time64.h \
+ /usr/include/x86_64-linux-gnu/bits/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/endianness.h \
+ /usr/include/c++/14/bits/ostream_insert.h \
+ /usr/include/c++/14/bits/cxxabi_forced.h \
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h \
+ /usr/include/c++/14/bits/concept_check.h \
+ /usr/include/c++/14/debug/assertions.h \
+ /usr/include/c++/14/bits/stl_iterator_base_types.h \
+ /usr/include/c++/14/bits/stl_iterator.h \
+ /usr/include/c++/14/ext/type_traits.h \
+ /usr/include/c++/14/bits/ptr_traits.h \
+ /usr/include/c++/14/bits/stl_function.h \
+ /usr/include/c++/14/backward/binders.h \
+ /usr/include/c++/14/ext/numeric_traits.h \
+ /usr/include/c++/14/bits/stl_algobase.h \
+ /usr/include/c++/14/bits/stl_pair.h /usr/include/c++/14/bits/utility.h \
+ /usr/include/c++/14/debug/debug.h \
+ /usr/include/c++/14/bits/predefined_ops.h /usr/include/c++/14/bit \
+ /usr/include/c++/14/concepts /usr/include/c++/14/bits/refwrap.h \
+ /usr/include/c++/14/bits/invoke.h \
+ /usr/include/c++/14/bits/range_access.h \
+ /usr/include/c++/14/initializer_list \
+ /usr/include/c++/14/bits/basic_string.h \
+ /usr/include/c++/14/ext/alloc_traits.h \
+ /usr/include/c++/14/bits/alloc_traits.h \
+ /usr/include/c++/14/bits/stl_construct.h /usr/include/c++/14/string_view \
+ /usr/include/c++/14/bits/functional_hash.h \
+ /usr/include/c++/14/bits/string_view.tcc \
+ /usr/include/c++/14/ext/string_conversions.h /usr/include/c++/14/cstdlib \
+ /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
+ /usr/include/x86_64-linux-gnu/sys/types.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h \
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
+ /usr/include/x86_64-linux-gnu/sys/select.h \
+ /usr/include/x86_64-linux-gnu/bits/select.h \
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
+ /usr/include/c++/14/bits/std_abs.h /usr/include/c++/14/cstdio \
+ /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
+ /usr/include/c++/14/bits/charconv.h \
+ /usr/include/c++/14/bits/basic_string.tcc \
+ /usr/include/c++/14/bits/memory_resource.h /usr/include/c++/14/cstddef \
+ /usr/include/c++/14/bits/uses_allocator.h \
+ /usr/include/c++/14/bits/uses_allocator_args.h /usr/include/c++/14/tuple \
+ /usr/include/c++/14/cstdint \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h /usr/include/stdint.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h \
+ /usr/include/c++/14/bits/chrono.h /usr/include/c++/14/ratio \
+ /usr/include/c++/14/limits /usr/include/c++/14/ctime /usr/include/time.h \
+ /usr/include/x86_64-linux-gnu/bits/time.h \
+ /usr/include/x86_64-linux-gnu/bits/timex.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
+ /usr/include/c++/14/bits/parse_numbers.h \
+ /usr/include/c++/14/bits/fs_path.h /usr/include/c++/14/locale \
+ /usr/include/c++/14/bits/locale_classes.h \
+ /usr/include/c++/14/ext/atomicity.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h \
+ /usr/include/pthread.h /usr/include/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h \
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h \
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h \
+ /usr/include/c++/14/bits/locale_classes.tcc \
+ /usr/include/c++/14/bits/locale_facets.h /usr/include/c++/14/cwctype \
+ /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h \
+ /usr/include/c++/14/bits/ios_base.h /usr/include/c++/14/streambuf \
+ /usr/include/c++/14/bits/streambuf.tcc \
+ /usr/include/c++/14/bits/streambuf_iterator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h \
+ /usr/include/c++/14/bits/locale_facets.tcc \
+ /usr/include/c++/14/bits/locale_facets_nonio.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h \
+ /usr/include/libintl.h /usr/include/c++/14/bits/codecvt.h \
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc \
+ /usr/include/c++/14/bits/locale_conv.h /usr/include/c++/14/iomanip \
+ /usr/include/c++/14/bits/quoted_string.h /usr/include/c++/14/sstream \
+ /usr/include/c++/14/istream /usr/include/c++/14/ios \
+ /usr/include/c++/14/bits/basic_ios.h \
+ /usr/include/c++/14/bits/basic_ios.tcc /usr/include/c++/14/ostream \
+ /usr/include/c++/14/bits/ostream.tcc \
+ /usr/include/c++/14/bits/istream.tcc \
+ /usr/include/c++/14/bits/sstream.tcc /usr/include/c++/14/codecvt \
+ /usr/include/c++/14/ext/concurrence.h \
+ /usr/include/c++/14/bits/shared_ptr.h \
+ /usr/include/c++/14/bits/shared_ptr_base.h \
+ /usr/include/c++/14/bits/allocated_ptr.h \
+ /usr/include/c++/14/bits/unique_ptr.h \
+ /usr/include/c++/14/ext/aligned_buffer.h \
+ /usr/include/c++/14/bits/fs_dir.h /usr/include/c++/14/bits/fs_ops.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/color.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/math.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/defs.hpp \
+ /usr/include/c++/14/cstring /usr/include/string.h /usr/include/strings.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension/gdextension_interface.h \
+ /usr/include/c++/14/cmath /usr/include/math.h \
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h \
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h \
+ /usr/include/c++/14/bits/specfun.h /usr/include/c++/14/tr1/gamma.tcc \
+ /usr/include/c++/14/tr1/special_function_util.h \
+ /usr/include/c++/14/tr1/bessel_function.tcc \
+ /usr/include/c++/14/tr1/beta_function.tcc \
+ /usr/include/c++/14/tr1/ell_integral.tcc \
+ /usr/include/c++/14/tr1/exp_integral.tcc \
+ /usr/include/c++/14/tr1/hypergeometric.tcc \
+ /usr/include/c++/14/tr1/legendre_function.tcc \
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc \
+ /usr/include/c++/14/tr1/poly_hermite.tcc \
+ /usr/include/c++/14/tr1/poly_laguerre.tcc \
+ /usr/include/c++/14/tr1/riemann_zeta.tcc \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/error_macros.hpp \
+ /usr/include/c++/14/atomic /usr/include/c++/14/bits/atomic_base.h \
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/ref.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_string.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/memory.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/godot.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/variant.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/plane.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/aabb.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/basis.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/projection.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp \
+ /usr/include/c++/14/array /usr/include/c++/14/compare \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/property_info.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/list.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/object.hpp \
+ /usr/include/c++/14/vector /usr/include/c++/14/bits/stl_uninitialized.h \
+ /usr/include/c++/14/bits/stl_vector.h \
+ /usr/include/c++/14/bits/stl_bvector.h \
+ /usr/include/c++/14/bits/vector.tcc \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/class_db.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_bind.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/binder_common.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/type_info.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp \
+ /usr/include/c++/14/iostream \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp \
+ /usr/include/c++/14/list /usr/include/c++/14/bits/stl_list.h \
+ /usr/include/c++/14/bits/list.tcc /usr/include/c++/14/set \
+ /usr/include/c++/14/bits/stl_tree.h \
+ /usr/include/c++/14/bits/node_handle.h \
+ /usr/include/c++/14/bits/stl_set.h \
+ /usr/include/c++/14/bits/stl_multiset.h \
+ /usr/include/c++/14/bits/erase_if.h /usr/include/c++/14/unordered_map \
+ /usr/include/c++/14/bits/unordered_map.h \
+ /usr/include/c++/14/bits/hashtable.h \
+ /usr/include/c++/14/bits/hashtable_policy.h \
+ /usr/include/c++/14/bits/enable_special_members.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include/libretro.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h \
+ /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h \
+ /usr/include/linux/limits.h \
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/yaml.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/parser.h \
+ /usr/include/c++/14/memory /usr/include/c++/14/bits/stl_tempbuf.h \
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h \
+ /usr/include/c++/14/bits/align.h \
+ /usr/include/c++/14/bits/shared_ptr_atomic.h \
+ /usr/include/c++/14/backward/auto_ptr.h \
+ /usr/include/c++/14/pstl/glue_memory_defs.h \
+ /usr/include/c++/14/pstl/execution_defs.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/dll.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitter.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/binary.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterdef.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emittermanip.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/null.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterstyle.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/stlemitter.h \
+ /usr/include/c++/14/map /usr/include/c++/14/bits/stl_map.h \
+ /usr/include/c++/14/bits/stl_multimap.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/exceptions.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/mark.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/noexcept.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/traits.h \
+ /usr/include/c++/14/utility /usr/include/c++/14/bits/stl_relops.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/node.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/ptr.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/type.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/impl.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h \
+ /usr/include/c++/14/iterator /usr/include/c++/14/bits/stream_iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/convert.h \
+ /usr/include/c++/14/valarray /usr/include/c++/14/algorithm \
+ /usr/include/c++/14/bits/stl_algo.h \
+ /usr/include/c++/14/bits/algorithmfwd.h \
+ /usr/include/c++/14/bits/stl_heap.h \
+ /usr/include/c++/14/bits/uniform_int_dist.h \
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h \
+ /usr/include/c++/14/bits/valarray_array.h \
+ /usr/include/c++/14/bits/valarray_array.tcc \
+ /usr/include/c++/14/bits/valarray_before.h \
+ /usr/include/c++/14/bits/slice_array.h \
+ /usr/include/c++/14/bits/valarray_after.h \
+ /usr/include/c++/14/bits/gslice.h \
+ /usr/include/c++/14/bits/gslice_array.h \
+ /usr/include/c++/14/bits/mask_array.h \
+ /usr/include/c++/14/bits/indirect_array.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/parse.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/emit.h \
+ /usr/include/dlfcn.h /usr/include/x86_64-linux-gnu/bits/dlfcn.h \
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/utility_functions.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/file_access.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/os.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/project_settings.hpp \
+ /usr/include/c++/14/fstream \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/basic_file.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++io.h \
+ /usr/include/c++/14/bits/fstream.tcc
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o
new file mode 100644
index 0000000..276da5e
Binary files /dev/null and b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o differ
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o.d b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o.d
new file mode 100644
index 0000000..2869e7e
--- /dev/null
+++ b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o.d
@@ -0,0 +1,358 @@
+CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o: \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/VFS.cpp \
+ /usr/include/stdc-predef.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.hpp \
+ /usr/include/c++/14/filesystem \
+ /usr/include/c++/14/bits/requires_hosted.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h \
+ /usr/include/features.h /usr/include/features-time64.h \
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h \
+ /usr/include/x86_64-linux-gnu/bits/timesize.h \
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h \
+ /usr/include/x86_64-linux-gnu/bits/long-double.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h \
+ /usr/include/c++/14/pstl/pstl_config.h \
+ /usr/include/c++/14/bits/version.h /usr/include/c++/14/bits/fs_fwd.h \
+ /usr/include/c++/14/system_error \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h \
+ /usr/include/c++/14/cerrno /usr/include/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
+ /usr/include/x86_64-linux-gnu/asm/errno.h \
+ /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h \
+ /usr/include/c++/14/iosfwd /usr/include/c++/14/bits/stringfwd.h \
+ /usr/include/c++/14/bits/memoryfwd.h /usr/include/c++/14/bits/postypes.h \
+ /usr/include/c++/14/cwchar /usr/include/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
+ /usr/include/x86_64-linux-gnu/bits/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
+ /usr/include/c++/14/stdexcept /usr/include/c++/14/exception \
+ /usr/include/c++/14/bits/exception.h \
+ /usr/include/c++/14/bits/exception_ptr.h \
+ /usr/include/c++/14/bits/exception_defines.h \
+ /usr/include/c++/14/bits/cxxabi_init_exception.h \
+ /usr/include/c++/14/typeinfo /usr/include/c++/14/bits/hash_bytes.h \
+ /usr/include/c++/14/new /usr/include/c++/14/bits/move.h \
+ /usr/include/c++/14/type_traits \
+ /usr/include/c++/14/bits/nested_exception.h /usr/include/c++/14/string \
+ /usr/include/c++/14/bits/char_traits.h \
+ /usr/include/c++/14/bits/allocator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h \
+ /usr/include/c++/14/bits/new_allocator.h \
+ /usr/include/c++/14/bits/functexcept.h \
+ /usr/include/c++/14/bits/cpp_type_traits.h \
+ /usr/include/c++/14/bits/localefwd.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h \
+ /usr/include/c++/14/clocale /usr/include/locale.h \
+ /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/14/cctype \
+ /usr/include/ctype.h /usr/include/x86_64-linux-gnu/bits/types.h \
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h \
+ /usr/include/x86_64-linux-gnu/bits/time64.h \
+ /usr/include/x86_64-linux-gnu/bits/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/endianness.h \
+ /usr/include/c++/14/bits/ostream_insert.h \
+ /usr/include/c++/14/bits/cxxabi_forced.h \
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h \
+ /usr/include/c++/14/bits/concept_check.h \
+ /usr/include/c++/14/debug/assertions.h \
+ /usr/include/c++/14/bits/stl_iterator_base_types.h \
+ /usr/include/c++/14/bits/stl_iterator.h \
+ /usr/include/c++/14/ext/type_traits.h \
+ /usr/include/c++/14/bits/ptr_traits.h \
+ /usr/include/c++/14/bits/stl_function.h \
+ /usr/include/c++/14/backward/binders.h \
+ /usr/include/c++/14/ext/numeric_traits.h \
+ /usr/include/c++/14/bits/stl_algobase.h \
+ /usr/include/c++/14/bits/stl_pair.h /usr/include/c++/14/bits/utility.h \
+ /usr/include/c++/14/debug/debug.h \
+ /usr/include/c++/14/bits/predefined_ops.h /usr/include/c++/14/bit \
+ /usr/include/c++/14/concepts /usr/include/c++/14/bits/refwrap.h \
+ /usr/include/c++/14/bits/invoke.h \
+ /usr/include/c++/14/bits/range_access.h \
+ /usr/include/c++/14/initializer_list \
+ /usr/include/c++/14/bits/basic_string.h \
+ /usr/include/c++/14/ext/alloc_traits.h \
+ /usr/include/c++/14/bits/alloc_traits.h \
+ /usr/include/c++/14/bits/stl_construct.h /usr/include/c++/14/string_view \
+ /usr/include/c++/14/bits/functional_hash.h \
+ /usr/include/c++/14/bits/string_view.tcc \
+ /usr/include/c++/14/ext/string_conversions.h /usr/include/c++/14/cstdlib \
+ /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
+ /usr/include/x86_64-linux-gnu/sys/types.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h \
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
+ /usr/include/x86_64-linux-gnu/sys/select.h \
+ /usr/include/x86_64-linux-gnu/bits/select.h \
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
+ /usr/include/c++/14/bits/std_abs.h /usr/include/c++/14/cstdio \
+ /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
+ /usr/include/c++/14/bits/charconv.h \
+ /usr/include/c++/14/bits/basic_string.tcc \
+ /usr/include/c++/14/bits/memory_resource.h /usr/include/c++/14/cstddef \
+ /usr/include/c++/14/bits/uses_allocator.h \
+ /usr/include/c++/14/bits/uses_allocator_args.h /usr/include/c++/14/tuple \
+ /usr/include/c++/14/cstdint \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h /usr/include/stdint.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h \
+ /usr/include/c++/14/bits/chrono.h /usr/include/c++/14/ratio \
+ /usr/include/c++/14/limits /usr/include/c++/14/ctime /usr/include/time.h \
+ /usr/include/x86_64-linux-gnu/bits/time.h \
+ /usr/include/x86_64-linux-gnu/bits/timex.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
+ /usr/include/c++/14/bits/parse_numbers.h \
+ /usr/include/c++/14/bits/fs_path.h /usr/include/c++/14/locale \
+ /usr/include/c++/14/bits/locale_classes.h \
+ /usr/include/c++/14/ext/atomicity.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h \
+ /usr/include/pthread.h /usr/include/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h \
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h \
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h \
+ /usr/include/c++/14/bits/locale_classes.tcc \
+ /usr/include/c++/14/bits/locale_facets.h /usr/include/c++/14/cwctype \
+ /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h \
+ /usr/include/c++/14/bits/ios_base.h /usr/include/c++/14/streambuf \
+ /usr/include/c++/14/bits/streambuf.tcc \
+ /usr/include/c++/14/bits/streambuf_iterator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h \
+ /usr/include/c++/14/bits/locale_facets.tcc \
+ /usr/include/c++/14/bits/locale_facets_nonio.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h \
+ /usr/include/libintl.h /usr/include/c++/14/bits/codecvt.h \
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc \
+ /usr/include/c++/14/bits/locale_conv.h /usr/include/c++/14/iomanip \
+ /usr/include/c++/14/bits/quoted_string.h /usr/include/c++/14/sstream \
+ /usr/include/c++/14/istream /usr/include/c++/14/ios \
+ /usr/include/c++/14/bits/basic_ios.h \
+ /usr/include/c++/14/bits/basic_ios.tcc /usr/include/c++/14/ostream \
+ /usr/include/c++/14/bits/ostream.tcc \
+ /usr/include/c++/14/bits/istream.tcc \
+ /usr/include/c++/14/bits/sstream.tcc /usr/include/c++/14/codecvt \
+ /usr/include/c++/14/ext/concurrence.h \
+ /usr/include/c++/14/bits/shared_ptr.h \
+ /usr/include/c++/14/bits/shared_ptr_base.h \
+ /usr/include/c++/14/bits/allocated_ptr.h \
+ /usr/include/c++/14/bits/unique_ptr.h \
+ /usr/include/c++/14/ext/aligned_buffer.h \
+ /usr/include/c++/14/bits/fs_dir.h /usr/include/c++/14/bits/fs_ops.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/color.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/math.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/defs.hpp \
+ /usr/include/c++/14/cstring /usr/include/string.h /usr/include/strings.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension/gdextension_interface.h \
+ /usr/include/c++/14/cmath /usr/include/math.h \
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h \
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h \
+ /usr/include/c++/14/bits/specfun.h /usr/include/c++/14/tr1/gamma.tcc \
+ /usr/include/c++/14/tr1/special_function_util.h \
+ /usr/include/c++/14/tr1/bessel_function.tcc \
+ /usr/include/c++/14/tr1/beta_function.tcc \
+ /usr/include/c++/14/tr1/ell_integral.tcc \
+ /usr/include/c++/14/tr1/exp_integral.tcc \
+ /usr/include/c++/14/tr1/hypergeometric.tcc \
+ /usr/include/c++/14/tr1/legendre_function.tcc \
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc \
+ /usr/include/c++/14/tr1/poly_hermite.tcc \
+ /usr/include/c++/14/tr1/poly_laguerre.tcc \
+ /usr/include/c++/14/tr1/riemann_zeta.tcc \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/error_macros.hpp \
+ /usr/include/c++/14/atomic /usr/include/c++/14/bits/atomic_base.h \
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/ref.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_string.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/memory.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/godot.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/variant.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/plane.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/aabb.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/basis.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/projection.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp \
+ /usr/include/c++/14/array /usr/include/c++/14/compare \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/property_info.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/list.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/object.hpp \
+ /usr/include/c++/14/vector /usr/include/c++/14/bits/stl_uninitialized.h \
+ /usr/include/c++/14/bits/stl_vector.h \
+ /usr/include/c++/14/bits/stl_bvector.h \
+ /usr/include/c++/14/bits/vector.tcc \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/class_db.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_bind.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/binder_common.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/type_info.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp \
+ /usr/include/c++/14/iostream \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp \
+ /usr/include/c++/14/list /usr/include/c++/14/bits/stl_list.h \
+ /usr/include/c++/14/bits/list.tcc /usr/include/c++/14/set \
+ /usr/include/c++/14/bits/stl_tree.h \
+ /usr/include/c++/14/bits/node_handle.h \
+ /usr/include/c++/14/bits/stl_set.h \
+ /usr/include/c++/14/bits/stl_multiset.h \
+ /usr/include/c++/14/bits/erase_if.h /usr/include/c++/14/unordered_map \
+ /usr/include/c++/14/bits/unordered_map.h \
+ /usr/include/c++/14/bits/hashtable.h \
+ /usr/include/c++/14/bits/hashtable_policy.h \
+ /usr/include/c++/14/bits/enable_special_members.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include/libretro.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h \
+ /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h \
+ /usr/include/linux/limits.h \
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/yaml.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/parser.h \
+ /usr/include/c++/14/memory /usr/include/c++/14/bits/stl_tempbuf.h \
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h \
+ /usr/include/c++/14/bits/align.h \
+ /usr/include/c++/14/bits/shared_ptr_atomic.h \
+ /usr/include/c++/14/backward/auto_ptr.h \
+ /usr/include/c++/14/pstl/glue_memory_defs.h \
+ /usr/include/c++/14/pstl/execution_defs.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/dll.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitter.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/binary.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterdef.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emittermanip.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/null.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterstyle.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/stlemitter.h \
+ /usr/include/c++/14/map /usr/include/c++/14/bits/stl_map.h \
+ /usr/include/c++/14/bits/stl_multimap.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/exceptions.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/mark.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/noexcept.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/traits.h \
+ /usr/include/c++/14/utility /usr/include/c++/14/bits/stl_relops.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/node.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/ptr.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/type.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/impl.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h \
+ /usr/include/c++/14/iterator /usr/include/c++/14/bits/stream_iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/convert.h \
+ /usr/include/c++/14/valarray /usr/include/c++/14/algorithm \
+ /usr/include/c++/14/bits/stl_algo.h \
+ /usr/include/c++/14/bits/algorithmfwd.h \
+ /usr/include/c++/14/bits/stl_heap.h \
+ /usr/include/c++/14/bits/uniform_int_dist.h \
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h \
+ /usr/include/c++/14/bits/valarray_array.h \
+ /usr/include/c++/14/bits/valarray_array.tcc \
+ /usr/include/c++/14/bits/valarray_before.h \
+ /usr/include/c++/14/bits/slice_array.h \
+ /usr/include/c++/14/bits/valarray_after.h \
+ /usr/include/c++/14/bits/gslice.h \
+ /usr/include/c++/14/bits/gslice_array.h \
+ /usr/include/c++/14/bits/mask_array.h \
+ /usr/include/c++/14/bits/indirect_array.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/parse.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/emit.h \
+ /usr/include/dlfcn.h /usr/include/x86_64-linux-gnu/bits/dlfcn.h \
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/src/Video.cpp.o b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/Video.cpp.o
new file mode 100644
index 0000000..298f776
Binary files /dev/null and b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/Video.cpp.o differ
diff --git a/gdlibretro/CMakeFiles/LibRetroHost.dir/src/Video.cpp.o.d b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/Video.cpp.o.d
new file mode 100644
index 0000000..5c0aaaa
--- /dev/null
+++ b/gdlibretro/CMakeFiles/LibRetroHost.dir/src/Video.cpp.o.d
@@ -0,0 +1,359 @@
+CMakeFiles/LibRetroHost.dir/src/Video.cpp.o: \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Video.cpp \
+ /usr/include/stdc-predef.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.hpp \
+ /usr/include/c++/14/filesystem \
+ /usr/include/c++/14/bits/requires_hosted.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++config.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/os_defines.h \
+ /usr/include/features.h /usr/include/features-time64.h \
+ /usr/include/x86_64-linux-gnu/bits/wordsize.h \
+ /usr/include/x86_64-linux-gnu/bits/timesize.h \
+ /usr/include/x86_64-linux-gnu/sys/cdefs.h \
+ /usr/include/x86_64-linux-gnu/bits/long-double.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs.h \
+ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/cpu_defines.h \
+ /usr/include/c++/14/pstl/pstl_config.h \
+ /usr/include/c++/14/bits/version.h /usr/include/c++/14/bits/fs_fwd.h \
+ /usr/include/c++/14/system_error \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/error_constants.h \
+ /usr/include/c++/14/cerrno /usr/include/errno.h \
+ /usr/include/x86_64-linux-gnu/bits/errno.h /usr/include/linux/errno.h \
+ /usr/include/x86_64-linux-gnu/asm/errno.h \
+ /usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
+ /usr/include/x86_64-linux-gnu/bits/types/error_t.h \
+ /usr/include/c++/14/iosfwd /usr/include/c++/14/bits/stringfwd.h \
+ /usr/include/c++/14/bits/memoryfwd.h /usr/include/c++/14/bits/postypes.h \
+ /usr/include/c++/14/cwchar /usr/include/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn.h \
+ /usr/include/x86_64-linux-gnu/bits/floatn-common.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
+ /usr/include/x86_64-linux-gnu/bits/wchar.h \
+ /usr/include/x86_64-linux-gnu/bits/types/wint_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
+ /usr/include/c++/14/stdexcept /usr/include/c++/14/exception \
+ /usr/include/c++/14/bits/exception.h \
+ /usr/include/c++/14/bits/exception_ptr.h \
+ /usr/include/c++/14/bits/exception_defines.h \
+ /usr/include/c++/14/bits/cxxabi_init_exception.h \
+ /usr/include/c++/14/typeinfo /usr/include/c++/14/bits/hash_bytes.h \
+ /usr/include/c++/14/new /usr/include/c++/14/bits/move.h \
+ /usr/include/c++/14/type_traits \
+ /usr/include/c++/14/bits/nested_exception.h /usr/include/c++/14/string \
+ /usr/include/c++/14/bits/char_traits.h \
+ /usr/include/c++/14/bits/allocator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++allocator.h \
+ /usr/include/c++/14/bits/new_allocator.h \
+ /usr/include/c++/14/bits/functexcept.h \
+ /usr/include/c++/14/bits/cpp_type_traits.h \
+ /usr/include/c++/14/bits/localefwd.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/c++locale.h \
+ /usr/include/c++/14/clocale /usr/include/locale.h \
+ /usr/include/x86_64-linux-gnu/bits/locale.h /usr/include/c++/14/cctype \
+ /usr/include/ctype.h /usr/include/x86_64-linux-gnu/bits/types.h \
+ /usr/include/x86_64-linux-gnu/bits/typesizes.h \
+ /usr/include/x86_64-linux-gnu/bits/time64.h \
+ /usr/include/x86_64-linux-gnu/bits/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/endianness.h \
+ /usr/include/c++/14/bits/ostream_insert.h \
+ /usr/include/c++/14/bits/cxxabi_forced.h \
+ /usr/include/c++/14/bits/stl_iterator_base_funcs.h \
+ /usr/include/c++/14/bits/concept_check.h \
+ /usr/include/c++/14/debug/assertions.h \
+ /usr/include/c++/14/bits/stl_iterator_base_types.h \
+ /usr/include/c++/14/bits/stl_iterator.h \
+ /usr/include/c++/14/ext/type_traits.h \
+ /usr/include/c++/14/bits/ptr_traits.h \
+ /usr/include/c++/14/bits/stl_function.h \
+ /usr/include/c++/14/backward/binders.h \
+ /usr/include/c++/14/ext/numeric_traits.h \
+ /usr/include/c++/14/bits/stl_algobase.h \
+ /usr/include/c++/14/bits/stl_pair.h /usr/include/c++/14/bits/utility.h \
+ /usr/include/c++/14/debug/debug.h \
+ /usr/include/c++/14/bits/predefined_ops.h /usr/include/c++/14/bit \
+ /usr/include/c++/14/concepts /usr/include/c++/14/bits/refwrap.h \
+ /usr/include/c++/14/bits/invoke.h \
+ /usr/include/c++/14/bits/range_access.h \
+ /usr/include/c++/14/initializer_list \
+ /usr/include/c++/14/bits/basic_string.h \
+ /usr/include/c++/14/ext/alloc_traits.h \
+ /usr/include/c++/14/bits/alloc_traits.h \
+ /usr/include/c++/14/bits/stl_construct.h /usr/include/c++/14/string_view \
+ /usr/include/c++/14/bits/functional_hash.h \
+ /usr/include/c++/14/bits/string_view.tcc \
+ /usr/include/c++/14/ext/string_conversions.h /usr/include/c++/14/cstdlib \
+ /usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
+ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \
+ /usr/include/x86_64-linux-gnu/sys/types.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/time_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
+ /usr/include/x86_64-linux-gnu/bits/byteswap.h \
+ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
+ /usr/include/x86_64-linux-gnu/sys/select.h \
+ /usr/include/x86_64-linux-gnu/bits/select.h \
+ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
+ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
+ /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
+ /usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
+ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
+ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
+ /usr/include/c++/14/bits/std_abs.h /usr/include/c++/14/cstdio \
+ /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
+ /usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
+ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
+ /usr/include/c++/14/bits/charconv.h \
+ /usr/include/c++/14/bits/basic_string.tcc \
+ /usr/include/c++/14/bits/memory_resource.h /usr/include/c++/14/cstddef \
+ /usr/include/c++/14/bits/uses_allocator.h \
+ /usr/include/c++/14/bits/uses_allocator_args.h /usr/include/c++/14/tuple \
+ /usr/include/c++/14/cstdint \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h /usr/include/stdint.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
+ /usr/include/x86_64-linux-gnu/bits/stdint-least.h \
+ /usr/include/c++/14/bits/chrono.h /usr/include/c++/14/ratio \
+ /usr/include/c++/14/limits /usr/include/c++/14/ctime /usr/include/time.h \
+ /usr/include/x86_64-linux-gnu/bits/time.h \
+ /usr/include/x86_64-linux-gnu/bits/timex.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
+ /usr/include/c++/14/bits/parse_numbers.h \
+ /usr/include/c++/14/bits/fs_path.h /usr/include/c++/14/locale \
+ /usr/include/c++/14/bits/locale_classes.h \
+ /usr/include/c++/14/ext/atomicity.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/gthr-default.h \
+ /usr/include/pthread.h /usr/include/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/sched.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
+ /usr/include/x86_64-linux-gnu/bits/cpu-set.h \
+ /usr/include/x86_64-linux-gnu/bits/setjmp.h \
+ /usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
+ /usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/atomic_word.h \
+ /usr/include/x86_64-linux-gnu/sys/single_threaded.h \
+ /usr/include/c++/14/bits/locale_classes.tcc \
+ /usr/include/c++/14/bits/locale_facets.h /usr/include/c++/14/cwctype \
+ /usr/include/wctype.h /usr/include/x86_64-linux-gnu/bits/wctype-wchar.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_base.h \
+ /usr/include/c++/14/bits/ios_base.h /usr/include/c++/14/streambuf \
+ /usr/include/c++/14/bits/streambuf.tcc \
+ /usr/include/c++/14/bits/streambuf_iterator.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/ctype_inline.h \
+ /usr/include/c++/14/bits/locale_facets.tcc \
+ /usr/include/c++/14/bits/locale_facets_nonio.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/time_members.h \
+ /usr/include/x86_64-linux-gnu/c++/14/bits/messages_members.h \
+ /usr/include/libintl.h /usr/include/c++/14/bits/codecvt.h \
+ /usr/include/c++/14/bits/locale_facets_nonio.tcc \
+ /usr/include/c++/14/bits/locale_conv.h /usr/include/c++/14/iomanip \
+ /usr/include/c++/14/bits/quoted_string.h /usr/include/c++/14/sstream \
+ /usr/include/c++/14/istream /usr/include/c++/14/ios \
+ /usr/include/c++/14/bits/basic_ios.h \
+ /usr/include/c++/14/bits/basic_ios.tcc /usr/include/c++/14/ostream \
+ /usr/include/c++/14/bits/ostream.tcc \
+ /usr/include/c++/14/bits/istream.tcc \
+ /usr/include/c++/14/bits/sstream.tcc /usr/include/c++/14/codecvt \
+ /usr/include/c++/14/ext/concurrence.h \
+ /usr/include/c++/14/bits/shared_ptr.h \
+ /usr/include/c++/14/bits/shared_ptr_base.h \
+ /usr/include/c++/14/bits/allocated_ptr.h \
+ /usr/include/c++/14/bits/unique_ptr.h \
+ /usr/include/c++/14/ext/aligned_buffer.h \
+ /usr/include/c++/14/bits/fs_dir.h /usr/include/c++/14/bits/fs_ops.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/image.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/color.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/math.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/defs.hpp \
+ /usr/include/c++/14/cstring /usr/include/string.h /usr/include/strings.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension/gdextension_interface.h \
+ /usr/include/c++/14/cmath /usr/include/math.h \
+ /usr/include/x86_64-linux-gnu/bits/math-vector.h \
+ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
+ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \
+ /usr/include/x86_64-linux-gnu/bits/fp-fast.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls.h \
+ /usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h \
+ /usr/include/x86_64-linux-gnu/bits/iscanonical.h \
+ /usr/include/c++/14/bits/specfun.h /usr/include/c++/14/tr1/gamma.tcc \
+ /usr/include/c++/14/tr1/special_function_util.h \
+ /usr/include/c++/14/tr1/bessel_function.tcc \
+ /usr/include/c++/14/tr1/beta_function.tcc \
+ /usr/include/c++/14/tr1/ell_integral.tcc \
+ /usr/include/c++/14/tr1/exp_integral.tcc \
+ /usr/include/c++/14/tr1/hypergeometric.tcc \
+ /usr/include/c++/14/tr1/legendre_function.tcc \
+ /usr/include/c++/14/tr1/modified_bessel_func.tcc \
+ /usr/include/c++/14/tr1/poly_hermite.tcc \
+ /usr/include/c++/14/tr1/poly_laguerre.tcc \
+ /usr/include/c++/14/tr1/riemann_zeta.tcc \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/dictionary.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_byte_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/error_macros.hpp \
+ /usr/include/c++/14/atomic /usr/include/c++/14/bits/atomic_base.h \
+ /usr/include/c++/14/bits/atomic_lockfree_defines.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/ref.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/object.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_string.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/memory.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/godot.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/string_name.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/variant.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_types.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector2_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/plane.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/aabb.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/basis.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_vector3_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/projection.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/node_path.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/rid.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/callable.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/signal.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int32_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_int64_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float32_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_float64_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_string_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/packed_color_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/variant_size.hpp \
+ /usr/include/c++/14/array /usr/include/c++/14/compare \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/property_info.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/list.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/ref_counted.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/object.hpp \
+ /usr/include/c++/14/vector /usr/include/c++/14/bits/stl_uninitialized.h \
+ /usr/include/c++/14/bits/stl_vector.h \
+ /usr/include/c++/14/bits/stl_bvector.h \
+ /usr/include/c++/14/bits/vector.tcc \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/class_db.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_bind.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/binder_common.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/type_info.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/global_constants_binds.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/builtin_binds.hpp \
+ /usr/include/c++/14/iostream \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/class_db_singleton.hpp \
+ /usr/include/c++/14/list /usr/include/c++/14/bits/stl_list.h \
+ /usr/include/c++/14/bits/list.tcc /usr/include/c++/14/set \
+ /usr/include/c++/14/bits/stl_tree.h \
+ /usr/include/c++/14/bits/node_handle.h \
+ /usr/include/c++/14/bits/stl_set.h \
+ /usr/include/c++/14/bits/stl_multiset.h \
+ /usr/include/c++/14/bits/erase_if.h /usr/include/c++/14/unordered_map \
+ /usr/include/c++/14/bits/unordered_map.h \
+ /usr/include/c++/14/bits/hashtable.h \
+ /usr/include/c++/14/bits/hashtable_policy.h \
+ /usr/include/c++/14/bits/enable_special_members.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/resource.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/classes/input_event.hpp \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include/libretro.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
+ /usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h \
+ /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/local_lim.h \
+ /usr/include/linux/limits.h \
+ /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/xopen_lim.h \
+ /usr/include/x86_64-linux-gnu/bits/uio_lim.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/yaml.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/parser.h \
+ /usr/include/c++/14/memory /usr/include/c++/14/bits/stl_tempbuf.h \
+ /usr/include/c++/14/bits/stl_raw_storage_iter.h \
+ /usr/include/c++/14/bits/align.h \
+ /usr/include/c++/14/bits/shared_ptr_atomic.h \
+ /usr/include/c++/14/backward/auto_ptr.h \
+ /usr/include/c++/14/pstl/glue_memory_defs.h \
+ /usr/include/c++/14/pstl/execution_defs.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/dll.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitter.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/binary.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterdef.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emittermanip.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/null.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/ostream_wrapper.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/emitterstyle.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/stlemitter.h \
+ /usr/include/c++/14/map /usr/include/c++/14/bits/stl_map.h \
+ /usr/include/c++/14/bits/stl_multimap.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/exceptions.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/mark.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/noexcept.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/traits.h \
+ /usr/include/c++/14/utility /usr/include/c++/14/bits/stl_relops.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/node.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator_fwd.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/ptr.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/type.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/impl.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/memory.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_ref.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_data.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/node_iterator.h \
+ /usr/include/c++/14/iterator /usr/include/c++/14/bits/stream_iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/iterator.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/convert.h \
+ /usr/include/c++/14/valarray /usr/include/c++/14/algorithm \
+ /usr/include/c++/14/bits/stl_algo.h \
+ /usr/include/c++/14/bits/algorithmfwd.h \
+ /usr/include/c++/14/bits/stl_heap.h \
+ /usr/include/c++/14/bits/uniform_int_dist.h \
+ /usr/include/c++/14/pstl/glue_algorithm_defs.h \
+ /usr/include/c++/14/bits/valarray_array.h \
+ /usr/include/c++/14/bits/valarray_array.tcc \
+ /usr/include/c++/14/bits/valarray_before.h \
+ /usr/include/c++/14/bits/slice_array.h \
+ /usr/include/c++/14/bits/valarray_after.h \
+ /usr/include/c++/14/bits/gslice.h \
+ /usr/include/c++/14/bits/gslice_array.h \
+ /usr/include/c++/14/bits/mask_array.h \
+ /usr/include/c++/14/bits/indirect_array.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/detail/impl.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/parse.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include/yaml-cpp/node/emit.h \
+ /usr/include/dlfcn.h /usr/include/x86_64-linux-gnu/bits/dlfcn.h \
+ /usr/include/x86_64-linux-gnu/bits/dl_find_object.h \
+ /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include/godot_cpp/variant/utility_functions.hpp
diff --git a/gdlibretro/CMakeFiles/Makefile.cmake b/gdlibretro/CMakeFiles/Makefile.cmake
new file mode 100644
index 0000000..fdb0404
--- /dev/null
+++ b/gdlibretro/CMakeFiles/Makefile.cmake
@@ -0,0 +1,139 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.30
+
+# The generator used is:
+set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
+
+# The top level Makefile was generated from the following files:
+set(CMAKE_MAKEFILE_DEPENDS
+ "CMakeCache.txt"
+ ".git/HEAD"
+ ".git/refs/heads/master"
+ "CMakeFiles/3.30.3/CMakeCXXCompiler.cmake"
+ "CMakeFiles/3.30.3/CMakeSystem.cmake"
+ "CMakeFiles/VerifyGlobs.cmake"
+ "CMakeFiles/cmake.verify_globs"
+ "CMakeFiles/git-data/grabRef.cmake"
+ "CMakeLists.txt"
+ "cmake/ClangFormat.cmake"
+ "cmake/CompilerWarnings.cmake"
+ "cmake/GetGitRevisionDescription.cmake"
+ "cmake/GetGitRevisionDescription.cmake.in"
+ "cmake/GitVersionInfo.cmake"
+ "cmake/ccache.cmake"
+ "extern/CMakeLists.txt"
+ "extern/godot-cpp/CMakeLists.txt"
+ "extern/godot-cpp/cmake/GodotCompilerWarnings.cmake"
+ "extern/yaml-cpp/CMakeLists.txt"
+ "extern/yaml-cpp/util/CMakeLists.txt"
+ "extern/yaml-cpp/yaml-cpp-config.cmake.in"
+ "extern/yaml-cpp/yaml-cpp.pc.in"
+ "src/CMakeLists.txt"
+ "src/Version.h.in"
+ "template/CMakeLists.txt"
+ "template/template.debug.gdextension.in"
+ "/usr/share/cmake-3.30/Modules/BasicConfigVersion-AnyNewerVersion.cmake.in"
+ "/usr/share/cmake-3.30/Modules/CMakeCXXInformation.cmake"
+ "/usr/share/cmake-3.30/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake"
+ "/usr/share/cmake-3.30/Modules/CMakeCommonLanguageInclude.cmake"
+ "/usr/share/cmake-3.30/Modules/CMakeDependentOption.cmake"
+ "/usr/share/cmake-3.30/Modules/CMakeGenericSystem.cmake"
+ "/usr/share/cmake-3.30/Modules/CMakeInitializeConfigs.cmake"
+ "/usr/share/cmake-3.30/Modules/CMakeLanguageInformation.cmake"
+ "/usr/share/cmake-3.30/Modules/CMakePackageConfigHelpers.cmake"
+ "/usr/share/cmake-3.30/Modules/CMakeSystemSpecificInformation.cmake"
+ "/usr/share/cmake-3.30/Modules/CMakeSystemSpecificInitialize.cmake"
+ "/usr/share/cmake-3.30/Modules/CTest.cmake"
+ "/usr/share/cmake-3.30/Modules/CTestTargets.cmake"
+ "/usr/share/cmake-3.30/Modules/CTestUseLaunchers.cmake"
+ "/usr/share/cmake-3.30/Modules/CheckCXXCompilerFlag.cmake"
+ "/usr/share/cmake-3.30/Modules/CheckCXXSourceCompiles.cmake"
+ "/usr/share/cmake-3.30/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
+ "/usr/share/cmake-3.30/Modules/Compiler/GNU-CXX.cmake"
+ "/usr/share/cmake-3.30/Modules/Compiler/GNU.cmake"
+ "/usr/share/cmake-3.30/Modules/DartConfiguration.tcl.in"
+ "/usr/share/cmake-3.30/Modules/FindGit.cmake"
+ "/usr/share/cmake-3.30/Modules/FindPackageHandleStandardArgs.cmake"
+ "/usr/share/cmake-3.30/Modules/FindPackageMessage.cmake"
+ "/usr/share/cmake-3.30/Modules/FindPython/Support.cmake"
+ "/usr/share/cmake-3.30/Modules/FindPython3.cmake"
+ "/usr/share/cmake-3.30/Modules/GNUInstallDirs.cmake"
+ "/usr/share/cmake-3.30/Modules/Internal/CheckCompilerFlag.cmake"
+ "/usr/share/cmake-3.30/Modules/Internal/CheckFlagCommonConfig.cmake"
+ "/usr/share/cmake-3.30/Modules/Internal/CheckSourceCompiles.cmake"
+ "/usr/share/cmake-3.30/Modules/Platform/Linux-GNU-CXX.cmake"
+ "/usr/share/cmake-3.30/Modules/Platform/Linux-GNU.cmake"
+ "/usr/share/cmake-3.30/Modules/Platform/Linux-Initialize.cmake"
+ "/usr/share/cmake-3.30/Modules/Platform/Linux.cmake"
+ "/usr/share/cmake-3.30/Modules/Platform/UnixPaths.cmake"
+ "/usr/share/cmake-3.30/Modules/WriteBasicConfigVersionFile.cmake"
+ )
+
+# The corresponding makefile is:
+set(CMAKE_MAKEFILE_OUTPUTS
+ "Makefile"
+ "CMakeFiles/cmake.check_cache"
+ )
+
+# Byproducts of CMake generate step:
+set(CMAKE_MAKEFILE_PRODUCTS
+ "CMakeFiles/git-data/HEAD"
+ "CMakeFiles/git-data/grabRef.cmake"
+ "CMakeFiles/git-data/head-ref"
+ "CMakeFiles/git-data/HEAD"
+ "CMakeFiles/git-data/grabRef.cmake"
+ "CMakeFiles/git-data/head-ref"
+ "gen/Version.h"
+ "CMakeFiles/CMakeDirectoryInformation.cmake"
+ "src/CMakeFiles/CMakeDirectoryInformation.cmake"
+ "LibRetroHost/LibRetroHost.gdextension"
+ "template/CMakeFiles/CMakeDirectoryInformation.cmake"
+ "extern/CMakeFiles/CMakeDirectoryInformation.cmake"
+ "extern/godot-cpp/CMakeFiles/CMakeDirectoryInformation.cmake"
+ "extern/yaml-cpp/DartConfiguration.tcl"
+ "extern/yaml-cpp/yaml-cpp-config.cmake"
+ "extern/yaml-cpp/yaml-cpp-config-version.cmake"
+ "extern/yaml-cpp/yaml-cpp.pc"
+ "extern/yaml-cpp/CMakeFiles/CMakeDirectoryInformation.cmake"
+ "extern/yaml-cpp/util/CMakeFiles/CMakeDirectoryInformation.cmake"
+ )
+
+# Dependency information for all targets:
+set(CMAKE_DEPEND_INFO_FILES
+ "CMakeFiles/LibRetroHost.dir/DependInfo.cmake"
+ "CMakeFiles/clang-format.dir/DependInfo.cmake"
+ "template/CMakeFiles/templates.dir/DependInfo.cmake"
+ "extern/godot-cpp/CMakeFiles/godot-cpp.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/Experimental.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/Nightly.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/Continuous.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/NightlyStart.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/NightlyUpdate.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/NightlyConfigure.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/NightlyBuild.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/NightlyTest.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/NightlyCoverage.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/NightlyMemCheck.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/NightlySubmit.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/ExperimentalStart.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/ExperimentalUpdate.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/ExperimentalConfigure.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/ExperimentalBuild.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/ExperimentalTest.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/ExperimentalCoverage.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/ExperimentalSubmit.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/ContinuousStart.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/ContinuousUpdate.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/ContinuousConfigure.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/ContinuousBuild.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/ContinuousTest.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/ContinuousCoverage.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/ContinuousMemCheck.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/ContinuousSubmit.dir/DependInfo.cmake"
+ "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/DependInfo.cmake"
+ "extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir/DependInfo.cmake"
+ "extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir/DependInfo.cmake"
+ "extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir/DependInfo.cmake"
+ )
diff --git a/gdlibretro/CMakeFiles/Makefile2 b/gdlibretro/CMakeFiles/Makefile2
new file mode 100644
index 0000000..c793d9a
--- /dev/null
+++ b/gdlibretro/CMakeFiles/Makefile2
@@ -0,0 +1,1161 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.30
+
+# Default target executed when no arguments are given to make.
+default_target: all
+.PHONY : default_target
+
+#=============================================================================
+# Special targets provided by cmake.
+
+# Disable implicit rules so canonical targets will work.
+.SUFFIXES:
+
+# Disable VCS-based implicit rules.
+% : %,v
+
+# Disable VCS-based implicit rules.
+% : RCS/%
+
+# Disable VCS-based implicit rules.
+% : RCS/%,v
+
+# Disable VCS-based implicit rules.
+% : SCCS/s.%
+
+# Disable VCS-based implicit rules.
+% : s.%
+
+.SUFFIXES: .hpux_make_needs_suffix_list
+
+# Command-line flag to silence nested $(MAKE).
+$(VERBOSE)MAKESILENT = -s
+
+#Suppress display of executed commands.
+$(VERBOSE).SILENT:
+
+# A target that is always out of date.
+cmake_force:
+.PHONY : cmake_force
+
+#=============================================================================
+# Set environment variables for the build.
+
+# The shell in which to execute make rules.
+SHELL = /bin/sh
+
+# The CMake executable.
+CMAKE_COMMAND = /usr/bin/cmake
+
+# The command to remove a file.
+RM = /usr/bin/cmake -E rm -f
+
+# Escaping for special characters.
+EQUALS = =
+
+# The top-level source directory on which CMake was run.
+CMAKE_SOURCE_DIR = /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro
+
+# The top-level build directory on which CMake was run.
+CMAKE_BINARY_DIR = /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro
+
+#=============================================================================
+# Directory level rules for the build root directory
+
+# The main recursive "all" target.
+all: CMakeFiles/LibRetroHost.dir/all
+all: src/all
+all: template/all
+all: extern/all
+.PHONY : all
+
+# The main recursive "preinstall" target.
+preinstall: src/preinstall
+preinstall: template/preinstall
+preinstall: extern/preinstall
+.PHONY : preinstall
+
+# The main recursive "clean" target.
+clean: CMakeFiles/LibRetroHost.dir/clean
+clean: CMakeFiles/clang-format.dir/clean
+clean: src/clean
+clean: template/clean
+clean: extern/clean
+.PHONY : clean
+
+#=============================================================================
+# Directory level rules for directory extern
+
+# Recursive "all" directory target.
+extern/all: extern/godot-cpp/all
+extern/all: extern/yaml-cpp/all
+.PHONY : extern/all
+
+# Recursive "preinstall" directory target.
+extern/preinstall: extern/godot-cpp/preinstall
+extern/preinstall: extern/yaml-cpp/preinstall
+.PHONY : extern/preinstall
+
+# Recursive "clean" directory target.
+extern/clean: extern/godot-cpp/clean
+extern/clean: extern/yaml-cpp/clean
+.PHONY : extern/clean
+
+#=============================================================================
+# Directory level rules for directory extern/godot-cpp
+
+# Recursive "all" directory target.
+extern/godot-cpp/all: extern/godot-cpp/CMakeFiles/godot-cpp.dir/all
+.PHONY : extern/godot-cpp/all
+
+# Recursive "preinstall" directory target.
+extern/godot-cpp/preinstall:
+.PHONY : extern/godot-cpp/preinstall
+
+# Recursive "clean" directory target.
+extern/godot-cpp/clean: extern/godot-cpp/CMakeFiles/godot-cpp.dir/clean
+.PHONY : extern/godot-cpp/clean
+
+#=============================================================================
+# Directory level rules for directory extern/yaml-cpp
+
+# Recursive "all" directory target.
+extern/yaml-cpp/all: extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/all
+extern/yaml-cpp/all: extern/yaml-cpp/util/all
+.PHONY : extern/yaml-cpp/all
+
+# Recursive "preinstall" directory target.
+extern/yaml-cpp/preinstall: extern/yaml-cpp/util/preinstall
+.PHONY : extern/yaml-cpp/preinstall
+
+# Recursive "clean" directory target.
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/Experimental.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/Nightly.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/Continuous.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/NightlyStart.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/NightlyUpdate.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/NightlyConfigure.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/NightlyBuild.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/NightlyTest.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/NightlyCoverage.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/NightlyMemCheck.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/NightlySubmit.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/ExperimentalStart.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/ExperimentalUpdate.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/ExperimentalConfigure.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/ExperimentalBuild.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/ExperimentalTest.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/ExperimentalCoverage.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/ExperimentalSubmit.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/ContinuousStart.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/ContinuousUpdate.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/ContinuousConfigure.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/ContinuousBuild.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/ContinuousTest.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/ContinuousCoverage.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/ContinuousMemCheck.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/ContinuousSubmit.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/clean
+extern/yaml-cpp/clean: extern/yaml-cpp/util/clean
+.PHONY : extern/yaml-cpp/clean
+
+#=============================================================================
+# Directory level rules for directory extern/yaml-cpp/util
+
+# Recursive "all" directory target.
+extern/yaml-cpp/util/all: extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir/all
+extern/yaml-cpp/util/all: extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir/all
+extern/yaml-cpp/util/all: extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir/all
+.PHONY : extern/yaml-cpp/util/all
+
+# Recursive "preinstall" directory target.
+extern/yaml-cpp/util/preinstall:
+.PHONY : extern/yaml-cpp/util/preinstall
+
+# Recursive "clean" directory target.
+extern/yaml-cpp/util/clean: extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir/clean
+extern/yaml-cpp/util/clean: extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir/clean
+extern/yaml-cpp/util/clean: extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir/clean
+.PHONY : extern/yaml-cpp/util/clean
+
+#=============================================================================
+# Directory level rules for directory src
+
+# Recursive "all" directory target.
+src/all:
+.PHONY : src/all
+
+# Recursive "preinstall" directory target.
+src/preinstall:
+.PHONY : src/preinstall
+
+# Recursive "clean" directory target.
+src/clean:
+.PHONY : src/clean
+
+#=============================================================================
+# Directory level rules for directory template
+
+# Recursive "all" directory target.
+template/all:
+.PHONY : template/all
+
+# Recursive "preinstall" directory target.
+template/preinstall:
+.PHONY : template/preinstall
+
+# Recursive "clean" directory target.
+template/clean: template/CMakeFiles/templates.dir/clean
+.PHONY : template/clean
+
+#=============================================================================
+# Target rules for target CMakeFiles/LibRetroHost.dir
+
+# All Build rule for target.
+CMakeFiles/LibRetroHost.dir/all: template/CMakeFiles/templates.dir/all
+CMakeFiles/LibRetroHost.dir/all: extern/godot-cpp/CMakeFiles/godot-cpp.dir/all
+CMakeFiles/LibRetroHost.dir/all: extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/all
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/depend
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target LibRetroHost"
+.PHONY : CMakeFiles/LibRetroHost.dir/all
+
+# Build rule for subdir invocation for target.
+CMakeFiles/LibRetroHost.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 98
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/LibRetroHost.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : CMakeFiles/LibRetroHost.dir/rule
+
+# Convenience name for target.
+LibRetroHost: CMakeFiles/LibRetroHost.dir/rule
+.PHONY : LibRetroHost
+
+# clean rule for target.
+CMakeFiles/LibRetroHost.dir/clean:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/clean
+.PHONY : CMakeFiles/LibRetroHost.dir/clean
+
+#=============================================================================
+# Target rules for target CMakeFiles/clang-format.dir
+
+# All Build rule for target.
+CMakeFiles/clang-format.dir/all:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/clang-format.dir/build.make CMakeFiles/clang-format.dir/depend
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/clang-format.dir/build.make CMakeFiles/clang-format.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num=1 "Built target clang-format"
+.PHONY : CMakeFiles/clang-format.dir/all
+
+# Build rule for subdir invocation for target.
+CMakeFiles/clang-format.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 1
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/clang-format.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : CMakeFiles/clang-format.dir/rule
+
+# Convenience name for target.
+clang-format: CMakeFiles/clang-format.dir/rule
+.PHONY : clang-format
+
+# clean rule for target.
+CMakeFiles/clang-format.dir/clean:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/clang-format.dir/build.make CMakeFiles/clang-format.dir/clean
+.PHONY : CMakeFiles/clang-format.dir/clean
+
+#=============================================================================
+# Target rules for target template/CMakeFiles/templates.dir
+
+# All Build rule for target.
+template/CMakeFiles/templates.dir/all:
+ $(MAKE) $(MAKESILENT) -f template/CMakeFiles/templates.dir/build.make template/CMakeFiles/templates.dir/depend
+ $(MAKE) $(MAKESILENT) -f template/CMakeFiles/templates.dir/build.make template/CMakeFiles/templates.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target templates"
+.PHONY : template/CMakeFiles/templates.dir/all
+
+# Build rule for subdir invocation for target.
+template/CMakeFiles/templates.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 template/CMakeFiles/templates.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : template/CMakeFiles/templates.dir/rule
+
+# Convenience name for target.
+templates: template/CMakeFiles/templates.dir/rule
+.PHONY : templates
+
+# clean rule for target.
+template/CMakeFiles/templates.dir/clean:
+ $(MAKE) $(MAKESILENT) -f template/CMakeFiles/templates.dir/build.make template/CMakeFiles/templates.dir/clean
+.PHONY : template/CMakeFiles/templates.dir/clean
+
+#=============================================================================
+# Target rules for target extern/godot-cpp/CMakeFiles/godot-cpp.dir
+
+# All Build rule for target.
+extern/godot-cpp/CMakeFiles/godot-cpp.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/godot-cpp/CMakeFiles/godot-cpp.dir/build.make extern/godot-cpp/CMakeFiles/godot-cpp.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/godot-cpp/CMakeFiles/godot-cpp.dir/build.make extern/godot-cpp/CMakeFiles/godot-cpp.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96 "Built target godot-cpp"
+.PHONY : extern/godot-cpp/CMakeFiles/godot-cpp.dir/all
+
+# Build rule for subdir invocation for target.
+extern/godot-cpp/CMakeFiles/godot-cpp.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 95
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/godot-cpp/CMakeFiles/godot-cpp.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/godot-cpp/CMakeFiles/godot-cpp.dir/rule
+
+# Convenience name for target.
+godot-cpp: extern/godot-cpp/CMakeFiles/godot-cpp.dir/rule
+.PHONY : godot-cpp
+
+# clean rule for target.
+extern/godot-cpp/CMakeFiles/godot-cpp.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/godot-cpp/CMakeFiles/godot-cpp.dir/build.make extern/godot-cpp/CMakeFiles/godot-cpp.dir/clean
+.PHONY : extern/godot-cpp/CMakeFiles/godot-cpp.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/Experimental.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/Experimental.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/Experimental.dir/build.make extern/yaml-cpp/CMakeFiles/Experimental.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/Experimental.dir/build.make extern/yaml-cpp/CMakeFiles/Experimental.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target Experimental"
+.PHONY : extern/yaml-cpp/CMakeFiles/Experimental.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/Experimental.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/Experimental.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/Experimental.dir/rule
+
+# Convenience name for target.
+Experimental: extern/yaml-cpp/CMakeFiles/Experimental.dir/rule
+.PHONY : Experimental
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/Experimental.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/Experimental.dir/build.make extern/yaml-cpp/CMakeFiles/Experimental.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/Experimental.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/Nightly.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/Nightly.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/Nightly.dir/build.make extern/yaml-cpp/CMakeFiles/Nightly.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/Nightly.dir/build.make extern/yaml-cpp/CMakeFiles/Nightly.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target Nightly"
+.PHONY : extern/yaml-cpp/CMakeFiles/Nightly.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/Nightly.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/Nightly.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/Nightly.dir/rule
+
+# Convenience name for target.
+Nightly: extern/yaml-cpp/CMakeFiles/Nightly.dir/rule
+.PHONY : Nightly
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/Nightly.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/Nightly.dir/build.make extern/yaml-cpp/CMakeFiles/Nightly.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/Nightly.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/Continuous.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/Continuous.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/Continuous.dir/build.make extern/yaml-cpp/CMakeFiles/Continuous.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/Continuous.dir/build.make extern/yaml-cpp/CMakeFiles/Continuous.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target Continuous"
+.PHONY : extern/yaml-cpp/CMakeFiles/Continuous.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/Continuous.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/Continuous.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/Continuous.dir/rule
+
+# Convenience name for target.
+Continuous: extern/yaml-cpp/CMakeFiles/Continuous.dir/rule
+.PHONY : Continuous
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/Continuous.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/Continuous.dir/build.make extern/yaml-cpp/CMakeFiles/Continuous.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/Continuous.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target NightlyMemoryCheck"
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck.dir/rule
+
+# Convenience name for target.
+NightlyMemoryCheck: extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck.dir/rule
+.PHONY : NightlyMemoryCheck
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/NightlyStart.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/NightlyStart.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyStart.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyStart.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyStart.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyStart.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target NightlyStart"
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyStart.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/NightlyStart.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/NightlyStart.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyStart.dir/rule
+
+# Convenience name for target.
+NightlyStart: extern/yaml-cpp/CMakeFiles/NightlyStart.dir/rule
+.PHONY : NightlyStart
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/NightlyStart.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyStart.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyStart.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyStart.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/NightlyUpdate.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/NightlyUpdate.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyUpdate.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyUpdate.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyUpdate.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyUpdate.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target NightlyUpdate"
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyUpdate.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/NightlyUpdate.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/NightlyUpdate.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyUpdate.dir/rule
+
+# Convenience name for target.
+NightlyUpdate: extern/yaml-cpp/CMakeFiles/NightlyUpdate.dir/rule
+.PHONY : NightlyUpdate
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/NightlyUpdate.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyUpdate.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyUpdate.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyUpdate.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/NightlyConfigure.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/NightlyConfigure.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyConfigure.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyConfigure.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyConfigure.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyConfigure.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target NightlyConfigure"
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyConfigure.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/NightlyConfigure.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/NightlyConfigure.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyConfigure.dir/rule
+
+# Convenience name for target.
+NightlyConfigure: extern/yaml-cpp/CMakeFiles/NightlyConfigure.dir/rule
+.PHONY : NightlyConfigure
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/NightlyConfigure.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyConfigure.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyConfigure.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyConfigure.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/NightlyBuild.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/NightlyBuild.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyBuild.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyBuild.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyBuild.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyBuild.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target NightlyBuild"
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyBuild.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/NightlyBuild.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/NightlyBuild.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyBuild.dir/rule
+
+# Convenience name for target.
+NightlyBuild: extern/yaml-cpp/CMakeFiles/NightlyBuild.dir/rule
+.PHONY : NightlyBuild
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/NightlyBuild.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyBuild.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyBuild.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyBuild.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/NightlyTest.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/NightlyTest.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyTest.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyTest.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyTest.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyTest.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target NightlyTest"
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyTest.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/NightlyTest.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/NightlyTest.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyTest.dir/rule
+
+# Convenience name for target.
+NightlyTest: extern/yaml-cpp/CMakeFiles/NightlyTest.dir/rule
+.PHONY : NightlyTest
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/NightlyTest.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyTest.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyTest.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyTest.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/NightlyCoverage.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/NightlyCoverage.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyCoverage.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyCoverage.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyCoverage.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyCoverage.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target NightlyCoverage"
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyCoverage.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/NightlyCoverage.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/NightlyCoverage.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyCoverage.dir/rule
+
+# Convenience name for target.
+NightlyCoverage: extern/yaml-cpp/CMakeFiles/NightlyCoverage.dir/rule
+.PHONY : NightlyCoverage
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/NightlyCoverage.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyCoverage.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyCoverage.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyCoverage.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/NightlyMemCheck.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/NightlyMemCheck.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyMemCheck.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyMemCheck.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyMemCheck.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyMemCheck.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target NightlyMemCheck"
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyMemCheck.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/NightlyMemCheck.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/NightlyMemCheck.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyMemCheck.dir/rule
+
+# Convenience name for target.
+NightlyMemCheck: extern/yaml-cpp/CMakeFiles/NightlyMemCheck.dir/rule
+.PHONY : NightlyMemCheck
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/NightlyMemCheck.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyMemCheck.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyMemCheck.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlyMemCheck.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/NightlySubmit.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/NightlySubmit.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlySubmit.dir/build.make extern/yaml-cpp/CMakeFiles/NightlySubmit.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlySubmit.dir/build.make extern/yaml-cpp/CMakeFiles/NightlySubmit.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target NightlySubmit"
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlySubmit.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/NightlySubmit.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/NightlySubmit.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlySubmit.dir/rule
+
+# Convenience name for target.
+NightlySubmit: extern/yaml-cpp/CMakeFiles/NightlySubmit.dir/rule
+.PHONY : NightlySubmit
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/NightlySubmit.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlySubmit.dir/build.make extern/yaml-cpp/CMakeFiles/NightlySubmit.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/NightlySubmit.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/ExperimentalStart.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalStart.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalStart.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalStart.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalStart.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalStart.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target ExperimentalStart"
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalStart.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalStart.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/ExperimentalStart.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalStart.dir/rule
+
+# Convenience name for target.
+ExperimentalStart: extern/yaml-cpp/CMakeFiles/ExperimentalStart.dir/rule
+.PHONY : ExperimentalStart
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalStart.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalStart.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalStart.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalStart.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/ExperimentalUpdate.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalUpdate.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalUpdate.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalUpdate.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalUpdate.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalUpdate.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target ExperimentalUpdate"
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalUpdate.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalUpdate.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/ExperimentalUpdate.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalUpdate.dir/rule
+
+# Convenience name for target.
+ExperimentalUpdate: extern/yaml-cpp/CMakeFiles/ExperimentalUpdate.dir/rule
+.PHONY : ExperimentalUpdate
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalUpdate.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalUpdate.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalUpdate.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalUpdate.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/ExperimentalConfigure.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalConfigure.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalConfigure.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalConfigure.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalConfigure.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalConfigure.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target ExperimentalConfigure"
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalConfigure.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalConfigure.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/ExperimentalConfigure.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalConfigure.dir/rule
+
+# Convenience name for target.
+ExperimentalConfigure: extern/yaml-cpp/CMakeFiles/ExperimentalConfigure.dir/rule
+.PHONY : ExperimentalConfigure
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalConfigure.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalConfigure.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalConfigure.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalConfigure.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/ExperimentalBuild.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalBuild.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalBuild.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalBuild.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalBuild.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalBuild.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target ExperimentalBuild"
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalBuild.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalBuild.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/ExperimentalBuild.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalBuild.dir/rule
+
+# Convenience name for target.
+ExperimentalBuild: extern/yaml-cpp/CMakeFiles/ExperimentalBuild.dir/rule
+.PHONY : ExperimentalBuild
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalBuild.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalBuild.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalBuild.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalBuild.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/ExperimentalTest.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalTest.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalTest.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalTest.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalTest.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalTest.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target ExperimentalTest"
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalTest.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalTest.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/ExperimentalTest.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalTest.dir/rule
+
+# Convenience name for target.
+ExperimentalTest: extern/yaml-cpp/CMakeFiles/ExperimentalTest.dir/rule
+.PHONY : ExperimentalTest
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalTest.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalTest.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalTest.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalTest.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/ExperimentalCoverage.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalCoverage.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalCoverage.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalCoverage.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalCoverage.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalCoverage.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target ExperimentalCoverage"
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalCoverage.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalCoverage.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/ExperimentalCoverage.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalCoverage.dir/rule
+
+# Convenience name for target.
+ExperimentalCoverage: extern/yaml-cpp/CMakeFiles/ExperimentalCoverage.dir/rule
+.PHONY : ExperimentalCoverage
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalCoverage.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalCoverage.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalCoverage.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalCoverage.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target ExperimentalMemCheck"
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck.dir/rule
+
+# Convenience name for target.
+ExperimentalMemCheck: extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck.dir/rule
+.PHONY : ExperimentalMemCheck
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/ExperimentalSubmit.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalSubmit.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalSubmit.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalSubmit.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalSubmit.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalSubmit.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target ExperimentalSubmit"
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalSubmit.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalSubmit.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/ExperimentalSubmit.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalSubmit.dir/rule
+
+# Convenience name for target.
+ExperimentalSubmit: extern/yaml-cpp/CMakeFiles/ExperimentalSubmit.dir/rule
+.PHONY : ExperimentalSubmit
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/ExperimentalSubmit.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalSubmit.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalSubmit.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/ExperimentalSubmit.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/ContinuousStart.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/ContinuousStart.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousStart.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousStart.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousStart.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousStart.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target ContinuousStart"
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousStart.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/ContinuousStart.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/ContinuousStart.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousStart.dir/rule
+
+# Convenience name for target.
+ContinuousStart: extern/yaml-cpp/CMakeFiles/ContinuousStart.dir/rule
+.PHONY : ContinuousStart
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/ContinuousStart.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousStart.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousStart.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousStart.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/ContinuousUpdate.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/ContinuousUpdate.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousUpdate.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousUpdate.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousUpdate.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousUpdate.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target ContinuousUpdate"
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousUpdate.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/ContinuousUpdate.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/ContinuousUpdate.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousUpdate.dir/rule
+
+# Convenience name for target.
+ContinuousUpdate: extern/yaml-cpp/CMakeFiles/ContinuousUpdate.dir/rule
+.PHONY : ContinuousUpdate
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/ContinuousUpdate.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousUpdate.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousUpdate.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousUpdate.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/ContinuousConfigure.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/ContinuousConfigure.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousConfigure.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousConfigure.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousConfigure.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousConfigure.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target ContinuousConfigure"
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousConfigure.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/ContinuousConfigure.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/ContinuousConfigure.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousConfigure.dir/rule
+
+# Convenience name for target.
+ContinuousConfigure: extern/yaml-cpp/CMakeFiles/ContinuousConfigure.dir/rule
+.PHONY : ContinuousConfigure
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/ContinuousConfigure.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousConfigure.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousConfigure.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousConfigure.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/ContinuousBuild.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/ContinuousBuild.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousBuild.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousBuild.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousBuild.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousBuild.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target ContinuousBuild"
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousBuild.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/ContinuousBuild.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/ContinuousBuild.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousBuild.dir/rule
+
+# Convenience name for target.
+ContinuousBuild: extern/yaml-cpp/CMakeFiles/ContinuousBuild.dir/rule
+.PHONY : ContinuousBuild
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/ContinuousBuild.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousBuild.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousBuild.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousBuild.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/ContinuousTest.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/ContinuousTest.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousTest.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousTest.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousTest.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousTest.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target ContinuousTest"
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousTest.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/ContinuousTest.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/ContinuousTest.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousTest.dir/rule
+
+# Convenience name for target.
+ContinuousTest: extern/yaml-cpp/CMakeFiles/ContinuousTest.dir/rule
+.PHONY : ContinuousTest
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/ContinuousTest.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousTest.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousTest.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousTest.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/ContinuousCoverage.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/ContinuousCoverage.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousCoverage.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousCoverage.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousCoverage.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousCoverage.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target ContinuousCoverage"
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousCoverage.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/ContinuousCoverage.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/ContinuousCoverage.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousCoverage.dir/rule
+
+# Convenience name for target.
+ContinuousCoverage: extern/yaml-cpp/CMakeFiles/ContinuousCoverage.dir/rule
+.PHONY : ContinuousCoverage
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/ContinuousCoverage.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousCoverage.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousCoverage.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousCoverage.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/ContinuousMemCheck.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/ContinuousMemCheck.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousMemCheck.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousMemCheck.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousMemCheck.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousMemCheck.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target ContinuousMemCheck"
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousMemCheck.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/ContinuousMemCheck.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/ContinuousMemCheck.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousMemCheck.dir/rule
+
+# Convenience name for target.
+ContinuousMemCheck: extern/yaml-cpp/CMakeFiles/ContinuousMemCheck.dir/rule
+.PHONY : ContinuousMemCheck
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/ContinuousMemCheck.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousMemCheck.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousMemCheck.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousMemCheck.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/ContinuousSubmit.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/ContinuousSubmit.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousSubmit.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousSubmit.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousSubmit.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousSubmit.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target ContinuousSubmit"
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousSubmit.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/ContinuousSubmit.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/ContinuousSubmit.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousSubmit.dir/rule
+
+# Convenience name for target.
+ContinuousSubmit: extern/yaml-cpp/CMakeFiles/ContinuousSubmit.dir/rule
+.PHONY : ContinuousSubmit
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/ContinuousSubmit.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousSubmit.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousSubmit.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/ContinuousSubmit.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/CMakeFiles/yaml-cpp.dir
+
+# All Build rule for target.
+extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/all:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/build.make extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/build.make extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num=97,98,99 "Built target yaml-cpp"
+.PHONY : extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 3
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/rule
+
+# Convenience name for target.
+yaml-cpp: extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/rule
+.PHONY : yaml-cpp
+
+# clean rule for target.
+extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/build.make extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/clean
+.PHONY : extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir
+
+# All Build rule for target.
+extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir/all: extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/all
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir/build.make extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir/build.make extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num=100 "Built target yaml-cpp-sandbox"
+.PHONY : extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 4
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir/rule
+
+# Convenience name for target.
+yaml-cpp-sandbox: extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir/rule
+.PHONY : yaml-cpp-sandbox
+
+# clean rule for target.
+extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir/build.make extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir/clean
+.PHONY : extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir
+
+# All Build rule for target.
+extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir/all: extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/all
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir/build.make extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir/build.make extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target yaml-cpp-parse"
+.PHONY : extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 3
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir/rule
+
+# Convenience name for target.
+yaml-cpp-parse: extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir/rule
+.PHONY : yaml-cpp-parse
+
+# clean rule for target.
+extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir/build.make extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir/clean
+.PHONY : extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir/clean
+
+#=============================================================================
+# Target rules for target extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir
+
+# All Build rule for target.
+extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir/all: extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/all
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir/build.make extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir/depend
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir/build.make extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num= "Built target yaml-cpp-read"
+.PHONY : extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir/all
+
+# Build rule for subdir invocation for target.
+extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 3
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir/rule
+
+# Convenience name for target.
+yaml-cpp-read: extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir/rule
+.PHONY : yaml-cpp-read
+
+# clean rule for target.
+extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir/clean:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir/build.make extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir/clean
+.PHONY : extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir/clean
+
+#=============================================================================
+# Special targets to cleanup operation of make.
+
+# Special rule to run CMake to check the build system integrity.
+# No rule that depends on this can have commands that come from listfiles
+# because they might be regenerated.
+cmake_check_build_system:
+ $(CMAKE_COMMAND) -P /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/VerifyGlobs.cmake
+ $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
+.PHONY : cmake_check_build_system
+
diff --git a/gdlibretro/CMakeFiles/TargetDirectories.txt b/gdlibretro/CMakeFiles/TargetDirectories.txt
new file mode 100644
index 0000000..9ac2d0a
--- /dev/null
+++ b/gdlibretro/CMakeFiles/TargetDirectories.txt
@@ -0,0 +1,78 @@
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/LibRetroHost.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/clang-format.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/edit_cache.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/rebuild_cache.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/list_install_components.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/install.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/install/local.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/install/strip.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CMakeFiles/edit_cache.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CMakeFiles/rebuild_cache.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CMakeFiles/list_install_components.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CMakeFiles/install.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CMakeFiles/install/local.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CMakeFiles/install/strip.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/template/CMakeFiles/templates.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/template/CMakeFiles/edit_cache.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/template/CMakeFiles/rebuild_cache.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/template/CMakeFiles/list_install_components.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/template/CMakeFiles/install.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/template/CMakeFiles/install/local.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/template/CMakeFiles/install/strip.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/CMakeFiles/edit_cache.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/CMakeFiles/rebuild_cache.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/CMakeFiles/list_install_components.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/CMakeFiles/install.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/CMakeFiles/install/local.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/CMakeFiles/install/strip.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/CMakeFiles/godot-cpp.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/CMakeFiles/edit_cache.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/CMakeFiles/rebuild_cache.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/CMakeFiles/list_install_components.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/CMakeFiles/install.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/CMakeFiles/install/local.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/CMakeFiles/install/strip.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/Experimental.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/Nightly.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/Continuous.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/NightlyStart.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/NightlyUpdate.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/NightlyConfigure.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/NightlyBuild.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/NightlyTest.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/NightlyCoverage.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/NightlyMemCheck.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/NightlySubmit.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/ExperimentalStart.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/ExperimentalUpdate.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/ExperimentalConfigure.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/ExperimentalBuild.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/ExperimentalTest.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/ExperimentalCoverage.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/ExperimentalSubmit.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/ContinuousStart.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/ContinuousUpdate.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/ContinuousConfigure.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/ContinuousBuild.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/ContinuousTest.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/ContinuousCoverage.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/ContinuousMemCheck.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/ContinuousSubmit.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/yaml-cpp.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/edit_cache.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/rebuild_cache.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/list_install_components.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/install.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/install/local.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/CMakeFiles/install/strip.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/util/CMakeFiles/edit_cache.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/util/CMakeFiles/rebuild_cache.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/util/CMakeFiles/list_install_components.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/util/CMakeFiles/install.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/util/CMakeFiles/install/local.dir
+/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/util/CMakeFiles/install/strip.dir
diff --git a/gdlibretro/CMakeFiles/VerifyGlobs.cmake b/gdlibretro/CMakeFiles/VerifyGlobs.cmake
new file mode 100644
index 0000000..9aa0a37
--- /dev/null
+++ b/gdlibretro/CMakeFiles/VerifyGlobs.cmake
@@ -0,0 +1,157 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by CMake Version 3.30
+cmake_policy(SET CMP0009 NEW)
+
+# yaml-cpp-sources at extern/yaml-cpp/CMakeLists.txt:71 (file)
+file(GLOB NEW_GLOB LIST_DIRECTORIES true "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/*.cpp")
+set(OLD_GLOB
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/binary.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/convert.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/depthguard.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/directives.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/emit.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/emitfromevents.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/emitter.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/emitterstate.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/emitterutils.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/exceptions.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/exp.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/memory.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/node.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/node_data.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/nodebuilder.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/nodeevents.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/null.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/ostream_wrapper.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/parse.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/parser.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/regex_yaml.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/scanner.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/scanscalar.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/scantag.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/scantoken.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/simplekey.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/singledocparser.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/stream.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/tag.cpp"
+ )
+if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}")
+ message("-- GLOB mismatch!")
+ file(TOUCH_NOCREATE "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/cmake.verify_globs")
+endif()
+
+# yaml-cpp-contrib-sources at extern/yaml-cpp/CMakeLists.txt:70 (file)
+file(GLOB NEW_GLOB LIST_DIRECTORIES true "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/contrib/*.cpp")
+set(OLD_GLOB
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/contrib/graphbuilder.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/contrib/graphbuilderadapter.cpp"
+ )
+if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}")
+ message("-- GLOB mismatch!")
+ file(TOUCH_NOCREATE "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/cmake.verify_globs")
+endif()
+
+# HEADERS at extern/godot-cpp/CMakeLists.txt:150 (file)
+file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/*.h**")
+set(OLD_GLOB
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/editor_plugin_registration.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/ref.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/classes/wrapped.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/binder_common.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/builtin_ptrcall.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/class_db.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/defs.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/engine_ptrcall.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/error_macros.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/math.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/memory.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_bind.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/method_ptrcall.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/mutex_lock.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/object.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/property_info.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/core/type_info.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/godot.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/cowdata.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/hash_map.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/hash_set.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/hashfuncs.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/list.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/local_vector.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/pair.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/rb_map.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/rb_set.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/rid_owner.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/safe_refcount.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/search_array.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/self_list.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/sort_array.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/spin_lock.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/thread_work_pool.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/vector.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/vmap.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/templates/vset.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/aabb.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/array_helpers.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/basis.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_string.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/char_utils.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/color.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/color_names.inc.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/plane.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/projection.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/quaternion.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/rect2i.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform2d.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/transform3d.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/typed_array.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/variant.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector2i.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector3i.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4.hpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include/godot_cpp/variant/vector4i.hpp"
+ )
+if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}")
+ message("-- GLOB mismatch!")
+ file(TOUCH_NOCREATE "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/cmake.verify_globs")
+endif()
+
+# SOURCES at extern/godot-cpp/CMakeLists.txt:149 (file)
+file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/*.c**")
+set(OLD_GLOB
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/classes/editor_plugin_registration.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/classes/low_level.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/classes/wrapped.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/core/class_db.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/core/error_macros.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/core/memory.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/core/method_bind.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/core/object.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/godot.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/aabb.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/basis.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/char_string.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/color.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/packed_arrays.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/plane.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/projection.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/quaternion.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/rect2.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/rect2i.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/transform2d.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/transform3d.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/variant.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/vector2.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/vector2i.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/vector3.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/vector3i.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/vector4.cpp"
+ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/vector4i.cpp"
+ )
+if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}")
+ message("-- GLOB mismatch!")
+ file(TOUCH_NOCREATE "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/cmake.verify_globs")
+endif()
diff --git a/gdlibretro/CMakeFiles/clang-format.dir/DependInfo.cmake b/gdlibretro/CMakeFiles/clang-format.dir/DependInfo.cmake
new file mode 100644
index 0000000..29b95a5
--- /dev/null
+++ b/gdlibretro/CMakeFiles/clang-format.dir/DependInfo.cmake
@@ -0,0 +1,22 @@
+
+# Consider dependencies only in project.
+set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
+
+# The set of languages for which implicit dependencies are needed:
+set(CMAKE_DEPENDS_LANGUAGES
+ )
+
+# The set of dependency files which are needed:
+set(CMAKE_DEPENDS_DEPENDENCY_FILES
+ )
+
+# Targets to which this target links which contain Fortran sources.
+set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
+ )
+
+# Targets to which this target links which contain Fortran sources.
+set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
+ )
+
+# Fortran module output directory.
+set(CMAKE_Fortran_TARGET_MODULE_DIR "")
diff --git a/gdlibretro/CMakeFiles/clang-format.dir/build.make b/gdlibretro/CMakeFiles/clang-format.dir/build.make
new file mode 100644
index 0000000..8052efe
--- /dev/null
+++ b/gdlibretro/CMakeFiles/clang-format.dir/build.make
@@ -0,0 +1,88 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.30
+
+# Delete rule output on recipe failure.
+.DELETE_ON_ERROR:
+
+#=============================================================================
+# Special targets provided by cmake.
+
+# Disable implicit rules so canonical targets will work.
+.SUFFIXES:
+
+# Disable VCS-based implicit rules.
+% : %,v
+
+# Disable VCS-based implicit rules.
+% : RCS/%
+
+# Disable VCS-based implicit rules.
+% : RCS/%,v
+
+# Disable VCS-based implicit rules.
+% : SCCS/s.%
+
+# Disable VCS-based implicit rules.
+% : s.%
+
+.SUFFIXES: .hpux_make_needs_suffix_list
+
+# Command-line flag to silence nested $(MAKE).
+$(VERBOSE)MAKESILENT = -s
+
+#Suppress display of executed commands.
+$(VERBOSE).SILENT:
+
+# A target that is always out of date.
+cmake_force:
+.PHONY : cmake_force
+
+#=============================================================================
+# Set environment variables for the build.
+
+# The shell in which to execute make rules.
+SHELL = /bin/sh
+
+# The CMake executable.
+CMAKE_COMMAND = /usr/bin/cmake
+
+# The command to remove a file.
+RM = /usr/bin/cmake -E rm -f
+
+# Escaping for special characters.
+EQUALS = =
+
+# The top-level source directory on which CMake was run.
+CMAKE_SOURCE_DIR = /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro
+
+# The top-level build directory on which CMake was run.
+CMAKE_BINARY_DIR = /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro
+
+# Utility rule file for clang-format.
+
+# Include any custom commands dependencies for this target.
+include CMakeFiles/clang-format.dir/compiler_depend.make
+
+# Include the progress variables for this target.
+include CMakeFiles/clang-format.dir/progress.make
+
+CMakeFiles/clang-format:
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running clang-format..."
+ /usr/bin/clang-format --style=file -i /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RegisterExtension.cpp /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.hpp /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.cpp /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CoreEnvironment.cpp /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CoreVariables.cpp /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Audio.cpp /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Input.cpp /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Video.cpp /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/KeyboardMap.hpp /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/VFS.cpp
+
+clang-format: CMakeFiles/clang-format
+clang-format: CMakeFiles/clang-format.dir/build.make
+.PHONY : clang-format
+
+# Rule to build all files generated by this target.
+CMakeFiles/clang-format.dir/build: clang-format
+.PHONY : CMakeFiles/clang-format.dir/build
+
+CMakeFiles/clang-format.dir/clean:
+ $(CMAKE_COMMAND) -P CMakeFiles/clang-format.dir/cmake_clean.cmake
+.PHONY : CMakeFiles/clang-format.dir/clean
+
+CMakeFiles/clang-format.dir/depend:
+ cd /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/clang-format.dir/DependInfo.cmake "--color=$(COLOR)"
+.PHONY : CMakeFiles/clang-format.dir/depend
+
diff --git a/gdlibretro/CMakeFiles/clang-format.dir/cmake_clean.cmake b/gdlibretro/CMakeFiles/clang-format.dir/cmake_clean.cmake
new file mode 100644
index 0000000..115aa69
--- /dev/null
+++ b/gdlibretro/CMakeFiles/clang-format.dir/cmake_clean.cmake
@@ -0,0 +1,8 @@
+file(REMOVE_RECURSE
+ "CMakeFiles/clang-format"
+)
+
+# Per-language clean rules from dependency scanning.
+foreach(lang )
+ include(CMakeFiles/clang-format.dir/cmake_clean_${lang}.cmake OPTIONAL)
+endforeach()
diff --git a/gdlibretro/CMakeFiles/clang-format.dir/compiler_depend.make b/gdlibretro/CMakeFiles/clang-format.dir/compiler_depend.make
new file mode 100644
index 0000000..bd011cf
--- /dev/null
+++ b/gdlibretro/CMakeFiles/clang-format.dir/compiler_depend.make
@@ -0,0 +1,2 @@
+# Empty custom commands generated dependencies file for clang-format.
+# This may be replaced when dependencies are built.
diff --git a/gdlibretro/CMakeFiles/clang-format.dir/compiler_depend.ts b/gdlibretro/CMakeFiles/clang-format.dir/compiler_depend.ts
new file mode 100644
index 0000000..152fb1e
--- /dev/null
+++ b/gdlibretro/CMakeFiles/clang-format.dir/compiler_depend.ts
@@ -0,0 +1,2 @@
+# CMAKE generated file: DO NOT EDIT!
+# Timestamp file for custom commands dependencies management for clang-format.
diff --git a/gdlibretro/CMakeFiles/clang-format.dir/progress.make b/gdlibretro/CMakeFiles/clang-format.dir/progress.make
new file mode 100644
index 0000000..781c7de
--- /dev/null
+++ b/gdlibretro/CMakeFiles/clang-format.dir/progress.make
@@ -0,0 +1,2 @@
+CMAKE_PROGRESS_1 = 1
+
diff --git a/gdlibretro/CMakeFiles/cmake.check_cache b/gdlibretro/CMakeFiles/cmake.check_cache
new file mode 100644
index 0000000..3dccd73
--- /dev/null
+++ b/gdlibretro/CMakeFiles/cmake.check_cache
@@ -0,0 +1 @@
+# This file is generated by cmake for dependency checking of the CMakeCache.txt file
diff --git a/gdlibretro/CMakeFiles/cmake.verify_globs b/gdlibretro/CMakeFiles/cmake.verify_globs
new file mode 100644
index 0000000..2b38fac
--- /dev/null
+++ b/gdlibretro/CMakeFiles/cmake.verify_globs
@@ -0,0 +1 @@
+# This file is generated by CMake for checking of the VerifyGlobs.cmake file
diff --git a/gdlibretro/CMakeFiles/git-data/HEAD b/gdlibretro/CMakeFiles/git-data/HEAD
new file mode 100644
index 0000000..cb089cd
--- /dev/null
+++ b/gdlibretro/CMakeFiles/git-data/HEAD
@@ -0,0 +1 @@
+ref: refs/heads/master
diff --git a/gdlibretro/CMakeFiles/git-data/grabRef.cmake b/gdlibretro/CMakeFiles/git-data/grabRef.cmake
new file mode 100644
index 0000000..24dfcac
--- /dev/null
+++ b/gdlibretro/CMakeFiles/git-data/grabRef.cmake
@@ -0,0 +1,43 @@
+#
+# Internal file for GetGitRevisionDescription.cmake
+#
+# Requires CMake 2.6 or newer (uses the 'function' command)
+#
+# Original Author:
+# 2009-2010 Ryan Pavlik
+# http://academic.cleardefinition.com
+# Iowa State University HCI Graduate Program/VRAC
+#
+# Copyright 2009-2012, Iowa State University
+# Copyright 2011-2015, Contributors
+# Distributed under the Boost Software License, Version 1.0.
+# (See accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt)
+# SPDX-License-Identifier: BSL-1.0
+
+set(HEAD_HASH)
+
+file(READ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024)
+
+string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS)
+if(HEAD_CONTENTS MATCHES "ref")
+ # named branch
+ string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}")
+ if(EXISTS "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/.git/${HEAD_REF}")
+ configure_file("/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/.git/${HEAD_REF}" "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/git-data/head-ref" COPYONLY)
+ else()
+ configure_file("/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/.git/packed-refs" "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/git-data/packed-refs" COPYONLY)
+ file(READ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/git-data/packed-refs" PACKED_REFS)
+ if(${PACKED_REFS} MATCHES "([0-9a-z]*) ${HEAD_REF}")
+ set(HEAD_HASH "${CMAKE_MATCH_1}")
+ endif()
+ endif()
+else()
+ # detached HEAD
+ configure_file("/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/.git/HEAD" "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/git-data/head-ref" COPYONLY)
+endif()
+
+if(NOT HEAD_HASH)
+ file(READ "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024)
+ string(STRIP "${HEAD_HASH}" HEAD_HASH)
+endif()
diff --git a/gdlibretro/CMakeFiles/git-data/head-ref b/gdlibretro/CMakeFiles/git-data/head-ref
new file mode 100644
index 0000000..7edfbcc
--- /dev/null
+++ b/gdlibretro/CMakeFiles/git-data/head-ref
@@ -0,0 +1 @@
+7ebbf840187f54466988c0b5b20524ad21ca1d58
diff --git a/gdlibretro/CMakeFiles/progress.marks b/gdlibretro/CMakeFiles/progress.marks
new file mode 100644
index 0000000..3ad5abd
--- /dev/null
+++ b/gdlibretro/CMakeFiles/progress.marks
@@ -0,0 +1 @@
+99
diff --git a/gdlibretro/CMakeLists.txt b/gdlibretro/CMakeLists.txt
new file mode 100644
index 0000000..e41125c
--- /dev/null
+++ b/gdlibretro/CMakeLists.txt
@@ -0,0 +1,129 @@
+# SPDX-License-Identifier: Unlicense
+
+cmake_minimum_required( VERSION 3.22 )
+
+message( STATUS "Using CMake ${CMAKE_VERSION}" )
+
+# Require out-of-source builds
+file( TO_CMAKE_PATH "${PROJECT_BINARY_DIR}/CMakeLists.txt" LOC_PATH )
+
+if ( EXISTS "${LOC_PATH}" )
+ message( FATAL_ERROR "You cannot build in the source directory. Please use a build subdirectory." )
+endif()
+
+# Add paths to modules
+list( APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/" )
+
+# Turn on link time optimization for everything
+set( CMAKE_INTERPROCEDURAL_OPTIMIZATION_RELEASE ON )
+
+# Output compile commands to compile_commands.json (for debugging CMake issues)
+set( CMAKE_EXPORT_COMPILE_COMMANDS ON )
+
+# Build universal lib on macOS
+# Note that CMAKE_OSX_ARCHITECTURES must be set before project().
+if ( APPLE )
+ set( CMAKE_OSX_ARCHITECTURES "x86_64;arm64" CACHE STRING "" )
+endif()
+
+# Main project information
+project( LibRetroHost
+ LANGUAGES
+ CXX
+ VERSION
+ 0.1.0
+)
+
+# Create our library
+add_library( ${PROJECT_NAME} SHARED )
+
+target_compile_features( ${PROJECT_NAME}
+ PRIVATE
+ cxx_std_17
+)
+
+# LIB_ARCH is the architecture being built. It is set to the build system's architecture.
+# For macOS, we build a universal library (both arm64 and x86_64).
+set( LIB_ARCH ${CMAKE_SYSTEM_PROCESSOR} )
+if ( APPLE )
+ set( LIB_ARCH "universal" )
+endif()
+
+# LIB_DIR is where the actual library ends up. This is used in both the build directory and the
+# install directory and needs to be consistent with the paths in the gdextension file.
+# e.g. linux.release.x86_64 = "lib/Linux-x86_64/libGDExtensionTemplate.so"
+set( LIB_DIR "lib/${CMAKE_SYSTEM_NAME}-${LIB_ARCH}" )
+
+message( STATUS "Building ${PROJECT_NAME} for ${LIB_ARCH} on ${CMAKE_SYSTEM_NAME}")
+
+# BUILD_OUTPUT_DIR is where we put the resulting library (in the build directory)
+set( BUILD_OUTPUT_DIR "${PROJECT_BINARY_DIR}/${PROJECT_NAME}/" )
+
+set_target_properties( ${PROJECT_NAME}
+ PROPERTIES
+ CXX_VISIBILITY_PRESET hidden
+ VISIBILITY_INLINES_HIDDEN true
+ RUNTIME_OUTPUT_DIRECTORY "${BUILD_OUTPUT_DIR}/${LIB_DIR}"
+ LIBRARY_OUTPUT_DIRECTORY "${BUILD_OUTPUT_DIR}/${LIB_DIR}"
+)
+
+if( NOT DEFINED CMAKE_DEBUG_POSTFIX )
+ set_target_properties( ${PROJECT_NAME}
+ PROPERTIES
+ DEBUG_POSTFIX "-d"
+ )
+endif()
+
+# Warnings
+include( CompilerWarnings )
+
+# Create and include version info file from git
+include( GitVersionInfo )
+
+add_subdirectory( src )
+
+# Install library and extension file in ${CMAKE_INSTALL_PREFIX}/${PROJECT_NAME}
+set( INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/${PROJECT_NAME}/" )
+
+message( STATUS "Install directory: ${INSTALL_DIR}")
+
+install( TARGETS ${PROJECT_NAME}
+ LIBRARY
+ DESTINATION ${INSTALL_DIR}/${LIB_DIR}
+ RUNTIME
+ DESTINATION ${INSTALL_DIR}/${LIB_DIR}
+)
+
+add_subdirectory( template )
+
+# ccache
+# Turns on ccache if found
+include( ccache )
+
+# Formatting
+# Adds a custom target to format all the code at once
+include( ClangFormat )
+
+# godot-cpp
+# From here: https://github.com/godotengine/godot-cpp
+if ( NOT EXISTS "${CMAKE_CURRENT_LIST_DIR}/extern/godot-cpp/Makefile" )
+ message(
+ FATAL_ERROR
+ "[${PROJECT_NAME}] The godot-cpp submodule was not downloaded. Please update submodules: git submodule update --init --recursive."
+ )
+endif()
+
+set( GODOT_CPP_SYSTEM_HEADERS ON CACHE BOOL "" FORCE )
+
+add_subdirectory( extern )
+
+set_target_properties( godot-cpp
+ PROPERTIES
+ CXX_VISIBILITY_PRESET hidden # visibility needs to be the same as the main library
+)
+
+target_link_libraries( ${PROJECT_NAME}
+ PRIVATE
+ godot-cpp
+ yaml-cpp
+)
diff --git a/gdlibretro/CMakePresets.json b/gdlibretro/CMakePresets.json
new file mode 100644
index 0000000..aa722b9
--- /dev/null
+++ b/gdlibretro/CMakePresets.json
@@ -0,0 +1,101 @@
+{
+ "version": 5,
+ "cmakeMinimumRequired": {
+ "major": 3,
+ "minor": 23,
+ "patch": 0
+ },
+ "configurePresets": [
+ {
+ "name": "default",
+ "displayName": "default",
+ "description": "Default preset that are inherited by all",
+ "generator": "Ninja",
+ "hidden": true,
+ "environment": {
+ "PROJECT_NAME": "MyGodotExtention"
+ }
+ },
+ {
+ "name": "windows-debug",
+ "displayName": "64bit Windows Debug",
+ "inherits": "default",
+ "binaryDir": "${sourceDir}/build/${env:PROJECT_NAME}_Windows-AMD64",
+ "installDir": "${sourceDir}/demo/bin/",
+ "condition": {
+ "type": "equals",
+ "lhs": "${hostSystemName}",
+ "rhs": "Windows"
+ },
+ "toolset": {
+ "value": "host=x64",
+ "strategy": "external"
+ },
+ "architecture": {
+ "value": "x64",
+ "strategy": "external"
+ },
+ "cacheVariables": {
+ "CMAKE_C_COMPILER": "cl.exe",
+ "CMAKE_CXX_COMPILER": "cl.exe",
+ "CMAKE_BUILD_TYPE": "Debug"
+ }
+ },
+ {
+ "name": "windows-release",
+ "displayName": "64bit Windows Release",
+ "inherits": "windows-debug",
+ "cacheVariables": {
+ "CMAKE_BUILD_TYPE": "Release"
+ }
+ },
+ {
+ "name": "linux-debug",
+ "displayName": "64bit Linux Debug",
+ "inherits": "default",
+ "binaryDir": "${sourceDir}/build/${env:PROJECT_NAME}_Linux-x86_64",
+ "condition": {
+ "type": "equals",
+ "lhs": "${hostSystemName}",
+ "rhs": "Linux"
+ },
+ "cacheVariables": {
+ "CMAKE_CXX_COMPILER": "g++",
+ "CMAKE_C_COMPILER": "gcc",
+ "CMAKE_BUILD_TYPE": "Debug"
+ }
+ },
+ {
+ "name": "linux-release",
+ "displayName": "64bit Linux Release",
+ "inherits": "linux-debug",
+ "cacheVariables": {
+ "CMAKE_BUILD_TYPE": "Release"
+ }
+ },
+ {
+ "name": "macOS-debug",
+ "displayName": "64bit macOS Debug",
+ "inherits": "default",
+ "binaryDir": "${sourceDir}/build/${env:PROJECT_NAME}_Darwin-Universal",
+ "condition": {
+ "type": "equals",
+ "lhs": "${hostSystemName}",
+ "rhs": "Darwin"
+ },
+ "cacheVariables": {
+ "CMAKE_CXX_COMPILER": "clang++",
+ "CMAKE_C_COMPILER": "clang",
+ "CMAKE_BUILD_TYPE": "Debug"
+ }
+ },
+ {
+ "name": "macOS-release",
+ "displayName": "64bit macOS Release",
+ "inherits": "macOS-debug",
+ "cacheVariables": {
+ "CMAKE_BUILD_TYPE": "Release"
+ }
+ }
+ ]
+}
diff --git a/gdlibretro/Makefile b/gdlibretro/Makefile
new file mode 100644
index 0000000..5a782f2
--- /dev/null
+++ b/gdlibretro/Makefile
@@ -0,0 +1,911 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.30
+
+# Default target executed when no arguments are given to make.
+default_target: all
+.PHONY : default_target
+
+# Allow only one "make -f Makefile2" at a time, but pass parallelism.
+.NOTPARALLEL:
+
+#=============================================================================
+# Special targets provided by cmake.
+
+# Disable implicit rules so canonical targets will work.
+.SUFFIXES:
+
+# Disable VCS-based implicit rules.
+% : %,v
+
+# Disable VCS-based implicit rules.
+% : RCS/%
+
+# Disable VCS-based implicit rules.
+% : RCS/%,v
+
+# Disable VCS-based implicit rules.
+% : SCCS/s.%
+
+# Disable VCS-based implicit rules.
+% : s.%
+
+.SUFFIXES: .hpux_make_needs_suffix_list
+
+# Command-line flag to silence nested $(MAKE).
+$(VERBOSE)MAKESILENT = -s
+
+#Suppress display of executed commands.
+$(VERBOSE).SILENT:
+
+# A target that is always out of date.
+cmake_force:
+.PHONY : cmake_force
+
+#=============================================================================
+# Set environment variables for the build.
+
+# The shell in which to execute make rules.
+SHELL = /bin/sh
+
+# The CMake executable.
+CMAKE_COMMAND = /usr/bin/cmake
+
+# The command to remove a file.
+RM = /usr/bin/cmake -E rm -f
+
+# Escaping for special characters.
+EQUALS = =
+
+# The top-level source directory on which CMake was run.
+CMAKE_SOURCE_DIR = /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro
+
+# The top-level build directory on which CMake was run.
+CMAKE_BINARY_DIR = /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro
+
+#=============================================================================
+# Targets provided globally by CMake.
+
+# Special rule for the target edit_cache
+edit_cache:
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..."
+ /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
+.PHONY : edit_cache
+
+# Special rule for the target edit_cache
+edit_cache/fast: edit_cache
+.PHONY : edit_cache/fast
+
+# Special rule for the target rebuild_cache
+rebuild_cache:
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
+ /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
+.PHONY : rebuild_cache
+
+# Special rule for the target rebuild_cache
+rebuild_cache/fast: rebuild_cache
+.PHONY : rebuild_cache/fast
+
+# Special rule for the target list_install_components
+list_install_components:
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\""
+.PHONY : list_install_components
+
+# Special rule for the target list_install_components
+list_install_components/fast: list_install_components
+.PHONY : list_install_components/fast
+
+# Special rule for the target install
+install: preinstall
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
+ /usr/bin/cmake -P cmake_install.cmake
+.PHONY : install
+
+# Special rule for the target install
+install/fast: preinstall/fast
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
+ /usr/bin/cmake -P cmake_install.cmake
+.PHONY : install/fast
+
+# Special rule for the target install/local
+install/local: preinstall
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
+ /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
+.PHONY : install/local
+
+# Special rule for the target install/local
+install/local/fast: preinstall/fast
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
+ /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
+.PHONY : install/local/fast
+
+# Special rule for the target install/strip
+install/strip: preinstall
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
+ /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
+.PHONY : install/strip
+
+# Special rule for the target install/strip
+install/strip/fast: preinstall/fast
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
+ /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
+.PHONY : install/strip/fast
+
+# The main all target
+all: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro//CMakeFiles/progress.marks
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : all
+
+# The main clean target
+clean:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean
+.PHONY : clean
+
+# The main clean target
+clean/fast: clean
+.PHONY : clean/fast
+
+# Prepare targets for installation.
+preinstall: all
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
+.PHONY : preinstall
+
+# Prepare targets for installation.
+preinstall/fast:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
+.PHONY : preinstall/fast
+
+# clear depends
+depend:
+ $(CMAKE_COMMAND) -P /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/VerifyGlobs.cmake
+ $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
+.PHONY : depend
+
+#=============================================================================
+# Target rules for targets named LibRetroHost
+
+# Build rule for target.
+LibRetroHost: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 LibRetroHost
+.PHONY : LibRetroHost
+
+# fast build rule for target.
+LibRetroHost/fast:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/build
+.PHONY : LibRetroHost/fast
+
+#=============================================================================
+# Target rules for targets named clang-format
+
+# Build rule for target.
+clang-format: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clang-format
+.PHONY : clang-format
+
+# fast build rule for target.
+clang-format/fast:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/clang-format.dir/build.make CMakeFiles/clang-format.dir/build
+.PHONY : clang-format/fast
+
+#=============================================================================
+# Target rules for targets named templates
+
+# Build rule for target.
+templates: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 templates
+.PHONY : templates
+
+# fast build rule for target.
+templates/fast:
+ $(MAKE) $(MAKESILENT) -f template/CMakeFiles/templates.dir/build.make template/CMakeFiles/templates.dir/build
+.PHONY : templates/fast
+
+#=============================================================================
+# Target rules for targets named godot-cpp
+
+# Build rule for target.
+godot-cpp: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 godot-cpp
+.PHONY : godot-cpp
+
+# fast build rule for target.
+godot-cpp/fast:
+ $(MAKE) $(MAKESILENT) -f extern/godot-cpp/CMakeFiles/godot-cpp.dir/build.make extern/godot-cpp/CMakeFiles/godot-cpp.dir/build
+.PHONY : godot-cpp/fast
+
+#=============================================================================
+# Target rules for targets named Experimental
+
+# Build rule for target.
+Experimental: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Experimental
+.PHONY : Experimental
+
+# fast build rule for target.
+Experimental/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/Experimental.dir/build.make extern/yaml-cpp/CMakeFiles/Experimental.dir/build
+.PHONY : Experimental/fast
+
+#=============================================================================
+# Target rules for targets named Nightly
+
+# Build rule for target.
+Nightly: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Nightly
+.PHONY : Nightly
+
+# fast build rule for target.
+Nightly/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/Nightly.dir/build.make extern/yaml-cpp/CMakeFiles/Nightly.dir/build
+.PHONY : Nightly/fast
+
+#=============================================================================
+# Target rules for targets named Continuous
+
+# Build rule for target.
+Continuous: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Continuous
+.PHONY : Continuous
+
+# fast build rule for target.
+Continuous/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/Continuous.dir/build.make extern/yaml-cpp/CMakeFiles/Continuous.dir/build
+.PHONY : Continuous/fast
+
+#=============================================================================
+# Target rules for targets named NightlyMemoryCheck
+
+# Build rule for target.
+NightlyMemoryCheck: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 NightlyMemoryCheck
+.PHONY : NightlyMemoryCheck
+
+# fast build rule for target.
+NightlyMemoryCheck/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyMemoryCheck.dir/build
+.PHONY : NightlyMemoryCheck/fast
+
+#=============================================================================
+# Target rules for targets named NightlyStart
+
+# Build rule for target.
+NightlyStart: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 NightlyStart
+.PHONY : NightlyStart
+
+# fast build rule for target.
+NightlyStart/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyStart.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyStart.dir/build
+.PHONY : NightlyStart/fast
+
+#=============================================================================
+# Target rules for targets named NightlyUpdate
+
+# Build rule for target.
+NightlyUpdate: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 NightlyUpdate
+.PHONY : NightlyUpdate
+
+# fast build rule for target.
+NightlyUpdate/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyUpdate.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyUpdate.dir/build
+.PHONY : NightlyUpdate/fast
+
+#=============================================================================
+# Target rules for targets named NightlyConfigure
+
+# Build rule for target.
+NightlyConfigure: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 NightlyConfigure
+.PHONY : NightlyConfigure
+
+# fast build rule for target.
+NightlyConfigure/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyConfigure.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyConfigure.dir/build
+.PHONY : NightlyConfigure/fast
+
+#=============================================================================
+# Target rules for targets named NightlyBuild
+
+# Build rule for target.
+NightlyBuild: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 NightlyBuild
+.PHONY : NightlyBuild
+
+# fast build rule for target.
+NightlyBuild/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyBuild.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyBuild.dir/build
+.PHONY : NightlyBuild/fast
+
+#=============================================================================
+# Target rules for targets named NightlyTest
+
+# Build rule for target.
+NightlyTest: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 NightlyTest
+.PHONY : NightlyTest
+
+# fast build rule for target.
+NightlyTest/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyTest.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyTest.dir/build
+.PHONY : NightlyTest/fast
+
+#=============================================================================
+# Target rules for targets named NightlyCoverage
+
+# Build rule for target.
+NightlyCoverage: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 NightlyCoverage
+.PHONY : NightlyCoverage
+
+# fast build rule for target.
+NightlyCoverage/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyCoverage.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyCoverage.dir/build
+.PHONY : NightlyCoverage/fast
+
+#=============================================================================
+# Target rules for targets named NightlyMemCheck
+
+# Build rule for target.
+NightlyMemCheck: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 NightlyMemCheck
+.PHONY : NightlyMemCheck
+
+# fast build rule for target.
+NightlyMemCheck/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlyMemCheck.dir/build.make extern/yaml-cpp/CMakeFiles/NightlyMemCheck.dir/build
+.PHONY : NightlyMemCheck/fast
+
+#=============================================================================
+# Target rules for targets named NightlySubmit
+
+# Build rule for target.
+NightlySubmit: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 NightlySubmit
+.PHONY : NightlySubmit
+
+# fast build rule for target.
+NightlySubmit/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/NightlySubmit.dir/build.make extern/yaml-cpp/CMakeFiles/NightlySubmit.dir/build
+.PHONY : NightlySubmit/fast
+
+#=============================================================================
+# Target rules for targets named ExperimentalStart
+
+# Build rule for target.
+ExperimentalStart: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ExperimentalStart
+.PHONY : ExperimentalStart
+
+# fast build rule for target.
+ExperimentalStart/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalStart.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalStart.dir/build
+.PHONY : ExperimentalStart/fast
+
+#=============================================================================
+# Target rules for targets named ExperimentalUpdate
+
+# Build rule for target.
+ExperimentalUpdate: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ExperimentalUpdate
+.PHONY : ExperimentalUpdate
+
+# fast build rule for target.
+ExperimentalUpdate/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalUpdate.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalUpdate.dir/build
+.PHONY : ExperimentalUpdate/fast
+
+#=============================================================================
+# Target rules for targets named ExperimentalConfigure
+
+# Build rule for target.
+ExperimentalConfigure: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ExperimentalConfigure
+.PHONY : ExperimentalConfigure
+
+# fast build rule for target.
+ExperimentalConfigure/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalConfigure.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalConfigure.dir/build
+.PHONY : ExperimentalConfigure/fast
+
+#=============================================================================
+# Target rules for targets named ExperimentalBuild
+
+# Build rule for target.
+ExperimentalBuild: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ExperimentalBuild
+.PHONY : ExperimentalBuild
+
+# fast build rule for target.
+ExperimentalBuild/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalBuild.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalBuild.dir/build
+.PHONY : ExperimentalBuild/fast
+
+#=============================================================================
+# Target rules for targets named ExperimentalTest
+
+# Build rule for target.
+ExperimentalTest: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ExperimentalTest
+.PHONY : ExperimentalTest
+
+# fast build rule for target.
+ExperimentalTest/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalTest.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalTest.dir/build
+.PHONY : ExperimentalTest/fast
+
+#=============================================================================
+# Target rules for targets named ExperimentalCoverage
+
+# Build rule for target.
+ExperimentalCoverage: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ExperimentalCoverage
+.PHONY : ExperimentalCoverage
+
+# fast build rule for target.
+ExperimentalCoverage/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalCoverage.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalCoverage.dir/build
+.PHONY : ExperimentalCoverage/fast
+
+#=============================================================================
+# Target rules for targets named ExperimentalMemCheck
+
+# Build rule for target.
+ExperimentalMemCheck: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ExperimentalMemCheck
+.PHONY : ExperimentalMemCheck
+
+# fast build rule for target.
+ExperimentalMemCheck/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalMemCheck.dir/build
+.PHONY : ExperimentalMemCheck/fast
+
+#=============================================================================
+# Target rules for targets named ExperimentalSubmit
+
+# Build rule for target.
+ExperimentalSubmit: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ExperimentalSubmit
+.PHONY : ExperimentalSubmit
+
+# fast build rule for target.
+ExperimentalSubmit/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ExperimentalSubmit.dir/build.make extern/yaml-cpp/CMakeFiles/ExperimentalSubmit.dir/build
+.PHONY : ExperimentalSubmit/fast
+
+#=============================================================================
+# Target rules for targets named ContinuousStart
+
+# Build rule for target.
+ContinuousStart: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ContinuousStart
+.PHONY : ContinuousStart
+
+# fast build rule for target.
+ContinuousStart/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousStart.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousStart.dir/build
+.PHONY : ContinuousStart/fast
+
+#=============================================================================
+# Target rules for targets named ContinuousUpdate
+
+# Build rule for target.
+ContinuousUpdate: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ContinuousUpdate
+.PHONY : ContinuousUpdate
+
+# fast build rule for target.
+ContinuousUpdate/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousUpdate.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousUpdate.dir/build
+.PHONY : ContinuousUpdate/fast
+
+#=============================================================================
+# Target rules for targets named ContinuousConfigure
+
+# Build rule for target.
+ContinuousConfigure: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ContinuousConfigure
+.PHONY : ContinuousConfigure
+
+# fast build rule for target.
+ContinuousConfigure/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousConfigure.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousConfigure.dir/build
+.PHONY : ContinuousConfigure/fast
+
+#=============================================================================
+# Target rules for targets named ContinuousBuild
+
+# Build rule for target.
+ContinuousBuild: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ContinuousBuild
+.PHONY : ContinuousBuild
+
+# fast build rule for target.
+ContinuousBuild/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousBuild.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousBuild.dir/build
+.PHONY : ContinuousBuild/fast
+
+#=============================================================================
+# Target rules for targets named ContinuousTest
+
+# Build rule for target.
+ContinuousTest: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ContinuousTest
+.PHONY : ContinuousTest
+
+# fast build rule for target.
+ContinuousTest/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousTest.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousTest.dir/build
+.PHONY : ContinuousTest/fast
+
+#=============================================================================
+# Target rules for targets named ContinuousCoverage
+
+# Build rule for target.
+ContinuousCoverage: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ContinuousCoverage
+.PHONY : ContinuousCoverage
+
+# fast build rule for target.
+ContinuousCoverage/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousCoverage.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousCoverage.dir/build
+.PHONY : ContinuousCoverage/fast
+
+#=============================================================================
+# Target rules for targets named ContinuousMemCheck
+
+# Build rule for target.
+ContinuousMemCheck: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ContinuousMemCheck
+.PHONY : ContinuousMemCheck
+
+# fast build rule for target.
+ContinuousMemCheck/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousMemCheck.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousMemCheck.dir/build
+.PHONY : ContinuousMemCheck/fast
+
+#=============================================================================
+# Target rules for targets named ContinuousSubmit
+
+# Build rule for target.
+ContinuousSubmit: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 ContinuousSubmit
+.PHONY : ContinuousSubmit
+
+# fast build rule for target.
+ContinuousSubmit/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/ContinuousSubmit.dir/build.make extern/yaml-cpp/CMakeFiles/ContinuousSubmit.dir/build
+.PHONY : ContinuousSubmit/fast
+
+#=============================================================================
+# Target rules for targets named yaml-cpp
+
+# Build rule for target.
+yaml-cpp: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 yaml-cpp
+.PHONY : yaml-cpp
+
+# fast build rule for target.
+yaml-cpp/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/build.make extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/build
+.PHONY : yaml-cpp/fast
+
+#=============================================================================
+# Target rules for targets named yaml-cpp-sandbox
+
+# Build rule for target.
+yaml-cpp-sandbox: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 yaml-cpp-sandbox
+.PHONY : yaml-cpp-sandbox
+
+# fast build rule for target.
+yaml-cpp-sandbox/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir/build.make extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir/build
+.PHONY : yaml-cpp-sandbox/fast
+
+#=============================================================================
+# Target rules for targets named yaml-cpp-parse
+
+# Build rule for target.
+yaml-cpp-parse: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 yaml-cpp-parse
+.PHONY : yaml-cpp-parse
+
+# fast build rule for target.
+yaml-cpp-parse/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir/build.make extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir/build
+.PHONY : yaml-cpp-parse/fast
+
+#=============================================================================
+# Target rules for targets named yaml-cpp-read
+
+# Build rule for target.
+yaml-cpp-read: cmake_check_build_system
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 yaml-cpp-read
+.PHONY : yaml-cpp-read
+
+# fast build rule for target.
+yaml-cpp-read/fast:
+ $(MAKE) $(MAKESILENT) -f extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir/build.make extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir/build
+.PHONY : yaml-cpp-read/fast
+
+src/Audio.o: src/Audio.cpp.o
+.PHONY : src/Audio.o
+
+# target to build an object file
+src/Audio.cpp.o:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o
+.PHONY : src/Audio.cpp.o
+
+src/Audio.i: src/Audio.cpp.i
+.PHONY : src/Audio.i
+
+# target to preprocess a source file
+src/Audio.cpp.i:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/Audio.cpp.i
+.PHONY : src/Audio.cpp.i
+
+src/Audio.s: src/Audio.cpp.s
+.PHONY : src/Audio.s
+
+# target to generate assembly for a file
+src/Audio.cpp.s:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/Audio.cpp.s
+.PHONY : src/Audio.cpp.s
+
+src/CoreEnvironment.o: src/CoreEnvironment.cpp.o
+.PHONY : src/CoreEnvironment.o
+
+# target to build an object file
+src/CoreEnvironment.cpp.o:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o
+.PHONY : src/CoreEnvironment.cpp.o
+
+src/CoreEnvironment.i: src/CoreEnvironment.cpp.i
+.PHONY : src/CoreEnvironment.i
+
+# target to preprocess a source file
+src/CoreEnvironment.cpp.i:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.i
+.PHONY : src/CoreEnvironment.cpp.i
+
+src/CoreEnvironment.s: src/CoreEnvironment.cpp.s
+.PHONY : src/CoreEnvironment.s
+
+# target to generate assembly for a file
+src/CoreEnvironment.cpp.s:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.s
+.PHONY : src/CoreEnvironment.cpp.s
+
+src/CoreVariables.o: src/CoreVariables.cpp.o
+.PHONY : src/CoreVariables.o
+
+# target to build an object file
+src/CoreVariables.cpp.o:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o
+.PHONY : src/CoreVariables.cpp.o
+
+src/CoreVariables.i: src/CoreVariables.cpp.i
+.PHONY : src/CoreVariables.i
+
+# target to preprocess a source file
+src/CoreVariables.cpp.i:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.i
+.PHONY : src/CoreVariables.cpp.i
+
+src/CoreVariables.s: src/CoreVariables.cpp.s
+.PHONY : src/CoreVariables.s
+
+# target to generate assembly for a file
+src/CoreVariables.cpp.s:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.s
+.PHONY : src/CoreVariables.cpp.s
+
+src/Input.o: src/Input.cpp.o
+.PHONY : src/Input.o
+
+# target to build an object file
+src/Input.cpp.o:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/Input.cpp.o
+.PHONY : src/Input.cpp.o
+
+src/Input.i: src/Input.cpp.i
+.PHONY : src/Input.i
+
+# target to preprocess a source file
+src/Input.cpp.i:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/Input.cpp.i
+.PHONY : src/Input.cpp.i
+
+src/Input.s: src/Input.cpp.s
+.PHONY : src/Input.s
+
+# target to generate assembly for a file
+src/Input.cpp.s:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/Input.cpp.s
+.PHONY : src/Input.cpp.s
+
+src/RegisterExtension.o: src/RegisterExtension.cpp.o
+.PHONY : src/RegisterExtension.o
+
+# target to build an object file
+src/RegisterExtension.cpp.o:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o
+.PHONY : src/RegisterExtension.cpp.o
+
+src/RegisterExtension.i: src/RegisterExtension.cpp.i
+.PHONY : src/RegisterExtension.i
+
+# target to preprocess a source file
+src/RegisterExtension.cpp.i:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.i
+.PHONY : src/RegisterExtension.cpp.i
+
+src/RegisterExtension.s: src/RegisterExtension.cpp.s
+.PHONY : src/RegisterExtension.s
+
+# target to generate assembly for a file
+src/RegisterExtension.cpp.s:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.s
+.PHONY : src/RegisterExtension.cpp.s
+
+src/RetroHost.o: src/RetroHost.cpp.o
+.PHONY : src/RetroHost.o
+
+# target to build an object file
+src/RetroHost.cpp.o:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o
+.PHONY : src/RetroHost.cpp.o
+
+src/RetroHost.i: src/RetroHost.cpp.i
+.PHONY : src/RetroHost.i
+
+# target to preprocess a source file
+src/RetroHost.cpp.i:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.i
+.PHONY : src/RetroHost.cpp.i
+
+src/RetroHost.s: src/RetroHost.cpp.s
+.PHONY : src/RetroHost.s
+
+# target to generate assembly for a file
+src/RetroHost.cpp.s:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.s
+.PHONY : src/RetroHost.cpp.s
+
+src/VFS.o: src/VFS.cpp.o
+.PHONY : src/VFS.o
+
+# target to build an object file
+src/VFS.cpp.o:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o
+.PHONY : src/VFS.cpp.o
+
+src/VFS.i: src/VFS.cpp.i
+.PHONY : src/VFS.i
+
+# target to preprocess a source file
+src/VFS.cpp.i:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/VFS.cpp.i
+.PHONY : src/VFS.cpp.i
+
+src/VFS.s: src/VFS.cpp.s
+.PHONY : src/VFS.s
+
+# target to generate assembly for a file
+src/VFS.cpp.s:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/VFS.cpp.s
+.PHONY : src/VFS.cpp.s
+
+src/Video.o: src/Video.cpp.o
+.PHONY : src/Video.o
+
+# target to build an object file
+src/Video.cpp.o:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/Video.cpp.o
+.PHONY : src/Video.cpp.o
+
+src/Video.i: src/Video.cpp.i
+.PHONY : src/Video.i
+
+# target to preprocess a source file
+src/Video.cpp.i:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/Video.cpp.i
+.PHONY : src/Video.cpp.i
+
+src/Video.s: src/Video.cpp.s
+.PHONY : src/Video.s
+
+# target to generate assembly for a file
+src/Video.cpp.s:
+ $(MAKE) $(MAKESILENT) -f CMakeFiles/LibRetroHost.dir/build.make CMakeFiles/LibRetroHost.dir/src/Video.cpp.s
+.PHONY : src/Video.cpp.s
+
+# Help Target
+help:
+ @echo "The following are some of the valid targets for this Makefile:"
+ @echo "... all (the default if no target is provided)"
+ @echo "... clean"
+ @echo "... depend"
+ @echo "... edit_cache"
+ @echo "... install"
+ @echo "... install/local"
+ @echo "... install/strip"
+ @echo "... list_install_components"
+ @echo "... rebuild_cache"
+ @echo "... Continuous"
+ @echo "... ContinuousBuild"
+ @echo "... ContinuousConfigure"
+ @echo "... ContinuousCoverage"
+ @echo "... ContinuousMemCheck"
+ @echo "... ContinuousStart"
+ @echo "... ContinuousSubmit"
+ @echo "... ContinuousTest"
+ @echo "... ContinuousUpdate"
+ @echo "... Experimental"
+ @echo "... ExperimentalBuild"
+ @echo "... ExperimentalConfigure"
+ @echo "... ExperimentalCoverage"
+ @echo "... ExperimentalMemCheck"
+ @echo "... ExperimentalStart"
+ @echo "... ExperimentalSubmit"
+ @echo "... ExperimentalTest"
+ @echo "... ExperimentalUpdate"
+ @echo "... Nightly"
+ @echo "... NightlyBuild"
+ @echo "... NightlyConfigure"
+ @echo "... NightlyCoverage"
+ @echo "... NightlyMemCheck"
+ @echo "... NightlyMemoryCheck"
+ @echo "... NightlyStart"
+ @echo "... NightlySubmit"
+ @echo "... NightlyTest"
+ @echo "... NightlyUpdate"
+ @echo "... clang-format"
+ @echo "... templates"
+ @echo "... LibRetroHost"
+ @echo "... godot-cpp"
+ @echo "... yaml-cpp"
+ @echo "... yaml-cpp-parse"
+ @echo "... yaml-cpp-read"
+ @echo "... yaml-cpp-sandbox"
+ @echo "... src/Audio.o"
+ @echo "... src/Audio.i"
+ @echo "... src/Audio.s"
+ @echo "... src/CoreEnvironment.o"
+ @echo "... src/CoreEnvironment.i"
+ @echo "... src/CoreEnvironment.s"
+ @echo "... src/CoreVariables.o"
+ @echo "... src/CoreVariables.i"
+ @echo "... src/CoreVariables.s"
+ @echo "... src/Input.o"
+ @echo "... src/Input.i"
+ @echo "... src/Input.s"
+ @echo "... src/RegisterExtension.o"
+ @echo "... src/RegisterExtension.i"
+ @echo "... src/RegisterExtension.s"
+ @echo "... src/RetroHost.o"
+ @echo "... src/RetroHost.i"
+ @echo "... src/RetroHost.s"
+ @echo "... src/VFS.o"
+ @echo "... src/VFS.i"
+ @echo "... src/VFS.s"
+ @echo "... src/Video.o"
+ @echo "... src/Video.i"
+ @echo "... src/Video.s"
+.PHONY : help
+
+
+
+#=============================================================================
+# Special targets to cleanup operation of make.
+
+# Special rule to run CMake to check the build system integrity.
+# No rule that depends on this can have commands that come from listfiles
+# because they might be regenerated.
+cmake_check_build_system:
+ $(CMAKE_COMMAND) -P /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/VerifyGlobs.cmake
+ $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
+.PHONY : cmake_check_build_system
+
diff --git a/gdlibretro/README.md b/gdlibretro/README.md
new file mode 100644
index 0000000..ef1ae57
--- /dev/null
+++ b/gdlibretro/README.md
@@ -0,0 +1,33 @@
+Uhm, aksually, youre supposed to use scons to build gdextension projects...\
+I. don't. care.\
+For all i know scons sucks ass. I couldn't even build the example gdext project.\
+You'll have to deal with CMake. at least it works
+
+# Things you should know
+- This is a hobby project, i have the right to not give a damn about it
+- Still, i'll try to help if you ask nicely
+- If launching with the provided debug dosbox pure dlls expect a "stack destroyed" exception. **Just ignore it and move on**
+
+# Building
+- Windows only for now
+- Have msvc or try another compiler, idk, do what you want (the debugging configured as is will only work if you have a full msvc installation)
+- Have CMake
+- Pull the submodules
+- Compile
+
+# Debugging (VSCode)
+- Go into .vscode/launch.json
+- Find the godot path on the "Windows Launch" task
+- Change it for your godot's installation path
+
+# Launching
+- Open the project on godot and launch it
+- Click the debug button on vscode, it'll automatically launch the godot project in play mode and allow you to debug it
+
+# Changing the core
+- Put the core you want to launch inside the "libretro-cores" folder on the godot project directory
+- Modifiy the argument on node3d.gd function call of RetroHost.load_core to the name of the core dll **without the .dll**
+
+# Exported projects
+It should work with exported projects since outside the editor it loads dlls the windows way ([first on the executable directory, then on the system directory and so on](https://learn.microsoft.com/en-us/windows/win32/dlls/dynamic-link-library-search-order))\
+You just need to have your core's dll on one of those places and it should work.
diff --git a/gdlibretro/addons b/gdlibretro/addons
new file mode 100755
index 0000000..75e7f5c
Binary files /dev/null and b/gdlibretro/addons differ
diff --git a/gdlibretro/cmake/ClangFormat.cmake b/gdlibretro/cmake/ClangFormat.cmake
new file mode 100644
index 0000000..a6eb8a0
--- /dev/null
+++ b/gdlibretro/cmake/ClangFormat.cmake
@@ -0,0 +1,32 @@
+# SPDX-License-Identifier: Unlicense
+
+find_program( CLANG_FORMAT_PROGRAM NAMES clang-format )
+
+if ( CLANG_FORMAT_PROGRAM )
+ # get version information
+ execute_process(
+ COMMAND "${CLANG_FORMAT_PROGRAM}" --version
+ OUTPUT_VARIABLE CLANG_FORMAT_VERSION
+ OUTPUT_STRIP_TRAILING_WHITESPACE
+ )
+
+ message( STATUS "Using clang-format: ${CLANG_FORMAT_PROGRAM} (${CLANG_FORMAT_VERSION})" )
+
+ get_target_property( CLANG_FORMAT_SOURCES ${PROJECT_NAME} SOURCES )
+
+ # Remove some files from the list
+ list( FILTER CLANG_FORMAT_SOURCES EXCLUDE REGEX ".*/extern/.*" )
+ list( FILTER CLANG_FORMAT_SOURCES EXCLUDE REGEX ".*/gen/.*" )
+ list( FILTER CLANG_FORMAT_SOURCES EXCLUDE REGEX ".*/*.gdextension.in" )
+ list( FILTER CLANG_FORMAT_SOURCES EXCLUDE REGEX ".*/Version.h.in" )
+
+ add_custom_target( clang-format
+ COMMAND "${CLANG_FORMAT_PROGRAM}" --style=file -i ${CLANG_FORMAT_SOURCES}
+ COMMENT "Running clang-format..."
+ COMMAND_EXPAND_LISTS
+ VERBATIM
+ )
+
+ unset( CLANG_FORMAT_VERSION )
+ unset( CLANG_FORMAT_SOURCES )
+endif()
diff --git a/gdlibretro/cmake/CompilerWarnings.cmake b/gdlibretro/cmake/CompilerWarnings.cmake
new file mode 100644
index 0000000..bee0550
--- /dev/null
+++ b/gdlibretro/cmake/CompilerWarnings.cmake
@@ -0,0 +1,115 @@
+# SPDX-License-Identifier: Unlicense
+# by Andy Maloney
+
+string( TOUPPER ${PROJECT_NAME} PROJECT_NAME_UPPERCASE )
+
+if ( NOT MSVC )
+ option( ${PROJECT_NAME_UPPERCASE}_WARN_EVERYTHING "Turn on all warnings (not recommended - used for lib development)" OFF )
+endif()
+
+option( ${PROJECT_NAME_UPPERCASE}_WARNING_AS_ERROR "Treat warnings as errors" ON )
+
+# Add warnings based on compiler
+# Set some helper variables for readability
+set( compiler_is_clang "$,$>" )
+set( compiler_is_gnu "$" )
+set( compiler_is_msvc "$" )
+
+target_compile_options( ${PROJECT_NAME}
+ PRIVATE
+ # MSVC only
+ $<${compiler_is_msvc}:
+ /W4
+
+ /w14263 # 'function': member function does not override any base class virtual member function
+ /w14296 # 'operator': expression is always 'boolean_value'
+ /w14311 # 'variable': pointer truncation from 'type1' to 'type2'
+ /w14545 # expression before comma evaluates to a function which is missing an argument list
+ /w14546 # function call before comma missing argument list
+ /w14547 # 'operator': operator before comma has no effect; expected operator with side-effect
+ /w14549 # 'operator': operator before comma has no effect; did you intend 'operator'?
+ /w14619 # pragma warning: there is no warning number 'number'
+ /w14640 # thread un-safe static member initialization
+ /w14905 # wide string literal cast to 'LPSTR'
+ /w14906 # string literal cast to 'LPWSTR'
+
+ # Disable warnings which bleed through from godot-cpp's macros.
+ /wd4100 # unreferenced formal parameter
+ >
+
+ # Clang and GNU
+ $<$:
+ -Wall
+ -Wcast-align
+ -Wctor-dtor-privacy
+ -Wextra
+ -Wformat=2
+ -Wnon-virtual-dtor
+ -Wnull-dereference
+ -Woverloaded-virtual
+ -Wpedantic
+ -Wshadow
+ -Wunused
+ -Wwrite-strings
+
+ # Disable warnings which bleed through from godot-cpp's macros.
+ -Wno-unused-parameter
+ >
+
+ # Clang only
+ $<${compiler_is_clang}:
+ -Wdocumentation
+ -Wimplicit-fallthrough
+ >
+
+ # GNU only
+ $<${compiler_is_gnu}:
+ -Walloc-zero
+ -Wduplicated-branches
+ -Wduplicated-cond
+ -Wlogical-op
+ >
+)
+
+# Turn on (almost) all warnings on Clang, Apple Clang, and GNU.
+# Useful for internal development, but too noisy for general development.
+function( set_warn_everything )
+ message( STATUS "[${PROJECT_NAME}] Turning on (almost) all warnings")
+
+ target_compile_options( ${PROJECT_NAME}
+ PRIVATE
+ # Clang and GNU
+ $<$:
+ -Weverything
+ -Wno-c++98-compat
+ -Wno-c++98-compat-pedantic
+ -Wno-padded
+ >
+ )
+endfunction()
+
+if ( NOT MSVC AND ${PROJECT_NAME_UPPERCASE}_WARN_EVERYTHING )
+ set_warn_everything()
+endif()
+
+# Treat warnings as errors
+function( set_warning_as_error )
+ message( STATUS "[${PROJECT_NAME}] Treating warnings as errors")
+
+ if ( CMAKE_VERSION VERSION_GREATER_EQUAL "3.24" )
+ set_target_properties( ${PROJECT_NAME}
+ PROPERTIES
+ COMPILE_WARNING_AS_ERROR ON
+ )
+ else()
+ target_compile_options( ${PROJECT_NAME}
+ PRIVATE
+ $<${compiler_is_msvc}:/WX>
+ $<$:-Werror>
+ )
+ endif()
+endfunction()
+
+if ( ${PROJECT_NAME_UPPERCASE}_WARNING_AS_ERROR )
+ set_warning_as_error()
+endif()
diff --git a/gdlibretro/cmake/GetGitRevisionDescription.cmake b/gdlibretro/cmake/GetGitRevisionDescription.cmake
new file mode 100644
index 0000000..4fbd90d
--- /dev/null
+++ b/gdlibretro/cmake/GetGitRevisionDescription.cmake
@@ -0,0 +1,284 @@
+# - Returns a version string from Git
+#
+# These functions force a re-configure on each git commit so that you can
+# trust the values of the variables in your build system.
+#
+# get_git_head_revision( [ALLOW_LOOKING_ABOVE_CMAKE_SOURCE_DIR])
+#
+# Returns the refspec and sha hash of the current head revision
+#
+# git_describe( [ ...])
+#
+# Returns the results of git describe on the source tree, and adjusting
+# the output so that it tests false if an error occurs.
+#
+# git_describe_working_tree( [ ...])
+#
+# Returns the results of git describe on the working tree (--dirty option),
+# and adjusting the output so that it tests false if an error occurs.
+#
+# git_get_exact_tag( [ ...])
+#
+# Returns the results of git describe --exact-match on the source tree,
+# and adjusting the output so that it tests false if there was no exact
+# matching tag.
+#
+# git_local_changes()
+#
+# Returns either "CLEAN" or "DIRTY" with respect to uncommitted changes.
+# Uses the return code of "git diff-index --quiet HEAD --".
+# Does not regard untracked files.
+#
+# Requires CMake 2.6 or newer (uses the 'function' command)
+#
+# Original Author:
+# 2009-2020 Ryan Pavlik
+# http://academic.cleardefinition.com
+#
+# Copyright 2009-2013, Iowa State University.
+# Copyright 2013-2020, Ryan Pavlik
+# Copyright 2013-2020, Contributors
+# SPDX-License-Identifier: BSL-1.0
+# Distributed under the Boost Software License, Version 1.0.
+# (See accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt)
+
+if(__get_git_revision_description)
+ return()
+endif()
+set(__get_git_revision_description YES)
+
+# We must run the following at "include" time, not at function call time,
+# to find the path to this module rather than the path to a calling list file
+get_filename_component(_gitdescmoddir ${CMAKE_CURRENT_LIST_FILE} PATH)
+
+# Function _git_find_closest_git_dir finds the next closest .git directory
+# that is part of any directory in the path defined by _start_dir.
+# The result is returned in the parent scope variable whose name is passed
+# as variable _git_dir_var. If no .git directory can be found, the
+# function returns an empty string via _git_dir_var.
+#
+# Example: Given a path C:/bla/foo/bar and assuming C:/bla/.git exists and
+# neither foo nor bar contain a file/directory .git. This wil return
+# C:/bla/.git
+#
+function(_git_find_closest_git_dir _start_dir _git_dir_var)
+ set(cur_dir "${_start_dir}")
+ set(git_dir "${_start_dir}/.git")
+ while(NOT EXISTS "${git_dir}")
+ # .git dir not found, search parent directories
+ set(git_previous_parent "${cur_dir}")
+ get_filename_component(cur_dir "${cur_dir}" DIRECTORY)
+ if(cur_dir STREQUAL git_previous_parent)
+ # We have reached the root directory, we are not in git
+ set(${_git_dir_var}
+ ""
+ PARENT_SCOPE)
+ return()
+ endif()
+ set(git_dir "${cur_dir}/.git")
+ endwhile()
+ set(${_git_dir_var}
+ "${git_dir}"
+ PARENT_SCOPE)
+endfunction()
+
+function(get_git_head_revision _refspecvar _hashvar)
+ _git_find_closest_git_dir("${CMAKE_CURRENT_SOURCE_DIR}" GIT_DIR)
+
+ if("${ARGN}" STREQUAL "ALLOW_LOOKING_ABOVE_CMAKE_SOURCE_DIR")
+ set(ALLOW_LOOKING_ABOVE_CMAKE_SOURCE_DIR TRUE)
+ else()
+ set(ALLOW_LOOKING_ABOVE_CMAKE_SOURCE_DIR FALSE)
+ endif()
+ if(NOT "${GIT_DIR}" STREQUAL "")
+ file(RELATIVE_PATH _relative_to_source_dir "${CMAKE_SOURCE_DIR}"
+ "${GIT_DIR}")
+ if("${_relative_to_source_dir}" MATCHES "[.][.]" AND NOT ALLOW_LOOKING_ABOVE_CMAKE_SOURCE_DIR)
+ # We've gone above the CMake root dir.
+ set(GIT_DIR "")
+ endif()
+ endif()
+ if("${GIT_DIR}" STREQUAL "")
+ set(${_refspecvar}
+ "GITDIR-NOTFOUND"
+ PARENT_SCOPE)
+ set(${_hashvar}
+ "GITDIR-NOTFOUND"
+ PARENT_SCOPE)
+ return()
+ endif()
+
+ # Check if the current source dir is a git submodule or a worktree.
+ # In both cases .git is a file instead of a directory.
+ #
+ if(NOT IS_DIRECTORY ${GIT_DIR})
+ # The following git command will return a non empty string that
+ # points to the super project working tree if the current
+ # source dir is inside a git submodule.
+ # Otherwise the command will return an empty string.
+ #
+ execute_process(
+ COMMAND "${GIT_EXECUTABLE}" rev-parse
+ --show-superproject-working-tree
+ WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
+ OUTPUT_VARIABLE out
+ ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE)
+ if(NOT "${out}" STREQUAL "")
+ # If out is empty, GIT_DIR/CMAKE_CURRENT_SOURCE_DIR is in a submodule
+ file(READ ${GIT_DIR} submodule)
+ string(REGEX REPLACE "gitdir: (.*)$" "\\1" GIT_DIR_RELATIVE
+ ${submodule})
+ string(STRIP ${GIT_DIR_RELATIVE} GIT_DIR_RELATIVE)
+ get_filename_component(SUBMODULE_DIR ${GIT_DIR} PATH)
+ get_filename_component(GIT_DIR ${SUBMODULE_DIR}/${GIT_DIR_RELATIVE}
+ ABSOLUTE)
+ set(HEAD_SOURCE_FILE "${GIT_DIR}/HEAD")
+ else()
+ # GIT_DIR/CMAKE_CURRENT_SOURCE_DIR is in a worktree
+ file(READ ${GIT_DIR} worktree_ref)
+ # The .git directory contains a path to the worktree information directory
+ # inside the parent git repo of the worktree.
+ #
+ string(REGEX REPLACE "gitdir: (.*)$" "\\1" git_worktree_dir
+ ${worktree_ref})
+ string(STRIP ${git_worktree_dir} git_worktree_dir)
+ _git_find_closest_git_dir("${git_worktree_dir}" GIT_DIR)
+ set(HEAD_SOURCE_FILE "${git_worktree_dir}/HEAD")
+ endif()
+ else()
+ set(HEAD_SOURCE_FILE "${GIT_DIR}/HEAD")
+ endif()
+ set(GIT_DATA "${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/git-data")
+ if(NOT EXISTS "${GIT_DATA}")
+ file(MAKE_DIRECTORY "${GIT_DATA}")
+ endif()
+
+ if(NOT EXISTS "${HEAD_SOURCE_FILE}")
+ return()
+ endif()
+ set(HEAD_FILE "${GIT_DATA}/HEAD")
+ configure_file("${HEAD_SOURCE_FILE}" "${HEAD_FILE}" COPYONLY)
+
+ configure_file("${_gitdescmoddir}/GetGitRevisionDescription.cmake.in"
+ "${GIT_DATA}/grabRef.cmake" @ONLY)
+ include("${GIT_DATA}/grabRef.cmake")
+
+ set(${_refspecvar}
+ "${HEAD_REF}"
+ PARENT_SCOPE)
+ set(${_hashvar}
+ "${HEAD_HASH}"
+ PARENT_SCOPE)
+endfunction()
+
+function(git_describe _var)
+ if(NOT GIT_FOUND)
+ find_package(Git QUIET)
+ endif()
+ get_git_head_revision(refspec hash)
+ if(NOT GIT_FOUND)
+ set(${_var}
+ "GIT-NOTFOUND"
+ PARENT_SCOPE)
+ return()
+ endif()
+ if(NOT hash)
+ set(${_var}
+ "HEAD-HASH-NOTFOUND"
+ PARENT_SCOPE)
+ return()
+ endif()
+
+ # TODO sanitize
+ #if((${ARGN}" MATCHES "&&") OR
+ # (ARGN MATCHES "||") OR
+ # (ARGN MATCHES "\\;"))
+ # message("Please report the following error to the project!")
+ # message(FATAL_ERROR "Looks like someone's doing something nefarious with git_describe! Passed arguments ${ARGN}")
+ #endif()
+
+ #message(STATUS "Arguments to execute_process: ${ARGN}")
+
+ execute_process(
+ COMMAND "${GIT_EXECUTABLE}" describe --tags --always ${hash} ${ARGN}
+ WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
+ RESULT_VARIABLE res
+ OUTPUT_VARIABLE out
+ ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE)
+ if(NOT res EQUAL 0)
+ set(out "${out}-${res}-NOTFOUND")
+ endif()
+
+ set(${_var}
+ "${out}"
+ PARENT_SCOPE)
+endfunction()
+
+function(git_describe_working_tree _var)
+ if(NOT GIT_FOUND)
+ find_package(Git QUIET)
+ endif()
+ if(NOT GIT_FOUND)
+ set(${_var}
+ "GIT-NOTFOUND"
+ PARENT_SCOPE)
+ return()
+ endif()
+
+ execute_process(
+ COMMAND "${GIT_EXECUTABLE}" describe --dirty ${ARGN}
+ WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
+ RESULT_VARIABLE res
+ OUTPUT_VARIABLE out
+ ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE)
+ if(NOT res EQUAL 0)
+ set(out "${out}-${res}-NOTFOUND")
+ endif()
+
+ set(${_var}
+ "${out}"
+ PARENT_SCOPE)
+endfunction()
+
+function(git_get_exact_tag _var)
+ git_describe(out --exact-match ${ARGN})
+ set(${_var}
+ "${out}"
+ PARENT_SCOPE)
+endfunction()
+
+function(git_local_changes _var)
+ if(NOT GIT_FOUND)
+ find_package(Git QUIET)
+ endif()
+ get_git_head_revision(refspec hash)
+ if(NOT GIT_FOUND)
+ set(${_var}
+ "GIT-NOTFOUND"
+ PARENT_SCOPE)
+ return()
+ endif()
+ if(NOT hash)
+ set(${_var}
+ "HEAD-HASH-NOTFOUND"
+ PARENT_SCOPE)
+ return()
+ endif()
+
+ execute_process(
+ COMMAND "${GIT_EXECUTABLE}" diff-index --quiet HEAD --
+ WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
+ RESULT_VARIABLE res
+ OUTPUT_VARIABLE out
+ ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE)
+ if(res EQUAL 0)
+ set(${_var}
+ "CLEAN"
+ PARENT_SCOPE)
+ else()
+ set(${_var}
+ "DIRTY"
+ PARENT_SCOPE)
+ endif()
+endfunction()
diff --git a/gdlibretro/cmake/GetGitRevisionDescription.cmake.in b/gdlibretro/cmake/GetGitRevisionDescription.cmake.in
new file mode 100644
index 0000000..116efc4
--- /dev/null
+++ b/gdlibretro/cmake/GetGitRevisionDescription.cmake.in
@@ -0,0 +1,43 @@
+#
+# Internal file for GetGitRevisionDescription.cmake
+#
+# Requires CMake 2.6 or newer (uses the 'function' command)
+#
+# Original Author:
+# 2009-2010 Ryan Pavlik
+# http://academic.cleardefinition.com
+# Iowa State University HCI Graduate Program/VRAC
+#
+# Copyright 2009-2012, Iowa State University
+# Copyright 2011-2015, Contributors
+# Distributed under the Boost Software License, Version 1.0.
+# (See accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt)
+# SPDX-License-Identifier: BSL-1.0
+
+set(HEAD_HASH)
+
+file(READ "@HEAD_FILE@" HEAD_CONTENTS LIMIT 1024)
+
+string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS)
+if(HEAD_CONTENTS MATCHES "ref")
+ # named branch
+ string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}")
+ if(EXISTS "@GIT_DIR@/${HEAD_REF}")
+ configure_file("@GIT_DIR@/${HEAD_REF}" "@GIT_DATA@/head-ref" COPYONLY)
+ else()
+ configure_file("@GIT_DIR@/packed-refs" "@GIT_DATA@/packed-refs" COPYONLY)
+ file(READ "@GIT_DATA@/packed-refs" PACKED_REFS)
+ if(${PACKED_REFS} MATCHES "([0-9a-z]*) ${HEAD_REF}")
+ set(HEAD_HASH "${CMAKE_MATCH_1}")
+ endif()
+ endif()
+else()
+ # detached HEAD
+ configure_file("@GIT_DIR@/HEAD" "@GIT_DATA@/head-ref" COPYONLY)
+endif()
+
+if(NOT HEAD_HASH)
+ file(READ "@GIT_DATA@/head-ref" HEAD_HASH LIMIT 1024)
+ string(STRIP "${HEAD_HASH}" HEAD_HASH)
+endif()
diff --git a/gdlibretro/cmake/GitVersionInfo.cmake b/gdlibretro/cmake/GitVersionInfo.cmake
new file mode 100644
index 0000000..c1285ab
--- /dev/null
+++ b/gdlibretro/cmake/GitVersionInfo.cmake
@@ -0,0 +1,46 @@
+# SPDX-License-Identifier: Unlicense
+
+find_program( GIT_PROGRAM git )
+
+if ( GIT_PROGRAM )
+ # get version information
+ execute_process(
+ COMMAND "${GIT_PROGRAM}" --version
+ OUTPUT_VARIABLE GIT_VERSION
+ OUTPUT_STRIP_TRAILING_WHITESPACE
+ )
+
+ message( STATUS "Using git: ${GIT_PROGRAM} (${GIT_VERSION})" )
+
+ include( GetGitRevisionDescription )
+
+ get_git_head_revision( GIT_REFSPEC GIT_SHA1 )
+ git_describe( GIT_SHORT )
+
+ string( TOUPPER ${PROJECT_NAME} UPPER_PROJECT_NAME )
+
+ set( VERSION_INPUT_FILE "src/Version.h.in" )
+ set( VERSION_OUTPUT_FILE "${CMAKE_BINARY_DIR}/gen/Version.h" )
+
+ configure_file( "${VERSION_INPUT_FILE}" "${VERSION_OUTPUT_FILE}" )
+
+ target_sources( ${PROJECT_NAME}
+ PRIVATE
+ "${VERSION_INPUT_FILE}"
+ "${VERSION_OUTPUT_FILE}"
+ )
+
+ get_filename_component( VERSION_OUTPUT_FILE_DIR ${VERSION_OUTPUT_FILE} DIRECTORY )
+
+ target_include_directories( ${PROJECT_NAME}
+ PRIVATE
+ ${VERSION_OUTPUT_FILE_DIR}
+ )
+
+ message( STATUS "${PROJECT_NAME} version: ${GIT_SHORT}" )
+
+ unset( VERSION_INPUT_FILE )
+ unset( VERSION_OUTPUT_FILE )
+ unset( VERSION_OUTPUT_FILE_DIR )
+ unset( GIT_VERSION )
+endif()
diff --git a/gdlibretro/cmake/ccache.cmake b/gdlibretro/cmake/ccache.cmake
new file mode 100644
index 0000000..4bb5661
--- /dev/null
+++ b/gdlibretro/cmake/ccache.cmake
@@ -0,0 +1,22 @@
+# SPDX-License-Identifier: Unlicense
+
+# See: https://crascit.com/2016/04/09/using-ccache-with-cmake/
+find_program( CCACHE_PROGRAM ccache )
+
+if ( CCACHE_PROGRAM )
+ # get version information
+ execute_process(
+ COMMAND "${CCACHE_PROGRAM}" --version
+ OUTPUT_VARIABLE CCACHE_VERSION
+ )
+
+ string( REGEX MATCH "[^\r\n]*" CCACHE_VERSION ${CCACHE_VERSION} )
+
+ message( STATUS "Using ccache: ${CCACHE_PROGRAM} (${CCACHE_VERSION})" )
+
+ # Turn on ccache for all targets
+ set( CMAKE_CXX_COMPILER_LAUNCHER "${CCACHE_PROGRAM}" )
+ set( CMAKE_C_COMPILER_LAUNCHER "${CCACHE_PROGRAM}" )
+
+ unset( CCACHE_VERSION )
+endif()
diff --git a/gdlibretro/cmake_install.cmake b/gdlibretro/cmake_install.cmake
new file mode 100644
index 0000000..5e271c9
--- /dev/null
+++ b/gdlibretro/cmake_install.cmake
@@ -0,0 +1,104 @@
+# Install script for directory: /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro
+
+# 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 "1")
+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/objdump")
+endif()
+
+if(NOT CMAKE_INSTALL_LOCAL_ONLY)
+ # Include the install script for the subdirectory.
+ include("/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/cmake_install.cmake")
+endif()
+
+if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
+ if(EXISTS "$ENV{DESTDIR}/usr/local/LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so" AND
+ NOT IS_SYMLINK "$ENV{DESTDIR}/usr/local/LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so")
+ file(RPATH_CHECK
+ FILE "$ENV{DESTDIR}/usr/local/LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so"
+ RPATH "")
+ endif()
+ list(APPEND CMAKE_ABSOLUTE_DESTINATION_FILES
+ "/usr/local/LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so")
+ if(CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION)
+ message(WARNING "ABSOLUTE path INSTALL DESTINATION : ${CMAKE_ABSOLUTE_DESTINATION_FILES}")
+ endif()
+ if(CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION)
+ message(FATAL_ERROR "ABSOLUTE path INSTALL DESTINATION forbidden (by caller): ${CMAKE_ABSOLUTE_DESTINATION_FILES}")
+ endif()
+ file(INSTALL DESTINATION "/usr/local/LibRetroHost/lib/Linux-x86_64" TYPE SHARED_LIBRARY FILES "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so")
+ if(EXISTS "$ENV{DESTDIR}/usr/local/LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so" AND
+ NOT IS_SYMLINK "$ENV{DESTDIR}/usr/local/LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so")
+ if(CMAKE_INSTALL_DO_STRIP)
+ execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}/usr/local/LibRetroHost/lib/Linux-x86_64/libLibRetroHost-d.so")
+ endif()
+ endif()
+endif()
+
+if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
+endif()
+
+if(NOT CMAKE_INSTALL_LOCAL_ONLY)
+ # Include the install script for the subdirectory.
+ include("/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/template/cmake_install.cmake")
+endif()
+
+if(NOT CMAKE_INSTALL_LOCAL_ONLY)
+ # Include the install script for the subdirectory.
+ include("/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/cmake_install.cmake")
+endif()
+
+if(CMAKE_INSTALL_COMPONENT)
+ if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$")
+ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
+ else()
+ string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}")
+ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt")
+ unset(CMAKE_INST_COMP_HASH)
+ endif()
+else()
+ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
+endif()
+
+if(NOT CMAKE_INSTALL_LOCAL_ONLY)
+ string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
+ "${CMAKE_INSTALL_MANIFEST_FILES}")
+ file(WRITE "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/${CMAKE_INSTALL_MANIFEST}"
+ "${CMAKE_INSTALL_MANIFEST_CONTENT}")
+endif()
diff --git a/gdlibretro/compile_commands.json b/gdlibretro/compile_commands.json
new file mode 100644
index 0000000..3ffa999
--- /dev/null
+++ b/gdlibretro/compile_commands.json
@@ -0,0 +1,5660 @@
+[
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -DLibRetroHost_EXPORTS -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/gen -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/src -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -Wall -Wcast-align -Wctor-dtor-privacy -Wextra -Wformat=2 -Wnon-virtual-dtor -Wnull-dereference -Woverloaded-virtual -Wpedantic -Wshadow -Wunused -Wwrite-strings -Wno-unused-parameter -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wlogical-op -Werror -o CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RegisterExtension.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RegisterExtension.cpp",
+ "output": "CMakeFiles/LibRetroHost.dir/src/RegisterExtension.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -DLibRetroHost_EXPORTS -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/gen -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/src -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -Wall -Wcast-align -Wctor-dtor-privacy -Wextra -Wformat=2 -Wnon-virtual-dtor -Wnull-dereference -Woverloaded-virtual -Wpedantic -Wshadow -Wunused -Wwrite-strings -Wno-unused-parameter -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wlogical-op -Werror -o CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/RetroHost.cpp",
+ "output": "CMakeFiles/LibRetroHost.dir/src/RetroHost.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -DLibRetroHost_EXPORTS -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/gen -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/src -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -Wall -Wcast-align -Wctor-dtor-privacy -Wextra -Wformat=2 -Wnon-virtual-dtor -Wnull-dereference -Woverloaded-virtual -Wpedantic -Wshadow -Wunused -Wwrite-strings -Wno-unused-parameter -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wlogical-op -Werror -o CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CoreEnvironment.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CoreEnvironment.cpp",
+ "output": "CMakeFiles/LibRetroHost.dir/src/CoreEnvironment.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -DLibRetroHost_EXPORTS -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/gen -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/src -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -Wall -Wcast-align -Wctor-dtor-privacy -Wextra -Wformat=2 -Wnon-virtual-dtor -Wnull-dereference -Woverloaded-virtual -Wpedantic -Wshadow -Wunused -Wwrite-strings -Wno-unused-parameter -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wlogical-op -Werror -o CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CoreVariables.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/CoreVariables.cpp",
+ "output": "CMakeFiles/LibRetroHost.dir/src/CoreVariables.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -DLibRetroHost_EXPORTS -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/gen -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/src -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -Wall -Wcast-align -Wctor-dtor-privacy -Wextra -Wformat=2 -Wnon-virtual-dtor -Wnull-dereference -Woverloaded-virtual -Wpedantic -Wshadow -Wunused -Wwrite-strings -Wno-unused-parameter -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wlogical-op -Werror -o CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Audio.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Audio.cpp",
+ "output": "CMakeFiles/LibRetroHost.dir/src/Audio.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -DLibRetroHost_EXPORTS -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/gen -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/src -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -Wall -Wcast-align -Wctor-dtor-privacy -Wextra -Wformat=2 -Wnon-virtual-dtor -Wnull-dereference -Woverloaded-virtual -Wpedantic -Wshadow -Wunused -Wwrite-strings -Wno-unused-parameter -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wlogical-op -Werror -o CMakeFiles/LibRetroHost.dir/src/Input.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Input.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Input.cpp",
+ "output": "CMakeFiles/LibRetroHost.dir/src/Input.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -DLibRetroHost_EXPORTS -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/gen -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/src -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -Wall -Wcast-align -Wctor-dtor-privacy -Wextra -Wformat=2 -Wnon-virtual-dtor -Wnull-dereference -Woverloaded-virtual -Wpedantic -Wshadow -Wunused -Wwrite-strings -Wno-unused-parameter -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wlogical-op -Werror -o CMakeFiles/LibRetroHost.dir/src/Video.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Video.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/Video.cpp",
+ "output": "CMakeFiles/LibRetroHost.dir/src/Video.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -DLibRetroHost_EXPORTS -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/gen -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/src -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/libretro-common/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -Wall -Wcast-align -Wctor-dtor-privacy -Wextra -Wformat=2 -Wnon-virtual-dtor -Wnull-dereference -Woverloaded-virtual -Wpedantic -Wshadow -Wunused -Wwrite-strings -Wno-unused-parameter -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wlogical-op -Werror -o CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/VFS.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/src/VFS.cpp",
+ "output": "CMakeFiles/LibRetroHost.dir/src/VFS.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/classes/editor_plugin_registration.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/classes/editor_plugin_registration.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/classes/editor_plugin_registration.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/classes/editor_plugin_registration.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/classes/low_level.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/classes/low_level.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/classes/low_level.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/classes/low_level.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/classes/wrapped.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/classes/wrapped.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/classes/wrapped.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/classes/wrapped.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/core/class_db.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/core/class_db.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/core/class_db.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/core/class_db.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/core/error_macros.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/core/error_macros.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/core/error_macros.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/core/error_macros.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/core/memory.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/core/memory.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/core/memory.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/core/memory.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/core/method_bind.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/core/method_bind.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/core/method_bind.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/core/method_bind.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/core/object.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/core/object.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/core/object.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/core/object.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/godot.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/godot.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/godot.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/godot.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/variant/aabb.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/aabb.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/aabb.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/variant/aabb.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/variant/basis.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/basis.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/basis.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/variant/basis.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/variant/char_string.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/char_string.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/char_string.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/variant/char_string.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/variant/color.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/color.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/color.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/variant/color.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/variant/packed_arrays.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/packed_arrays.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/packed_arrays.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/variant/packed_arrays.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/variant/plane.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/plane.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/plane.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/variant/plane.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/variant/projection.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/projection.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/projection.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/variant/projection.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/variant/quaternion.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/quaternion.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/quaternion.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/variant/quaternion.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/variant/rect2.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/rect2.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/rect2.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/variant/rect2.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/variant/rect2i.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/rect2i.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/rect2i.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/variant/rect2i.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/variant/transform2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/transform2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/transform2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/variant/transform2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/variant/transform3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/transform3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/transform3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/variant/transform3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/variant/variant.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/variant.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/variant.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/variant/variant.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/variant/vector2.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/vector2.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/vector2.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/variant/vector2.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/variant/vector2i.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/vector2i.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/vector2i.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/variant/vector2i.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/variant/vector3.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/vector3.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/vector3.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/variant/vector3.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/variant/vector3i.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/vector3i.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/vector3i.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/variant/vector3i.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/variant/vector4.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/vector4.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/vector4.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/variant/vector4.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/src/variant/vector4i.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/vector4i.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/src/variant/vector4i.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/src/variant/vector4i.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/variant/string.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/string.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/string.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/variant/string.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/variant/string_name.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/string_name.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/string_name.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/variant/string_name.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/variant/node_path.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/node_path.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/node_path.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/variant/node_path.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/variant/rid.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/rid.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/rid.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/variant/rid.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/variant/callable.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/callable.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/callable.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/variant/callable.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/variant/signal.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/signal.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/signal.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/variant/signal.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/variant/dictionary.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/dictionary.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/dictionary.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/variant/dictionary.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/variant/array.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/array.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/array.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/variant/array.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/variant/packed_byte_array.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/packed_byte_array.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/packed_byte_array.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/variant/packed_byte_array.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/variant/packed_int32_array.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/packed_int32_array.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/packed_int32_array.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/variant/packed_int32_array.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/variant/packed_int64_array.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/packed_int64_array.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/packed_int64_array.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/variant/packed_int64_array.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/variant/packed_float32_array.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/packed_float32_array.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/packed_float32_array.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/variant/packed_float32_array.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/variant/packed_float64_array.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/packed_float64_array.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/packed_float64_array.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/variant/packed_float64_array.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/variant/packed_string_array.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/packed_string_array.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/packed_string_array.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/variant/packed_string_array.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/variant/packed_vector2_array.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/packed_vector2_array.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/packed_vector2_array.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/variant/packed_vector2_array.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/variant/packed_vector3_array.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/packed_vector3_array.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/packed_vector3_array.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/variant/packed_vector3_array.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/variant/packed_color_array.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/packed_color_array.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/packed_color_array.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/variant/packed_color_array.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/aes_context.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/aes_context.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/aes_context.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/aes_context.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/a_star2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/a_star2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/a_star2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/a_star2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/a_star3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/a_star3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/a_star3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/a_star3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/a_star_grid2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/a_star_grid2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/a_star_grid2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/a_star_grid2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/accept_dialog.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/accept_dialog.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/accept_dialog.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/accept_dialog.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animatable_body2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animatable_body2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animatable_body2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animatable_body2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animatable_body3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animatable_body3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animatable_body3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animatable_body3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animated_sprite2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animated_sprite2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animated_sprite2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animated_sprite2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animated_sprite3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animated_sprite3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animated_sprite3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animated_sprite3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animated_texture.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animated_texture.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animated_texture.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animated_texture.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_library.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_library.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_library.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_library.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_add2.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_add2.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_add2.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_add2.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_add3.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_add3.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_add3.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_add3.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_animation.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_animation.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_animation.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_animation.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_blend2.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_blend2.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_blend2.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_blend2.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_blend3.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_blend3.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_blend3.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_blend3.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_blend_space1_d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_blend_space1_d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_blend_space1_d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_blend_space1_d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_blend_space2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_blend_space2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_blend_space2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_blend_space2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_blend_tree.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_blend_tree.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_blend_tree.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_blend_tree.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_one_shot.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_one_shot.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_one_shot.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_one_shot.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_output.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_output.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_output.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_output.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_state_machine.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_state_machine.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_state_machine.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_state_machine.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_state_machine_playback.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_state_machine_playback.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_state_machine_playback.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_state_machine_playback.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_state_machine_transition.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_state_machine_transition.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_state_machine_transition.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_state_machine_transition.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_sub2.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_sub2.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_sub2.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_sub2.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_sync.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_sync.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_sync.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_sync.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_time_scale.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_time_scale.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_time_scale.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_time_scale.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_time_seek.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_time_seek.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_time_seek.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_time_seek.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_transition.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_transition.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_node_transition.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_node_transition.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_player.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_player.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_player.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_player.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_root_node.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_root_node.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_root_node.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_root_node.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/animation_tree.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_tree.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/animation_tree.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/animation_tree.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/area2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/area2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/area2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/area2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/area3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/area3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/area3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/area3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/array_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/array_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/array_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/array_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/array_occluder3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/array_occluder3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/array_occluder3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/array_occluder3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/aspect_ratio_container.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/aspect_ratio_container.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/aspect_ratio_container.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/aspect_ratio_container.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/atlas_texture.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/atlas_texture.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/atlas_texture.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/atlas_texture.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_bus_layout.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_bus_layout.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_bus_layout.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_bus_layout.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_amplify.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_amplify.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_amplify.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_amplify.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_band_limit_filter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_band_limit_filter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_band_limit_filter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_band_limit_filter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_band_pass_filter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_band_pass_filter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_band_pass_filter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_band_pass_filter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_capture.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_capture.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_capture.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_capture.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_chorus.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_chorus.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_chorus.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_chorus.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_compressor.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_compressor.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_compressor.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_compressor.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_delay.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_delay.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_delay.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_delay.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_distortion.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_distortion.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_distortion.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_distortion.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_eq.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_eq.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_eq.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_eq.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_eq10.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_eq10.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_eq10.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_eq10.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_eq21.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_eq21.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_eq21.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_eq21.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_eq6.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_eq6.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_eq6.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_eq6.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_filter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_filter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_filter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_filter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_high_pass_filter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_high_pass_filter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_high_pass_filter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_high_pass_filter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_high_shelf_filter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_high_shelf_filter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_high_shelf_filter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_high_shelf_filter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_instance.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_instance.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_instance.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_instance.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_limiter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_limiter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_limiter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_limiter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_low_pass_filter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_low_pass_filter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_low_pass_filter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_low_pass_filter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_low_shelf_filter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_low_shelf_filter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_low_shelf_filter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_low_shelf_filter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_notch_filter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_notch_filter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_notch_filter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_notch_filter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_panner.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_panner.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_panner.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_panner.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_phaser.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_phaser.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_phaser.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_phaser.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_pitch_shift.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_pitch_shift.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_pitch_shift.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_pitch_shift.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_record.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_record.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_record.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_record.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_reverb.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_reverb.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_reverb.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_reverb.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_spectrum_analyzer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_spectrum_analyzer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_spectrum_analyzer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_spectrum_analyzer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_spectrum_analyzer_instance.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_spectrum_analyzer_instance.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_spectrum_analyzer_instance.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_spectrum_analyzer_instance.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_stereo_enhance.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_stereo_enhance.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_effect_stereo_enhance.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_effect_stereo_enhance.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_listener2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_listener2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_listener2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_listener2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_listener3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_listener3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_listener3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_listener3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_server.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_server.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_server.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_server.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_generator.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_generator.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_generator.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_generator.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_generator_playback.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_generator_playback.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_generator_playback.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_generator_playback.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_mp3.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_mp3.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_mp3.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_mp3.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_microphone.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_microphone.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_microphone.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_microphone.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_ogg_vorbis.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_ogg_vorbis.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_ogg_vorbis.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_ogg_vorbis.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_playback.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_playback.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_playback.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_playback.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_playback_ogg_vorbis.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_playback_ogg_vorbis.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_playback_ogg_vorbis.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_playback_ogg_vorbis.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_playback_polyphonic.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_playback_polyphonic.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_playback_polyphonic.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_playback_polyphonic.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_playback_resampled.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_playback_resampled.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_playback_resampled.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_playback_resampled.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_player.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_player.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_player.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_player.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_player2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_player2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_player2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_player2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_player3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_player3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_player3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_player3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_polyphonic.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_polyphonic.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_polyphonic.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_polyphonic.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_randomizer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_randomizer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_randomizer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_randomizer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_wav.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_wav.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/audio_stream_wav.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/audio_stream_wav.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/back_buffer_copy.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/back_buffer_copy.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/back_buffer_copy.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/back_buffer_copy.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/base_button.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/base_button.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/base_button.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/base_button.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/base_material3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/base_material3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/base_material3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/base_material3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/bit_map.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/bit_map.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/bit_map.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/bit_map.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/bone2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/bone2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/bone2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/bone2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/bone_attachment3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/bone_attachment3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/bone_attachment3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/bone_attachment3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/bone_map.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/bone_map.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/bone_map.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/bone_map.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/box_container.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/box_container.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/box_container.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/box_container.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/box_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/box_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/box_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/box_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/box_occluder3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/box_occluder3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/box_occluder3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/box_occluder3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/box_shape3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/box_shape3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/box_shape3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/box_shape3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/button.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/button.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/button.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/button.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/button_group.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/button_group.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/button_group.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/button_group.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/cpu_particles2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/cpu_particles2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/cpu_particles2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/cpu_particles2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/cpu_particles3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/cpu_particles3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/cpu_particles3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/cpu_particles3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/csg_box3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/csg_box3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/csg_box3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/csg_box3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/csg_combiner3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/csg_combiner3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/csg_combiner3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/csg_combiner3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/csg_cylinder3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/csg_cylinder3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/csg_cylinder3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/csg_cylinder3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/csg_mesh3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/csg_mesh3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/csg_mesh3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/csg_mesh3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/csg_polygon3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/csg_polygon3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/csg_polygon3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/csg_polygon3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/csg_primitive3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/csg_primitive3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/csg_primitive3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/csg_primitive3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/csg_shape3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/csg_shape3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/csg_shape3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/csg_shape3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/csg_sphere3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/csg_sphere3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/csg_sphere3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/csg_sphere3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/csg_torus3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/csg_torus3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/csg_torus3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/csg_torus3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/callback_tweener.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/callback_tweener.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/callback_tweener.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/callback_tweener.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/camera2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/camera2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/camera2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/camera2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/camera3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/camera3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/camera3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/camera3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/camera_attributes.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/camera_attributes.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/camera_attributes.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/camera_attributes.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/camera_attributes_physical.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/camera_attributes_physical.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/camera_attributes_physical.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/camera_attributes_physical.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/camera_attributes_practical.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/camera_attributes_practical.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/camera_attributes_practical.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/camera_attributes_practical.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/camera_feed.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/camera_feed.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/camera_feed.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/camera_feed.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/camera_server.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/camera_server.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/camera_server.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/camera_server.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/camera_texture.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/camera_texture.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/camera_texture.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/camera_texture.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/canvas_group.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/canvas_group.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/canvas_group.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/canvas_group.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/canvas_item.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/canvas_item.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/canvas_item.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/canvas_item.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/canvas_item_material.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/canvas_item_material.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/canvas_item_material.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/canvas_item_material.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/canvas_layer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/canvas_layer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/canvas_layer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/canvas_layer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/canvas_modulate.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/canvas_modulate.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/canvas_modulate.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/canvas_modulate.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/canvas_texture.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/canvas_texture.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/canvas_texture.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/canvas_texture.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/capsule_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/capsule_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/capsule_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/capsule_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/capsule_shape2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/capsule_shape2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/capsule_shape2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/capsule_shape2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/capsule_shape3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/capsule_shape3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/capsule_shape3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/capsule_shape3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/center_container.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/center_container.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/center_container.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/center_container.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/char_fx_transform.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/char_fx_transform.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/char_fx_transform.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/char_fx_transform.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/character_body2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/character_body2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/character_body2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/character_body2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/character_body3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/character_body3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/character_body3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/character_body3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/check_box.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/check_box.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/check_box.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/check_box.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/check_button.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/check_button.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/check_button.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/check_button.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/circle_shape2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/circle_shape2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/circle_shape2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/circle_shape2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/class_db_singleton.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/class_db_singleton.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/class_db_singleton.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/class_db_singleton.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/code_edit.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/code_edit.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/code_edit.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/code_edit.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/code_highlighter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/code_highlighter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/code_highlighter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/code_highlighter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/collision_object2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/collision_object2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/collision_object2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/collision_object2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/collision_object3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/collision_object3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/collision_object3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/collision_object3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/collision_polygon2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/collision_polygon2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/collision_polygon2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/collision_polygon2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/collision_polygon3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/collision_polygon3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/collision_polygon3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/collision_polygon3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/collision_shape2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/collision_shape2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/collision_shape2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/collision_shape2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/collision_shape3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/collision_shape3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/collision_shape3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/collision_shape3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/color_picker.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/color_picker.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/color_picker.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/color_picker.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/color_picker_button.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/color_picker_button.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/color_picker_button.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/color_picker_button.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/color_rect.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/color_rect.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/color_rect.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/color_rect.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/compressed_cubemap.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/compressed_cubemap.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/compressed_cubemap.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/compressed_cubemap.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/compressed_cubemap_array.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/compressed_cubemap_array.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/compressed_cubemap_array.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/compressed_cubemap_array.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/compressed_texture2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/compressed_texture2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/compressed_texture2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/compressed_texture2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/compressed_texture2d_array.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/compressed_texture2d_array.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/compressed_texture2d_array.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/compressed_texture2d_array.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/compressed_texture3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/compressed_texture3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/compressed_texture3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/compressed_texture3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/compressed_texture_layered.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/compressed_texture_layered.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/compressed_texture_layered.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/compressed_texture_layered.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/concave_polygon_shape2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/concave_polygon_shape2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/concave_polygon_shape2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/concave_polygon_shape2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/concave_polygon_shape3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/concave_polygon_shape3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/concave_polygon_shape3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/concave_polygon_shape3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/cone_twist_joint3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/cone_twist_joint3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/cone_twist_joint3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/cone_twist_joint3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/config_file.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/config_file.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/config_file.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/config_file.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/confirmation_dialog.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/confirmation_dialog.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/confirmation_dialog.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/confirmation_dialog.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/container.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/container.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/container.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/container.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/control.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/control.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/control.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/control.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/convex_polygon_shape2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/convex_polygon_shape2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/convex_polygon_shape2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/convex_polygon_shape2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/convex_polygon_shape3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/convex_polygon_shape3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/convex_polygon_shape3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/convex_polygon_shape3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/crypto.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/crypto.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/crypto.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/crypto.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/crypto_key.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/crypto_key.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/crypto_key.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/crypto_key.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/cubemap.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/cubemap.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/cubemap.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/cubemap.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/cubemap_array.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/cubemap_array.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/cubemap_array.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/cubemap_array.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/curve.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/curve.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/curve.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/curve.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/curve2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/curve2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/curve2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/curve2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/curve3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/curve3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/curve3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/curve3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/curve_texture.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/curve_texture.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/curve_texture.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/curve_texture.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/curve_xyz_texture.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/curve_xyz_texture.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/curve_xyz_texture.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/curve_xyz_texture.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/cylinder_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/cylinder_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/cylinder_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/cylinder_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/cylinder_shape3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/cylinder_shape3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/cylinder_shape3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/cylinder_shape3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/dtls_server.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/dtls_server.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/dtls_server.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/dtls_server.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/damped_spring_joint2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/damped_spring_joint2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/damped_spring_joint2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/damped_spring_joint2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/decal.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/decal.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/decal.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/decal.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/dir_access.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/dir_access.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/dir_access.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/dir_access.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/directional_light2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/directional_light2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/directional_light2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/directional_light2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/directional_light3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/directional_light3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/directional_light3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/directional_light3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/display_server.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/display_server.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/display_server.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/display_server.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/e_net_connection.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/e_net_connection.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/e_net_connection.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/e_net_connection.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/e_net_multiplayer_peer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/e_net_multiplayer_peer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/e_net_multiplayer_peer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/e_net_multiplayer_peer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/e_net_packet_peer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/e_net_packet_peer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/e_net_packet_peer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/e_net_packet_peer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_command_palette.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_command_palette.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_command_palette.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_command_palette.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_debugger_plugin.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_debugger_plugin.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_debugger_plugin.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_debugger_plugin.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_debugger_session.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_debugger_session.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_debugger_session.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_debugger_session.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_export_platform.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_export_platform.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_export_platform.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_export_platform.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_export_platform_android.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_export_platform_android.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_export_platform_android.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_export_platform_android.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_export_platform_ios.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_export_platform_ios.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_export_platform_ios.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_export_platform_ios.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_export_platform_linux_bsd.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_export_platform_linux_bsd.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_export_platform_linux_bsd.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_export_platform_linux_bsd.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_export_platform_mac_os.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_export_platform_mac_os.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_export_platform_mac_os.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_export_platform_mac_os.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_export_platform_pc.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_export_platform_pc.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_export_platform_pc.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_export_platform_pc.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_export_platform_web.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_export_platform_web.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_export_platform_web.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_export_platform_web.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_export_platform_windows.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_export_platform_windows.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_export_platform_windows.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_export_platform_windows.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_export_plugin.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_export_plugin.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_export_plugin.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_export_plugin.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_feature_profile.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_feature_profile.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_feature_profile.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_feature_profile.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_file_dialog.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_file_dialog.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_file_dialog.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_file_dialog.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_file_system.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_file_system.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_file_system.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_file_system.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_file_system_directory.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_file_system_directory.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_file_system_directory.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_file_system_directory.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_file_system_import_format_support_query.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_file_system_import_format_support_query.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_file_system_import_format_support_query.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_file_system_import_format_support_query.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_import_plugin.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_import_plugin.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_import_plugin.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_import_plugin.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_inspector.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_inspector.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_inspector.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_inspector.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_inspector_plugin.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_inspector_plugin.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_inspector_plugin.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_inspector_plugin.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_interface.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_interface.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_interface.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_interface.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_node3d_gizmo.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_node3d_gizmo.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_node3d_gizmo.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_node3d_gizmo.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_node3d_gizmo_plugin.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_node3d_gizmo_plugin.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_node3d_gizmo_plugin.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_node3d_gizmo_plugin.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_paths.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_paths.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_paths.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_paths.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_plugin.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_plugin.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_plugin.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_plugin.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_property.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_property.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_property.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_property.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_resource_conversion_plugin.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_resource_conversion_plugin.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_resource_conversion_plugin.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_resource_conversion_plugin.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_resource_picker.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_resource_picker.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_resource_picker.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_resource_picker.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_resource_preview.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_resource_preview.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_resource_preview.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_resource_preview.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_resource_preview_generator.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_resource_preview_generator.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_resource_preview_generator.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_resource_preview_generator.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_resource_tooltip_plugin.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_resource_tooltip_plugin.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_resource_tooltip_plugin.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_resource_tooltip_plugin.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_scene_format_importer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_scene_format_importer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_scene_format_importer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_scene_format_importer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_scene_format_importer_blend.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_scene_format_importer_blend.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_scene_format_importer_blend.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_scene_format_importer_blend.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_scene_format_importer_fbx.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_scene_format_importer_fbx.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_scene_format_importer_fbx.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_scene_format_importer_fbx.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_scene_format_importer_gltf.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_scene_format_importer_gltf.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_scene_format_importer_gltf.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_scene_format_importer_gltf.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_scene_post_import.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_scene_post_import.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_scene_post_import.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_scene_post_import.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_scene_post_import_plugin.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_scene_post_import_plugin.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_scene_post_import_plugin.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_scene_post_import_plugin.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_script.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_script.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_script.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_script.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_script_picker.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_script_picker.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_script_picker.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_script_picker.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_selection.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_selection.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_selection.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_selection.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_settings.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_settings.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_settings.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_settings.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_spin_slider.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_spin_slider.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_spin_slider.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_spin_slider.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_syntax_highlighter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_syntax_highlighter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_syntax_highlighter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_syntax_highlighter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_translation_parser_plugin.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_translation_parser_plugin.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_translation_parser_plugin.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_translation_parser_plugin.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_undo_redo_manager.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_undo_redo_manager.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_undo_redo_manager.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_undo_redo_manager.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/editor_vcs_interface.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_vcs_interface.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/editor_vcs_interface.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/editor_vcs_interface.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/encoded_object_as_id.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/encoded_object_as_id.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/encoded_object_as_id.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/encoded_object_as_id.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/engine.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/engine.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/engine.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/engine.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/engine_debugger.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/engine_debugger.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/engine_debugger.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/engine_debugger.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/engine_profiler.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/engine_profiler.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/engine_profiler.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/engine_profiler.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/environment.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/environment.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/environment.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/environment.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/expression.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/expression.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/expression.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/expression.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/fast_noise_lite.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/fast_noise_lite.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/fast_noise_lite.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/fast_noise_lite.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/file_access.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/file_access.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/file_access.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/file_access.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/file_dialog.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/file_dialog.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/file_dialog.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/file_dialog.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/file_system_dock.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/file_system_dock.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/file_system_dock.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/file_system_dock.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/flow_container.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/flow_container.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/flow_container.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/flow_container.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/fog_material.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/fog_material.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/fog_material.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/fog_material.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/fog_volume.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/fog_volume.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/fog_volume.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/fog_volume.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/font.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/font.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/font.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/font.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/font_file.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/font_file.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/font_file.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/font_file.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/font_variation.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/font_variation.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/font_variation.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/font_variation.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/framebuffer_cache_rd.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/framebuffer_cache_rd.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/framebuffer_cache_rd.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/framebuffer_cache_rd.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gd_extension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gd_extension.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gd_extension.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gd_extension.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gd_extension_manager.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gd_extension_manager.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gd_extension_manager.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gd_extension_manager.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gd_script.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gd_script.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gd_script.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gd_script.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gd_script_editor_translation_parser_plugin.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gd_script_editor_translation_parser_plugin.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gd_script_editor_translation_parser_plugin.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gd_script_editor_translation_parser_plugin.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gd_script_native_class.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gd_script_native_class.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gd_script_native_class.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gd_script_native_class.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_accessor.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_accessor.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_accessor.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_accessor.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_animation.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_animation.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_animation.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_animation.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_buffer_view.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_buffer_view.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_buffer_view.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_buffer_view.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_camera.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_camera.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_camera.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_camera.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_document.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_document.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_document.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_document.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_document_extension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_document_extension.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_document_extension.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_document_extension.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_document_extension_convert_importer_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_document_extension_convert_importer_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_document_extension_convert_importer_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_document_extension_convert_importer_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_document_extension_physics.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_document_extension_physics.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_document_extension_physics.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_document_extension_physics.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_document_extension_texture_web_p.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_document_extension_texture_web_p.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_document_extension_texture_web_p.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_document_extension_texture_web_p.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_light.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_light.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_light.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_light.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_node.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_node.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_node.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_node.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_physics_body.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_physics_body.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_physics_body.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_physics_body.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_physics_shape.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_physics_shape.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_physics_shape.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_physics_shape.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_skeleton.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_skeleton.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_skeleton.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_skeleton.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_skin.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_skin.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_skin.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_skin.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_spec_gloss.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_spec_gloss.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_spec_gloss.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_spec_gloss.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_state.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_state.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_state.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_state.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_texture.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_texture.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_texture.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_texture.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_texture_sampler.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_texture_sampler.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gltf_texture_sampler.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gltf_texture_sampler.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles_attractor3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles_attractor3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles_attractor3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles_attractor3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles_attractor_box3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles_attractor_box3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles_attractor_box3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles_attractor_box3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles_attractor_sphere3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles_attractor_sphere3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles_attractor_sphere3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles_attractor_sphere3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles_attractor_vector_field3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles_attractor_vector_field3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles_attractor_vector_field3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles_attractor_vector_field3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles_collision3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles_collision3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles_collision3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles_collision3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles_collision_box3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles_collision_box3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles_collision_box3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles_collision_box3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles_collision_height_field3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles_collision_height_field3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles_collision_height_field3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles_collision_height_field3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles_collision_sdf3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles_collision_sdf3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles_collision_sdf3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles_collision_sdf3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles_collision_sphere3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles_collision_sphere3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gpu_particles_collision_sphere3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gpu_particles_collision_sphere3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/generic6_dof_joint3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/generic6_dof_joint3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/generic6_dof_joint3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/generic6_dof_joint3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/geometry2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/geometry2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/geometry2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/geometry2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/geometry3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/geometry3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/geometry3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/geometry3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/geometry_instance3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/geometry_instance3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/geometry_instance3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/geometry_instance3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/godot_physics_server2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/godot_physics_server2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/godot_physics_server2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/godot_physics_server2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/godot_physics_server3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/godot_physics_server3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/godot_physics_server3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/godot_physics_server3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gradient.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gradient.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gradient.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gradient.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gradient_texture1_d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gradient_texture1_d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gradient_texture1_d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gradient_texture1_d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/gradient_texture2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gradient_texture2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/gradient_texture2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/gradient_texture2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/graph_edit.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/graph_edit.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/graph_edit.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/graph_edit.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/graph_node.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/graph_node.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/graph_node.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/graph_node.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/grid_container.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/grid_container.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/grid_container.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/grid_container.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/grid_map.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/grid_map.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/grid_map.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/grid_map.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/groove_joint2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/groove_joint2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/groove_joint2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/groove_joint2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/h_box_container.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/h_box_container.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/h_box_container.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/h_box_container.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/h_flow_container.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/h_flow_container.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/h_flow_container.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/h_flow_container.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/hmac_context.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/hmac_context.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/hmac_context.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/hmac_context.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/h_scroll_bar.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/h_scroll_bar.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/h_scroll_bar.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/h_scroll_bar.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/h_separator.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/h_separator.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/h_separator.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/h_separator.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/h_slider.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/h_slider.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/h_slider.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/h_slider.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/h_split_container.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/h_split_container.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/h_split_container.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/h_split_container.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/http_client.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/http_client.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/http_client.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/http_client.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/http_request.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/http_request.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/http_request.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/http_request.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/hashing_context.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/hashing_context.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/hashing_context.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/hashing_context.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/height_map_shape3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/height_map_shape3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/height_map_shape3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/height_map_shape3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/hinge_joint3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/hinge_joint3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/hinge_joint3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/hinge_joint3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/ip.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/ip.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/ip.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/ip.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/ip_unix.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/ip_unix.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/ip_unix.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/ip_unix.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/image.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/image.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/image.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/image.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/image_format_loader.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/image_format_loader.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/image_format_loader.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/image_format_loader.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/image_format_loader_extension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/image_format_loader_extension.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/image_format_loader_extension.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/image_format_loader_extension.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/image_texture.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/image_texture.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/image_texture.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/image_texture.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/image_texture3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/image_texture3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/image_texture3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/image_texture3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/image_texture_layered.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/image_texture_layered.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/image_texture_layered.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/image_texture_layered.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/immediate_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/immediate_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/immediate_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/immediate_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/importer_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/importer_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/importer_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/importer_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/importer_mesh_instance3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/importer_mesh_instance3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/importer_mesh_instance3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/importer_mesh_instance3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/input.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/input.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/input_event.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/input_event.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_action.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_action.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_action.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_action.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_from_window.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_from_window.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_from_window.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_from_window.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_gesture.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_gesture.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_gesture.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_gesture.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_joypad_button.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_joypad_button.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_joypad_button.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_joypad_button.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_joypad_motion.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_joypad_motion.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_joypad_motion.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_joypad_motion.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_key.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_key.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_key.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_key.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_midi.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_midi.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_midi.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_midi.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_magnify_gesture.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_magnify_gesture.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_magnify_gesture.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_magnify_gesture.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_mouse.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_mouse.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_mouse.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_mouse.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_mouse_button.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_mouse_button.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_mouse_button.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_mouse_button.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_mouse_motion.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_mouse_motion.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_mouse_motion.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_mouse_motion.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_pan_gesture.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_pan_gesture.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_pan_gesture.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_pan_gesture.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_screen_drag.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_screen_drag.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_screen_drag.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_screen_drag.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_screen_touch.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_screen_touch.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_screen_touch.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_screen_touch.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_shortcut.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_shortcut.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_shortcut.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_shortcut.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_with_modifiers.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_with_modifiers.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_event_with_modifiers.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/input_event_with_modifiers.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/input_map.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_map.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/input_map.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/input_map.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/instance_placeholder.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/instance_placeholder.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/instance_placeholder.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/instance_placeholder.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/interval_tweener.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/interval_tweener.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/interval_tweener.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/interval_tweener.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/item_list.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/item_list.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/item_list.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/item_list.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/jni_singleton.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/jni_singleton.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/jni_singleton.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/jni_singleton.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/json.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/json.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/json.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/json.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/jsonrpc.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/jsonrpc.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/jsonrpc.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/jsonrpc.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/java_class.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/java_class.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/java_class.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/java_class.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/java_class_wrapper.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/java_class_wrapper.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/java_class_wrapper.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/java_class_wrapper.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/java_script_bridge.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/java_script_bridge.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/java_script_bridge.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/java_script_bridge.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/java_script_object.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/java_script_object.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/java_script_object.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/java_script_object.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/joint2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/joint2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/joint2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/joint2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/joint3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/joint3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/joint3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/joint3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/kinematic_collision2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/kinematic_collision2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/kinematic_collision2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/kinematic_collision2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/kinematic_collision3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/kinematic_collision3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/kinematic_collision3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/kinematic_collision3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/label.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/label.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/label.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/label.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/label3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/label3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/label3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/label3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/label_settings.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/label_settings.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/label_settings.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/label_settings.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/light2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/light2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/light2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/light2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/light3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/light3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/light3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/light3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/light_occluder2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/light_occluder2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/light_occluder2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/light_occluder2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/lightmap_gi.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/lightmap_gi.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/lightmap_gi.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/lightmap_gi.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/lightmap_gi_data.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/lightmap_gi_data.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/lightmap_gi_data.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/lightmap_gi_data.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/lightmap_probe.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/lightmap_probe.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/lightmap_probe.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/lightmap_probe.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/lightmapper.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/lightmapper.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/lightmapper.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/lightmapper.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/lightmapper_rd.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/lightmapper_rd.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/lightmapper_rd.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/lightmapper_rd.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/line2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/line2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/line2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/line2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/line_edit.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/line_edit.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/line_edit.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/line_edit.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/link_button.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/link_button.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/link_button.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/link_button.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/main_loop.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/main_loop.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/main_loop.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/main_loop.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/margin_container.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/margin_container.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/margin_container.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/margin_container.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/marker2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/marker2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/marker2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/marker2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/marker3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/marker3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/marker3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/marker3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/marshalls.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/marshalls.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/marshalls.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/marshalls.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/material.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/material.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/material.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/material.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/menu_bar.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/menu_bar.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/menu_bar.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/menu_bar.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/menu_button.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/menu_button.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/menu_button.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/menu_button.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/mesh_convex_decomposition_settings.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/mesh_convex_decomposition_settings.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/mesh_convex_decomposition_settings.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/mesh_convex_decomposition_settings.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/mesh_data_tool.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/mesh_data_tool.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/mesh_data_tool.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/mesh_data_tool.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/mesh_instance2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/mesh_instance2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/mesh_instance2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/mesh_instance2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/mesh_instance3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/mesh_instance3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/mesh_instance3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/mesh_instance3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/mesh_library.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/mesh_library.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/mesh_library.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/mesh_library.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/mesh_texture.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/mesh_texture.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/mesh_texture.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/mesh_texture.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/method_tweener.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/method_tweener.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/method_tweener.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/method_tweener.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/missing_node.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/missing_node.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/missing_node.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/missing_node.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/missing_resource.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/missing_resource.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/missing_resource.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/missing_resource.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/mobile_vr_interface.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/mobile_vr_interface.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/mobile_vr_interface.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/mobile_vr_interface.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/movie_writer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/movie_writer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/movie_writer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/movie_writer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/movie_writer_mjpeg.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/movie_writer_mjpeg.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/movie_writer_mjpeg.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/movie_writer_mjpeg.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/movie_writer_pngwav.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/movie_writer_pngwav.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/movie_writer_pngwav.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/movie_writer_pngwav.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/multi_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/multi_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/multi_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/multi_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/multi_mesh_instance2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/multi_mesh_instance2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/multi_mesh_instance2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/multi_mesh_instance2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/multi_mesh_instance3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/multi_mesh_instance3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/multi_mesh_instance3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/multi_mesh_instance3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/multiplayer_api.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/multiplayer_api.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/multiplayer_api.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/multiplayer_api.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/multiplayer_api_extension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/multiplayer_api_extension.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/multiplayer_api_extension.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/multiplayer_api_extension.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/multiplayer_peer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/multiplayer_peer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/multiplayer_peer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/multiplayer_peer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/multiplayer_peer_extension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/multiplayer_peer_extension.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/multiplayer_peer_extension.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/multiplayer_peer_extension.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/multiplayer_spawner.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/multiplayer_spawner.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/multiplayer_spawner.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/multiplayer_spawner.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/multiplayer_synchronizer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/multiplayer_synchronizer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/multiplayer_synchronizer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/multiplayer_synchronizer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/mutex.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/mutex.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/mutex.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/mutex.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_agent2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_agent2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_agent2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_agent2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_agent3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_agent3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_agent3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_agent3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_link2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_link2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_link2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_link2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_link3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_link3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_link3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_link3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_mesh_generator.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_mesh_generator.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_mesh_generator.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_mesh_generator.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_mesh_source_geometry_data3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_mesh_source_geometry_data3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_mesh_source_geometry_data3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_mesh_source_geometry_data3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_obstacle2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_obstacle2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_obstacle2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_obstacle2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_obstacle3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_obstacle3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_obstacle3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_obstacle3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_path_query_parameters2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_path_query_parameters2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_path_query_parameters2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_path_query_parameters2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_path_query_parameters3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_path_query_parameters3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_path_query_parameters3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_path_query_parameters3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_path_query_result2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_path_query_result2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_path_query_result2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_path_query_result2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_path_query_result3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_path_query_result3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_path_query_result3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_path_query_result3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_polygon.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_polygon.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_polygon.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_polygon.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_region2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_region2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_region2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_region2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_region3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_region3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_region3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_region3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_server2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_server2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_server2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_server2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_server3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_server3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/navigation_server3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/navigation_server3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/nine_patch_rect.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/nine_patch_rect.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/nine_patch_rect.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/nine_patch_rect.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/node.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/node.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/node.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/node.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/node2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/node2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/node2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/node2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/node3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/node3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/node3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/node3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/node3d_gizmo.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/node3d_gizmo.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/node3d_gizmo.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/node3d_gizmo.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/noise.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/noise.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/noise.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/noise.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/noise_texture2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/noise_texture2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/noise_texture2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/noise_texture2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/noise_texture3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/noise_texture3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/noise_texture3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/noise_texture3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/orm_material3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/orm_material3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/orm_material3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/orm_material3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/os.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/os.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/os.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/os.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/object.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/object.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/object.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/object.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/occluder3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/occluder3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/occluder3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/occluder3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/occluder_instance3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/occluder_instance3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/occluder_instance3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/occluder_instance3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/occluder_polygon2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/occluder_polygon2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/occluder_polygon2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/occluder_polygon2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/offline_multiplayer_peer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/offline_multiplayer_peer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/offline_multiplayer_peer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/offline_multiplayer_peer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/ogg_packet_sequence.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/ogg_packet_sequence.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/ogg_packet_sequence.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/ogg_packet_sequence.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/ogg_packet_sequence_playback.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/ogg_packet_sequence_playback.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/ogg_packet_sequence_playback.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/ogg_packet_sequence_playback.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/omni_light3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/omni_light3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/omni_light3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/omni_light3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/open_xr_action.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/open_xr_action.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/open_xr_action.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/open_xr_action.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/open_xr_action_map.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/open_xr_action_map.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/open_xr_action_map.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/open_xr_action_map.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/open_xr_action_set.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/open_xr_action_set.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/open_xr_action_set.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/open_xr_action_set.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/open_xr_hand.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/open_xr_hand.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/open_xr_hand.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/open_xr_hand.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/open_xrip_binding.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/open_xrip_binding.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/open_xrip_binding.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/open_xrip_binding.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/open_xr_interaction_profile.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/open_xr_interaction_profile.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/open_xr_interaction_profile.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/open_xr_interaction_profile.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/open_xr_interaction_profile_metadata.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/open_xr_interaction_profile_metadata.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/open_xr_interaction_profile_metadata.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/open_xr_interaction_profile_metadata.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/open_xr_interface.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/open_xr_interface.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/open_xr_interface.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/open_xr_interface.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/optimized_translation.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/optimized_translation.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/optimized_translation.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/optimized_translation.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/option_button.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/option_button.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/option_button.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/option_button.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/pck_packer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/pck_packer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/pck_packer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/pck_packer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/packed_data_container.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/packed_data_container.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/packed_data_container.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/packed_data_container.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/packed_data_container_ref.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/packed_data_container_ref.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/packed_data_container_ref.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/packed_data_container_ref.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/packed_scene.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/packed_scene.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/packed_scene.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/packed_scene.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/packet_peer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/packet_peer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/packet_peer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/packet_peer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/packet_peer_dtls.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/packet_peer_dtls.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/packet_peer_dtls.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/packet_peer_dtls.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/packet_peer_extension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/packet_peer_extension.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/packet_peer_extension.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/packet_peer_extension.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/packet_peer_stream.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/packet_peer_stream.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/packet_peer_stream.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/packet_peer_stream.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/packet_peer_udp.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/packet_peer_udp.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/packet_peer_udp.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/packet_peer_udp.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/panel.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/panel.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/panel.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/panel.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/panel_container.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/panel_container.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/panel_container.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/panel_container.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/panorama_sky_material.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/panorama_sky_material.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/panorama_sky_material.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/panorama_sky_material.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/parallax_background.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/parallax_background.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/parallax_background.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/parallax_background.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/parallax_layer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/parallax_layer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/parallax_layer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/parallax_layer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/particle_process_material.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/particle_process_material.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/particle_process_material.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/particle_process_material.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/path2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/path2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/path2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/path2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/path3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/path3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/path3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/path3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/path_follow2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/path_follow2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/path_follow2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/path_follow2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/path_follow3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/path_follow3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/path_follow3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/path_follow3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/performance.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/performance.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/performance.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/performance.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physical_bone2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physical_bone2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physical_bone2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physical_bone2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physical_bone3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physical_bone3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physical_bone3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physical_bone3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physical_sky_material.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physical_sky_material.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physical_sky_material.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physical_sky_material.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_body2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_body2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_body2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_body2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_body3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_body3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_body3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_body3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_direct_body_state2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_direct_body_state2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_direct_body_state2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_direct_body_state2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_direct_body_state2d_extension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_direct_body_state2d_extension.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_direct_body_state2d_extension.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_direct_body_state2d_extension.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_direct_body_state3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_direct_body_state3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_direct_body_state3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_direct_body_state3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_direct_body_state3d_extension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_direct_body_state3d_extension.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_direct_body_state3d_extension.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_direct_body_state3d_extension.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_direct_space_state2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_direct_space_state2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_direct_space_state2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_direct_space_state2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_direct_space_state2d_extension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_direct_space_state2d_extension.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_direct_space_state2d_extension.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_direct_space_state2d_extension.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_direct_space_state3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_direct_space_state3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_direct_space_state3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_direct_space_state3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_direct_space_state3d_extension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_direct_space_state3d_extension.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_direct_space_state3d_extension.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_direct_space_state3d_extension.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_material.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_material.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_material.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_material.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_point_query_parameters2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_point_query_parameters2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_point_query_parameters2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_point_query_parameters2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_point_query_parameters3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_point_query_parameters3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_point_query_parameters3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_point_query_parameters3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_ray_query_parameters2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_ray_query_parameters2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_ray_query_parameters2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_ray_query_parameters2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_ray_query_parameters3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_ray_query_parameters3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_ray_query_parameters3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_ray_query_parameters3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_server2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_server2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_server2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_server2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_server2d_extension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_server2d_extension.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_server2d_extension.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_server2d_extension.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_server2d_manager.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_server2d_manager.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_server2d_manager.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_server2d_manager.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_server3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_server3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_server3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_server3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_server3d_extension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_server3d_extension.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_server3d_extension.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_server3d_extension.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_server3d_manager.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_server3d_manager.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_server3d_manager.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_server3d_manager.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_server3d_rendering_server_handler.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_server3d_rendering_server_handler.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_server3d_rendering_server_handler.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_server3d_rendering_server_handler.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_shape_query_parameters2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_shape_query_parameters2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_shape_query_parameters2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_shape_query_parameters2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_shape_query_parameters3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_shape_query_parameters3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_shape_query_parameters3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_shape_query_parameters3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_test_motion_parameters2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_test_motion_parameters2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_test_motion_parameters2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_test_motion_parameters2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_test_motion_parameters3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_test_motion_parameters3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_test_motion_parameters3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_test_motion_parameters3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_test_motion_result2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_test_motion_result2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_test_motion_result2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_test_motion_result2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/physics_test_motion_result3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_test_motion_result3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/physics_test_motion_result3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/physics_test_motion_result3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/pin_joint2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/pin_joint2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/pin_joint2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/pin_joint2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/pin_joint3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/pin_joint3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/pin_joint3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/pin_joint3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/placeholder_cubemap.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/placeholder_cubemap.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/placeholder_cubemap.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/placeholder_cubemap.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/placeholder_cubemap_array.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/placeholder_cubemap_array.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/placeholder_cubemap_array.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/placeholder_cubemap_array.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/placeholder_material.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/placeholder_material.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/placeholder_material.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/placeholder_material.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/placeholder_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/placeholder_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/placeholder_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/placeholder_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/placeholder_texture2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/placeholder_texture2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/placeholder_texture2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/placeholder_texture2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/placeholder_texture2d_array.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/placeholder_texture2d_array.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/placeholder_texture2d_array.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/placeholder_texture2d_array.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/placeholder_texture3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/placeholder_texture3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/placeholder_texture3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/placeholder_texture3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/placeholder_texture_layered.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/placeholder_texture_layered.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/placeholder_texture_layered.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/placeholder_texture_layered.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/plane_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/plane_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/plane_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/plane_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/point_light2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/point_light2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/point_light2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/point_light2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/point_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/point_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/point_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/point_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/polygon2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/polygon2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/polygon2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/polygon2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/polygon_occluder3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/polygon_occluder3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/polygon_occluder3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/polygon_occluder3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/polygon_path_finder.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/polygon_path_finder.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/polygon_path_finder.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/polygon_path_finder.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/popup.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/popup.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/popup.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/popup.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/popup_menu.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/popup_menu.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/popup_menu.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/popup_menu.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/popup_panel.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/popup_panel.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/popup_panel.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/popup_panel.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/portable_compressed_texture2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/portable_compressed_texture2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/portable_compressed_texture2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/portable_compressed_texture2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/primitive_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/primitive_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/primitive_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/primitive_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/prism_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/prism_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/prism_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/prism_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/procedural_sky_material.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/procedural_sky_material.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/procedural_sky_material.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/procedural_sky_material.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/progress_bar.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/progress_bar.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/progress_bar.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/progress_bar.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/project_settings.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/project_settings.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/project_settings.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/project_settings.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/property_tweener.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/property_tweener.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/property_tweener.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/property_tweener.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/quad_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/quad_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/quad_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/quad_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/quad_occluder3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/quad_occluder3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/quad_occluder3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/quad_occluder3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rd_attachment_format.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_attachment_format.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_attachment_format.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rd_attachment_format.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rd_framebuffer_pass.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_framebuffer_pass.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_framebuffer_pass.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rd_framebuffer_pass.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rd_pipeline_color_blend_state.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_pipeline_color_blend_state.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_pipeline_color_blend_state.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rd_pipeline_color_blend_state.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rd_pipeline_color_blend_state_attachment.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_pipeline_color_blend_state_attachment.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_pipeline_color_blend_state_attachment.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rd_pipeline_color_blend_state_attachment.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rd_pipeline_depth_stencil_state.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_pipeline_depth_stencil_state.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_pipeline_depth_stencil_state.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rd_pipeline_depth_stencil_state.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rd_pipeline_multisample_state.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_pipeline_multisample_state.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_pipeline_multisample_state.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rd_pipeline_multisample_state.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rd_pipeline_rasterization_state.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_pipeline_rasterization_state.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_pipeline_rasterization_state.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rd_pipeline_rasterization_state.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rd_pipeline_specialization_constant.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_pipeline_specialization_constant.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_pipeline_specialization_constant.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rd_pipeline_specialization_constant.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rd_sampler_state.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_sampler_state.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_sampler_state.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rd_sampler_state.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rd_shader_file.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_shader_file.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_shader_file.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rd_shader_file.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rd_shader_spirv.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_shader_spirv.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_shader_spirv.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rd_shader_spirv.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rd_shader_source.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_shader_source.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_shader_source.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rd_shader_source.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rd_texture_format.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_texture_format.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_texture_format.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rd_texture_format.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rd_texture_view.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_texture_view.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_texture_view.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rd_texture_view.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rd_uniform.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_uniform.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_uniform.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rd_uniform.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rd_vertex_attribute.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_vertex_attribute.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rd_vertex_attribute.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rd_vertex_attribute.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/random_number_generator.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/random_number_generator.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/random_number_generator.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/random_number_generator.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/range.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/range.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/range.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/range.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/ray_cast2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/ray_cast2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/ray_cast2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/ray_cast2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/ray_cast3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/ray_cast3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/ray_cast3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/ray_cast3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rectangle_shape2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rectangle_shape2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rectangle_shape2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rectangle_shape2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/ref_counted.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/ref_counted.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/ref_counted.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/ref_counted.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/reference_rect.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/reference_rect.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/reference_rect.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/reference_rect.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/reflection_probe.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/reflection_probe.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/reflection_probe.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/reflection_probe.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/reg_ex.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/reg_ex.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/reg_ex.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/reg_ex.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/reg_ex_match.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/reg_ex_match.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/reg_ex_match.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/reg_ex_match.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/remote_transform2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/remote_transform2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/remote_transform2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/remote_transform2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/remote_transform3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/remote_transform3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/remote_transform3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/remote_transform3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rendering_device.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rendering_device.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rendering_device.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rendering_device.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rendering_server.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rendering_server.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rendering_server.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rendering_server.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/resource.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/resource.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/resource.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/resource.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/resource_format_importer_saver.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/resource_format_importer_saver.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/resource_format_importer_saver.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/resource_format_importer_saver.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/resource_format_loader.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/resource_format_loader.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/resource_format_loader.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/resource_format_loader.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/resource_format_saver.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/resource_format_saver.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/resource_format_saver.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/resource_format_saver.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/resource_importer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/resource_importer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/resource_importer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/resource_importer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/resource_loader.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/resource_loader.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/resource_loader.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/resource_loader.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/resource_preloader.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/resource_preloader.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/resource_preloader.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/resource_preloader.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/resource_saver.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/resource_saver.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/resource_saver.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/resource_saver.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/resource_uid.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/resource_uid.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/resource_uid.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/resource_uid.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/ribbon_trail_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/ribbon_trail_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/ribbon_trail_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/ribbon_trail_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rich_text_effect.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rich_text_effect.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rich_text_effect.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rich_text_effect.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rich_text_label.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rich_text_label.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rich_text_label.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rich_text_label.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rigid_body2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rigid_body2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rigid_body2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rigid_body2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/rigid_body3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rigid_body3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/rigid_body3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/rigid_body3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/root_motion_view.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/root_motion_view.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/root_motion_view.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/root_motion_view.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/scene_multiplayer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/scene_multiplayer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/scene_multiplayer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/scene_multiplayer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/scene_replication_config.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/scene_replication_config.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/scene_replication_config.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/scene_replication_config.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/scene_state.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/scene_state.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/scene_state.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/scene_state.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/scene_tree.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/scene_tree.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/scene_tree.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/scene_tree.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/scene_tree_timer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/scene_tree_timer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/scene_tree_timer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/scene_tree_timer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/script.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/script.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/script.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/script.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/script_create_dialog.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/script_create_dialog.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/script_create_dialog.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/script_create_dialog.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/script_editor.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/script_editor.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/script_editor.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/script_editor.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/script_editor_base.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/script_editor_base.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/script_editor_base.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/script_editor_base.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/script_extension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/script_extension.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/script_extension.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/script_extension.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/script_language.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/script_language.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/script_language.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/script_language.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/script_language_extension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/script_language_extension.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/script_language_extension.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/script_language_extension.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/scroll_bar.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/scroll_bar.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/scroll_bar.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/scroll_bar.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/scroll_container.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/scroll_container.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/scroll_container.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/scroll_container.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/segment_shape2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/segment_shape2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/segment_shape2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/segment_shape2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/semaphore.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/semaphore.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/semaphore.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/semaphore.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/separation_ray_shape2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/separation_ray_shape2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/separation_ray_shape2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/separation_ray_shape2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/separation_ray_shape3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/separation_ray_shape3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/separation_ray_shape3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/separation_ray_shape3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/separator.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/separator.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/separator.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/separator.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/shader.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/shader.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/shader.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/shader.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/shader_globals_override.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/shader_globals_override.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/shader_globals_override.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/shader_globals_override.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/shader_include.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/shader_include.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/shader_include.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/shader_include.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/shader_material.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/shader_material.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/shader_material.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/shader_material.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/shape2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/shape2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/shape2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/shape2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/shape3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/shape3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/shape3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/shape3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/shape_cast2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/shape_cast2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/shape_cast2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/shape_cast2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/shape_cast3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/shape_cast3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/shape_cast3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/shape_cast3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/shortcut.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/shortcut.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/shortcut.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/shortcut.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_ik3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_ik3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_ik3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_ik3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_modification2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_modification2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_modification2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_modification2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_modification2dccdik.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_modification2dccdik.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_modification2dccdik.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_modification2dccdik.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_modification2dfabrik.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_modification2dfabrik.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_modification2dfabrik.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_modification2dfabrik.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_modification2d_jiggle.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_modification2d_jiggle.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_modification2d_jiggle.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_modification2d_jiggle.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_modification2d_look_at.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_modification2d_look_at.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_modification2d_look_at.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_modification2d_look_at.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_modification2d_physical_bones.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_modification2d_physical_bones.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_modification2d_physical_bones.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_modification2d_physical_bones.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_modification2d_stack_holder.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_modification2d_stack_holder.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_modification2d_stack_holder.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_modification2d_stack_holder.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_modification2d_two_bone_ik.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_modification2d_two_bone_ik.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_modification2d_two_bone_ik.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_modification2d_two_bone_ik.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_modification_stack2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_modification_stack2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_modification_stack2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_modification_stack2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_profile.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_profile.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_profile.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_profile.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_profile_humanoid.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_profile_humanoid.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skeleton_profile_humanoid.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/skeleton_profile_humanoid.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/skin.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skin.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skin.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/skin.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/skin_reference.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skin_reference.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/skin_reference.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/skin_reference.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/sky.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/sky.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/sky.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/sky.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/slider.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/slider.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/slider.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/slider.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/slider_joint3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/slider_joint3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/slider_joint3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/slider_joint3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/soft_body3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/soft_body3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/soft_body3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/soft_body3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/sphere_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/sphere_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/sphere_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/sphere_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/sphere_occluder3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/sphere_occluder3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/sphere_occluder3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/sphere_occluder3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/sphere_shape3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/sphere_shape3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/sphere_shape3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/sphere_shape3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/spin_box.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/spin_box.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/spin_box.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/spin_box.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/split_container.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/split_container.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/split_container.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/split_container.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/spot_light3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/spot_light3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/spot_light3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/spot_light3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/spring_arm3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/spring_arm3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/spring_arm3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/spring_arm3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/sprite2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/sprite2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/sprite2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/sprite2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/sprite3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/sprite3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/sprite3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/sprite3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/sprite_base3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/sprite_base3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/sprite_base3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/sprite_base3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/sprite_frames.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/sprite_frames.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/sprite_frames.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/sprite_frames.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/standard_material3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/standard_material3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/standard_material3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/standard_material3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/static_body2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/static_body2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/static_body2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/static_body2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/static_body3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/static_body3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/static_body3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/static_body3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/stream_peer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/stream_peer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/stream_peer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/stream_peer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/stream_peer_buffer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/stream_peer_buffer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/stream_peer_buffer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/stream_peer_buffer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/stream_peer_extension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/stream_peer_extension.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/stream_peer_extension.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/stream_peer_extension.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/stream_peer_gzip.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/stream_peer_gzip.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/stream_peer_gzip.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/stream_peer_gzip.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/stream_peer_tcp.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/stream_peer_tcp.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/stream_peer_tcp.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/stream_peer_tcp.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/stream_peer_tls.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/stream_peer_tls.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/stream_peer_tls.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/stream_peer_tls.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/style_box.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/style_box.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/style_box.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/style_box.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/style_box_empty.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/style_box_empty.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/style_box_empty.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/style_box_empty.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/style_box_flat.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/style_box_flat.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/style_box_flat.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/style_box_flat.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/style_box_line.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/style_box_line.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/style_box_line.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/style_box_line.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/style_box_texture.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/style_box_texture.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/style_box_texture.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/style_box_texture.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/sub_viewport.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/sub_viewport.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/sub_viewport.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/sub_viewport.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/sub_viewport_container.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/sub_viewport_container.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/sub_viewport_container.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/sub_viewport_container.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/surface_tool.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/surface_tool.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/surface_tool.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/surface_tool.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/syntax_highlighter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/syntax_highlighter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/syntax_highlighter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/syntax_highlighter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/system_font.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/system_font.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/system_font.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/system_font.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/tcp_server.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tcp_server.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tcp_server.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/tcp_server.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/tls_options.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tls_options.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tls_options.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/tls_options.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/tab_bar.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tab_bar.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tab_bar.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/tab_bar.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/tab_container.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tab_container.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tab_container.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/tab_container.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/text_edit.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/text_edit.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/text_edit.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/text_edit.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/text_line.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/text_line.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/text_line.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/text_line.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/text_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/text_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/text_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/text_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/text_paragraph.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/text_paragraph.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/text_paragraph.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/text_paragraph.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/text_server.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/text_server.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/text_server.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/text_server.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/text_server_advanced.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/text_server_advanced.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/text_server_advanced.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/text_server_advanced.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/text_server_dummy.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/text_server_dummy.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/text_server_dummy.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/text_server_dummy.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/text_server_extension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/text_server_extension.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/text_server_extension.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/text_server_extension.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/text_server_manager.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/text_server_manager.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/text_server_manager.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/text_server_manager.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/texture.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/texture.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/texture.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/texture.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/texture2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/texture2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/texture2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/texture2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/texture2d_array.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/texture2d_array.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/texture2d_array.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/texture2d_array.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/texture3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/texture3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/texture3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/texture3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/texture_button.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/texture_button.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/texture_button.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/texture_button.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/texture_layered.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/texture_layered.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/texture_layered.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/texture_layered.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/texture_progress_bar.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/texture_progress_bar.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/texture_progress_bar.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/texture_progress_bar.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/texture_rect.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/texture_rect.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/texture_rect.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/texture_rect.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/theme.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/theme.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/theme.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/theme.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/theme_db.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/theme_db.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/theme_db.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/theme_db.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/thread.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/thread.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/thread.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/thread.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/tile_data.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tile_data.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tile_data.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/tile_data.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/tile_map.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tile_map.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tile_map.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/tile_map.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/tile_map_pattern.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tile_map_pattern.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tile_map_pattern.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/tile_map_pattern.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/tile_set.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tile_set.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tile_set.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/tile_set.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/tile_set_atlas_source.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tile_set_atlas_source.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tile_set_atlas_source.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/tile_set_atlas_source.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/tile_set_scenes_collection_source.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tile_set_scenes_collection_source.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tile_set_scenes_collection_source.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/tile_set_scenes_collection_source.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/tile_set_source.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tile_set_source.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tile_set_source.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/tile_set_source.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/time.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/time.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/time.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/time.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/timer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/timer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/timer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/timer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/torus_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/torus_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/torus_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/torus_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/touch_screen_button.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/touch_screen_button.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/touch_screen_button.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/touch_screen_button.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/translation.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/translation.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/translation.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/translation.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/translation_server.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/translation_server.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/translation_server.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/translation_server.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/tree.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tree.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tree.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/tree.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/tree_item.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tree_item.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tree_item.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/tree_item.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/triangle_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/triangle_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/triangle_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/triangle_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/tube_trail_mesh.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tube_trail_mesh.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tube_trail_mesh.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/tube_trail_mesh.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/tween.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tween.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tween.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/tween.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/tweener.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tweener.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/tweener.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/tweener.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/udp_server.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/udp_server.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/udp_server.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/udp_server.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/upnp.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/upnp.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/upnp.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/upnp.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/upnp_device.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/upnp_device.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/upnp_device.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/upnp_device.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/undo_redo.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/undo_redo.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/undo_redo.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/undo_redo.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/uniform_set_cache_rd.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/uniform_set_cache_rd.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/uniform_set_cache_rd.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/uniform_set_cache_rd.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/v_box_container.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/v_box_container.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/v_box_container.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/v_box_container.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/v_flow_container.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/v_flow_container.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/v_flow_container.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/v_flow_container.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/v_scroll_bar.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/v_scroll_bar.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/v_scroll_bar.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/v_scroll_bar.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/v_separator.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/v_separator.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/v_separator.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/v_separator.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/v_slider.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/v_slider.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/v_slider.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/v_slider.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/v_split_container.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/v_split_container.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/v_split_container.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/v_split_container.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/vehicle_body3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/vehicle_body3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/vehicle_body3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/vehicle_body3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/vehicle_wheel3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/vehicle_wheel3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/vehicle_wheel3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/vehicle_wheel3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/video_stream.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/video_stream.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/video_stream.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/video_stream.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/video_stream_playback.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/video_stream_playback.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/video_stream_playback.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/video_stream_playback.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/video_stream_player.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/video_stream_player.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/video_stream_player.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/video_stream_player.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/video_stream_theora.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/video_stream_theora.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/video_stream_theora.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/video_stream_theora.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/viewport.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/viewport.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/viewport.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/viewport.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/viewport_texture.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/viewport_texture.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/viewport_texture.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/viewport_texture.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visible_on_screen_enabler2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visible_on_screen_enabler2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visible_on_screen_enabler2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visible_on_screen_enabler2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visible_on_screen_enabler3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visible_on_screen_enabler3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visible_on_screen_enabler3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visible_on_screen_enabler3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visible_on_screen_notifier2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visible_on_screen_notifier2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visible_on_screen_notifier2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visible_on_screen_notifier2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visible_on_screen_notifier3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visible_on_screen_notifier3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visible_on_screen_notifier3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visible_on_screen_notifier3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_instance3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_instance3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_instance3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_instance3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_billboard.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_billboard.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_billboard.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_billboard.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_boolean_constant.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_boolean_constant.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_boolean_constant.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_boolean_constant.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_boolean_parameter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_boolean_parameter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_boolean_parameter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_boolean_parameter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_clamp.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_clamp.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_clamp.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_clamp.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_color_constant.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_color_constant.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_color_constant.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_color_constant.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_color_func.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_color_func.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_color_func.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_color_func.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_color_op.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_color_op.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_color_op.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_color_op.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_color_parameter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_color_parameter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_color_parameter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_color_parameter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_comment.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_comment.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_comment.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_comment.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_compare.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_compare.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_compare.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_compare.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_constant.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_constant.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_constant.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_constant.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_cubemap.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_cubemap.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_cubemap.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_cubemap.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_cubemap_parameter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_cubemap_parameter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_cubemap_parameter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_cubemap_parameter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_curve_texture.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_curve_texture.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_curve_texture.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_curve_texture.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_curve_xyz_texture.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_curve_xyz_texture.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_curve_xyz_texture.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_curve_xyz_texture.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_custom.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_custom.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_custom.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_custom.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_derivative_func.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_derivative_func.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_derivative_func.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_derivative_func.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_determinant.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_determinant.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_determinant.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_determinant.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_distance_fade.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_distance_fade.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_distance_fade.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_distance_fade.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_dot_product.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_dot_product.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_dot_product.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_dot_product.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_expression.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_expression.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_expression.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_expression.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_face_forward.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_face_forward.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_face_forward.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_face_forward.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_float_constant.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_float_constant.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_float_constant.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_float_constant.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_float_func.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_float_func.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_float_func.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_float_func.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_float_op.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_float_op.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_float_op.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_float_op.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_float_parameter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_float_parameter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_float_parameter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_float_parameter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_fresnel.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_fresnel.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_fresnel.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_fresnel.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_global_expression.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_global_expression.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_global_expression.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_global_expression.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_group_base.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_group_base.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_group_base.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_group_base.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_if.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_if.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_if.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_if.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_input.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_input.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_input.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_input.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_int_constant.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_int_constant.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_int_constant.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_int_constant.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_int_func.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_int_func.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_int_func.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_int_func.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_int_op.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_int_op.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_int_op.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_int_op.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_int_parameter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_int_parameter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_int_parameter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_int_parameter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_is.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_is.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_is.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_is.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_linear_scene_depth.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_linear_scene_depth.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_linear_scene_depth.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_linear_scene_depth.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_mix.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_mix.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_mix.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_mix.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_multiply_add.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_multiply_add.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_multiply_add.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_multiply_add.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_outer_product.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_outer_product.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_outer_product.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_outer_product.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_output.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_output.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_output.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_output.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_parameter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_parameter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_parameter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_parameter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_parameter_ref.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_parameter_ref.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_parameter_ref.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_parameter_ref.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_accelerator.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_accelerator.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_accelerator.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_accelerator.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_box_emitter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_box_emitter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_box_emitter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_box_emitter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_cone_velocity.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_cone_velocity.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_cone_velocity.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_cone_velocity.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_emit.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_emit.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_emit.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_emit.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_emitter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_emitter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_emitter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_emitter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_mesh_emitter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_mesh_emitter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_mesh_emitter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_mesh_emitter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_multiply_by_axis_angle.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_multiply_by_axis_angle.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_multiply_by_axis_angle.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_multiply_by_axis_angle.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_output.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_output.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_output.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_output.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_randomness.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_randomness.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_randomness.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_randomness.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_ring_emitter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_ring_emitter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_ring_emitter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_ring_emitter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_sphere_emitter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_sphere_emitter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_particle_sphere_emitter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_particle_sphere_emitter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_proximity_fade.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_proximity_fade.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_proximity_fade.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_proximity_fade.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_random_range.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_random_range.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_random_range.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_random_range.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_remap.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_remap.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_remap.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_remap.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_resizable_base.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_resizable_base.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_resizable_base.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_resizable_base.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_sdf_raymarch.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_sdf_raymarch.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_sdf_raymarch.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_sdf_raymarch.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_sdf_to_screen_uv.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_sdf_to_screen_uv.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_sdf_to_screen_uv.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_sdf_to_screen_uv.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_sample3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_sample3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_sample3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_sample3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_screen_uv_to_sdf.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_screen_uv_to_sdf.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_screen_uv_to_sdf.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_screen_uv_to_sdf.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_smooth_step.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_smooth_step.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_smooth_step.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_smooth_step.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_step.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_step.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_step.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_step.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_switch.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_switch.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_switch.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_switch.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_texture.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_texture.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_texture.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_texture.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_texture2d_array.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_texture2d_array.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_texture2d_array.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_texture2d_array.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_texture2d_array_parameter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_texture2d_array_parameter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_texture2d_array_parameter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_texture2d_array_parameter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_texture2d_parameter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_texture2d_parameter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_texture2d_parameter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_texture2d_parameter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_texture3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_texture3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_texture3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_texture3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_texture3d_parameter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_texture3d_parameter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_texture3d_parameter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_texture3d_parameter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_texture_parameter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_texture_parameter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_texture_parameter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_texture_parameter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_texture_parameter_triplanar.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_texture_parameter_triplanar.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_texture_parameter_triplanar.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_texture_parameter_triplanar.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_texture_sdf.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_texture_sdf.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_texture_sdf.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_texture_sdf.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_texture_sdf_normal.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_texture_sdf_normal.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_texture_sdf_normal.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_texture_sdf_normal.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_transform_compose.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_transform_compose.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_transform_compose.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_transform_compose.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_transform_constant.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_transform_constant.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_transform_constant.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_transform_constant.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_transform_decompose.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_transform_decompose.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_transform_decompose.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_transform_decompose.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_transform_func.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_transform_func.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_transform_func.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_transform_func.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_transform_op.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_transform_op.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_transform_op.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_transform_op.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_transform_parameter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_transform_parameter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_transform_parameter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_transform_parameter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_transform_vec_mult.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_transform_vec_mult.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_transform_vec_mult.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_transform_vec_mult.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_u_int_constant.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_u_int_constant.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_u_int_constant.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_u_int_constant.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_u_int_func.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_u_int_func.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_u_int_func.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_u_int_func.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_u_int_op.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_u_int_op.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_u_int_op.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_u_int_op.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_u_int_parameter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_u_int_parameter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_u_int_parameter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_u_int_parameter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_uv_func.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_uv_func.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_uv_func.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_uv_func.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_uv_polar_coord.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_uv_polar_coord.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_uv_polar_coord.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_uv_polar_coord.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_varying.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_varying.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_varying.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_varying.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_varying_getter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_varying_getter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_varying_getter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_varying_getter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_varying_setter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_varying_setter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_varying_setter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_varying_setter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vec2_constant.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vec2_constant.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vec2_constant.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vec2_constant.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vec2_parameter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vec2_parameter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vec2_parameter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vec2_parameter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vec3_constant.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vec3_constant.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vec3_constant.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vec3_constant.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vec3_parameter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vec3_parameter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vec3_parameter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vec3_parameter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vec4_constant.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vec4_constant.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vec4_constant.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vec4_constant.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vec4_parameter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vec4_parameter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vec4_parameter.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vec4_parameter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vector_base.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vector_base.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vector_base.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vector_base.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vector_compose.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vector_compose.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vector_compose.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vector_compose.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vector_decompose.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vector_decompose.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vector_decompose.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vector_decompose.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vector_distance.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vector_distance.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vector_distance.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vector_distance.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vector_func.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vector_func.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vector_func.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vector_func.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vector_len.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vector_len.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vector_len.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vector_len.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vector_op.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vector_op.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vector_op.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vector_op.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vector_refract.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vector_refract.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/visual_shader_node_vector_refract.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/visual_shader_node_vector_refract.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/voxel_gi.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/voxel_gi.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/voxel_gi.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/voxel_gi.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/voxel_gi_data.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/voxel_gi_data.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/voxel_gi_data.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/voxel_gi_data.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/weak_ref.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/weak_ref.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/weak_ref.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/weak_ref.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/web_rtc_data_channel.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/web_rtc_data_channel.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/web_rtc_data_channel.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/web_rtc_data_channel.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/web_rtc_data_channel_extension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/web_rtc_data_channel_extension.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/web_rtc_data_channel_extension.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/web_rtc_data_channel_extension.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/web_rtc_multiplayer_peer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/web_rtc_multiplayer_peer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/web_rtc_multiplayer_peer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/web_rtc_multiplayer_peer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/web_rtc_peer_connection.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/web_rtc_peer_connection.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/web_rtc_peer_connection.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/web_rtc_peer_connection.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/web_rtc_peer_connection_extension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/web_rtc_peer_connection_extension.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/web_rtc_peer_connection_extension.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/web_rtc_peer_connection_extension.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/web_socket_multiplayer_peer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/web_socket_multiplayer_peer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/web_socket_multiplayer_peer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/web_socket_multiplayer_peer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/web_socket_peer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/web_socket_peer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/web_socket_peer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/web_socket_peer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/web_xr_interface.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/web_xr_interface.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/web_xr_interface.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/web_xr_interface.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/window.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/window.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/window.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/window.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/worker_thread_pool.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/worker_thread_pool.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/worker_thread_pool.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/worker_thread_pool.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/world2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/world2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/world2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/world2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/world3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/world3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/world3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/world3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/world_boundary_shape2d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/world_boundary_shape2d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/world_boundary_shape2d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/world_boundary_shape2d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/world_boundary_shape3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/world_boundary_shape3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/world_boundary_shape3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/world_boundary_shape3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/world_environment.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/world_environment.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/world_environment.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/world_environment.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/x509_certificate.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/x509_certificate.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/x509_certificate.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/x509_certificate.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/xml_parser.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xml_parser.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xml_parser.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/xml_parser.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/xr_anchor3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xr_anchor3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xr_anchor3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/xr_anchor3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/xr_camera3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xr_camera3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xr_camera3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/xr_camera3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/xr_controller3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xr_controller3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xr_controller3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/xr_controller3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/xr_interface.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xr_interface.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xr_interface.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/xr_interface.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/xr_interface_extension.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xr_interface_extension.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xr_interface_extension.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/xr_interface_extension.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/xr_node3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xr_node3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xr_node3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/xr_node3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/xr_origin3d.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xr_origin3d.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xr_origin3d.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/xr_origin3d.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/xr_pose.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xr_pose.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xr_pose.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/xr_pose.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/xr_positional_tracker.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xr_positional_tracker.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xr_positional_tracker.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/xr_positional_tracker.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/xr_server.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xr_server.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/xr_server.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/xr_server.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/zip_packer.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/zip_packer.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/zip_packer.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/zip_packer.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/classes/zip_reader.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/zip_reader.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/classes/zip_reader.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/classes/zip_reader.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp",
+ "command": "/usr/bin/c++ -DDEBUG_ENABLED -DDEBUG_METHODS_ENABLED -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/include -isystem /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gdextension -DLINUX -g -fPIC -fvisibility=hidden -g -fno-omit-frame-pointer -O0 -Wall -Wctor-dtor-privacy -Wextra -Wno-unused-parameter -Wnon-virtual-dtor -Wwrite-strings -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wno-misleading-indentation -Wplacement-new=1 -Wshadow-local -Wstringop-overflow=4 -Wattribute-alias=2 -Wlogical-op -Wno-return-type -o CMakeFiles/godot-cpp.dir/gen/src/variant/utility_functions.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/utility_functions.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/gen/src/variant/utility_functions.cpp",
+ "output": "extern/godot-cpp/CMakeFiles/godot-cpp.dir/gen/src/variant/utility_functions.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/contrib/graphbuilder.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/contrib/graphbuilder.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/contrib/graphbuilder.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/contrib/graphbuilder.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/contrib/graphbuilderadapter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/contrib/graphbuilderadapter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/contrib/graphbuilderadapter.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/contrib/graphbuilderadapter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/binary.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/binary.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/binary.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/binary.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/convert.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/convert.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/convert.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/convert.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/depthguard.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/depthguard.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/depthguard.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/depthguard.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/directives.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/directives.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/directives.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/directives.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/emit.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/emit.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/emit.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/emit.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/emitfromevents.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/emitfromevents.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/emitfromevents.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/emitfromevents.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/emitter.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/emitter.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/emitter.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/emitter.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/emitterstate.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/emitterstate.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/emitterstate.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/emitterstate.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/emitterutils.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/emitterutils.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/emitterutils.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/emitterutils.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/exceptions.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/exceptions.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/exceptions.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/exceptions.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/exp.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/exp.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/exp.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/exp.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/memory.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/memory.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/memory.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/memory.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/node.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/node.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/node.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/node.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/node_data.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/node_data.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/node_data.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/node_data.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/nodebuilder.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/nodebuilder.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/nodebuilder.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/nodebuilder.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/nodeevents.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/nodeevents.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/nodeevents.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/nodeevents.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/null.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/null.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/null.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/null.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/ostream_wrapper.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/ostream_wrapper.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/ostream_wrapper.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/ostream_wrapper.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/parse.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/parse.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/parse.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/parse.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/parser.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/parser.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/parser.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/parser.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/regex_yaml.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/regex_yaml.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/regex_yaml.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/regex_yaml.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/scanner.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/scanner.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/scanner.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/scanner.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/scanscalar.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/scanscalar.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/scanscalar.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/scanscalar.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/scantag.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/scantag.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/scantag.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/scantag.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/scantoken.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/scantoken.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/scantoken.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/scantoken.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/simplekey.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/simplekey.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/simplekey.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/simplekey.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/singledocparser.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/singledocparser.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/singledocparser.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/singledocparser.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/stream.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/stream.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/stream.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/stream.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src -DLINUX -g -std=gnu++11 -fPIC -o CMakeFiles/yaml-cpp.dir/src/tag.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/tag.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/src/tag.cpp",
+ "output": "extern/yaml-cpp/CMakeFiles/yaml-cpp.dir/src/tag.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/util",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -DLINUX -g -std=gnu++11 -o CMakeFiles/yaml-cpp-sandbox.dir/sandbox.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/util/sandbox.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/util/sandbox.cpp",
+ "output": "extern/yaml-cpp/util/CMakeFiles/yaml-cpp-sandbox.dir/sandbox.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/util",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -DLINUX -g -std=gnu++11 -o CMakeFiles/yaml-cpp-parse.dir/parse.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/util/parse.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/util/parse.cpp",
+ "output": "extern/yaml-cpp/util/CMakeFiles/yaml-cpp-parse.dir/parse.cpp.o"
+},
+{
+ "directory": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/util",
+ "command": "/usr/bin/c++ -DYAML_CPP_STATIC_DEFINE -I/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/include -DLINUX -g -std=gnu++11 -o CMakeFiles/yaml-cpp-read.dir/read.cpp.o -c /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/util/read.cpp",
+ "file": "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/util/read.cpp",
+ "output": "extern/yaml-cpp/util/CMakeFiles/yaml-cpp-read.dir/read.cpp.o"
+}
+]
\ No newline at end of file
diff --git a/gdlibretro/demo/.gitattributes b/gdlibretro/demo/.gitattributes
new file mode 100644
index 0000000..8ad74f7
--- /dev/null
+++ b/gdlibretro/demo/.gitattributes
@@ -0,0 +1,2 @@
+# Normalize EOL for all files that Git considers text files.
+* text=auto eol=lf
diff --git a/gdlibretro/demo/.gitignore b/gdlibretro/demo/.gitignore
new file mode 100644
index 0000000..4709183
--- /dev/null
+++ b/gdlibretro/demo/.gitignore
@@ -0,0 +1,2 @@
+# Godot 4+ specific ignores
+.godot/
diff --git a/gdlibretro/demo/LICENSE b/gdlibretro/demo/LICENSE
new file mode 100644
index 0000000..b0083e4
--- /dev/null
+++ b/gdlibretro/demo/LICENSE
@@ -0,0 +1,7 @@
+Copyright 2020 Adam Viola
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/gdlibretro/demo/README.md b/gdlibretro/demo/README.md
new file mode 100644
index 0000000..ef2681b
--- /dev/null
+++ b/gdlibretro/demo/README.md
@@ -0,0 +1,25 @@
+# Simple Free-Look Camera
+A simple 3D 100-line free-look camera for Godot 4.0 that mimics the functionality of the editor's camera for in-game use.
+
+Ported from [Adamviola's Godot 3.2 version](https://github.com/adamviola/simple-free-look-camera).
+
+## Usage
+Use **W** and **S** to move forward and backward.
+
+Use **A** and **D** to move left and right.
+
+Use **Q** and **E** to move up and down.
+
+Roll the **scroll wheel** to increase and decrease movement speed.
+
+Press **shift** to move faster, and hold **alt** to move slower.
+
+Hold down the **right mouse button** to rotate the camera.
+There's a slider in the editor to control mouse sensitivity.
+
+## Installation
+Attach `camera.gd` to your Camera3D node. That's it!
+
+## License
+[MIT](https://opensource.org/licenses/MIT).
+
diff --git a/gdlibretro/demo/bin/LibRetroHost/LibRetroHost.gdextension b/gdlibretro/demo/bin/LibRetroHost/LibRetroHost.gdextension
new file mode 100644
index 0000000..130bffd
--- /dev/null
+++ b/gdlibretro/demo/bin/LibRetroHost/LibRetroHost.gdextension
@@ -0,0 +1,8 @@
+[configuration]
+
+entry_symbol = "GDExtensionInit"
+compatibility_minimum = 4.1
+
+[libraries]
+windows.release.x86_64 = "lib/Windows-AMD64/LibRetroHost-d.dll"
+windows.debug.x86_64 = "lib/Windows-AMD64/LibRetroHost-d.dll"
diff --git a/gdlibretro/demo/camera.gd b/gdlibretro/demo/camera.gd
new file mode 100644
index 0000000..b79ef4a
--- /dev/null
+++ b/gdlibretro/demo/camera.gd
@@ -0,0 +1,109 @@
+class_name FreeLookCamera extends Camera3D
+
+# Modifier keys' speed multiplier
+const SHIFT_MULTIPLIER = 2.5
+const ALT_MULTIPLIER = 1.0 / SHIFT_MULTIPLIER
+
+@export_range(0.0, 1.0) var sensitivity = 0.25
+
+# Mouse state
+var _mouse_position = Vector2(0.0, 0.0)
+var _total_pitch = 0.0
+
+# Movement state
+var _direction = Vector3(0.0, 0.0, 0.0)
+var _velocity = Vector3(0.0, 0.0, 0.0)
+var _acceleration = 30
+var _deceleration = -10
+var _vel_multiplier = 4
+
+# Keyboard state
+var _w = false
+var _s = false
+var _a = false
+var _d = false
+var _q = false
+var _e = false
+var _shift = false
+var _alt = false
+
+func _input(event):
+ # Receives mouse motion
+ if event is InputEventMouseMotion:
+ _mouse_position = event.relative
+
+ # Receives mouse button input
+ if event is InputEventMouseButton:
+ match event.button_index:
+ MOUSE_BUTTON_RIGHT: # Only allows rotation if right click down
+ Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED if event.pressed else Input.MOUSE_MODE_VISIBLE)
+ MOUSE_BUTTON_WHEEL_UP: # Increases max velocity
+ _vel_multiplier = clamp(_vel_multiplier * 1.1, 0.2, 20)
+ MOUSE_BUTTON_WHEEL_DOWN: # Decereases max velocity
+ _vel_multiplier = clamp(_vel_multiplier / 1.1, 0.2, 20)
+
+ # Receives key input
+ if event is InputEventKey:
+ match event.keycode:
+ KEY_W:
+ _w = event.pressed
+ KEY_S:
+ _s = event.pressed
+ KEY_A:
+ _a = event.pressed
+ KEY_D:
+ _d = event.pressed
+ KEY_Q:
+ _q = event.pressed
+ KEY_E:
+ _e = event.pressed
+
+# Updates mouselook and movement every frame
+func _process(delta):
+ _update_mouselook()
+ _update_movement(delta)
+
+# Updates camera movement
+func _update_movement(delta):
+ # Computes desired direction from key states
+ _direction = Vector3((_d as float) - (_a as float),
+ (_e as float) - (_q as float),
+ (_s as float) - (_w as float))
+
+ # Computes the change in velocity due to desired direction and "drag"
+ # The "drag" is a constant acceleration on the camera to bring it's velocity to 0
+ var offset = _direction.normalized() * _acceleration * _vel_multiplier * delta \
+ + _velocity.normalized() * _deceleration * _vel_multiplier * delta
+
+ # Compute modifiers' speed multiplier
+ var speed_multi = 1
+ if _shift: speed_multi *= SHIFT_MULTIPLIER
+ if _alt: speed_multi *= ALT_MULTIPLIER
+
+ # Checks if we should bother translating the camera
+ if _direction == Vector3.ZERO and offset.length_squared() > _velocity.length_squared():
+ # Sets the velocity to 0 to prevent jittering due to imperfect deceleration
+ _velocity = Vector3.ZERO
+ else:
+ # Clamps speed to stay within maximum value (_vel_multiplier)
+ _velocity.x = clamp(_velocity.x + offset.x, -_vel_multiplier, _vel_multiplier)
+ _velocity.y = clamp(_velocity.y + offset.y, -_vel_multiplier, _vel_multiplier)
+ _velocity.z = clamp(_velocity.z + offset.z, -_vel_multiplier, _vel_multiplier)
+
+ translate(_velocity * delta * speed_multi)
+
+# Updates mouse look
+func _update_mouselook():
+ # Only rotates mouse if the mouse is captured
+ if Input.get_mouse_mode() == Input.MOUSE_MODE_CAPTURED:
+ _mouse_position *= sensitivity
+ var yaw = _mouse_position.x
+ var pitch = _mouse_position.y
+ _mouse_position = Vector2(0, 0)
+
+ # Prevents looking up/down too far
+ pitch = clamp(pitch, -90 - _total_pitch, 90 - _total_pitch)
+ _total_pitch += pitch
+
+ rotate_y(deg_to_rad(-yaw))
+ rotate_object_local(Vector3(1,0,0), deg_to_rad(-pitch))
diff --git a/gdlibretro/demo/export_presets.cfg b/gdlibretro/demo/export_presets.cfg
new file mode 100644
index 0000000..4f8ba5c
--- /dev/null
+++ b/gdlibretro/demo/export_presets.cfg
@@ -0,0 +1,61 @@
+[preset.0]
+
+name="Windows Desktop"
+platform="Windows Desktop"
+runnable=true
+dedicated_server=false
+custom_features=""
+export_filter="all_resources"
+include_filter=""
+exclude_filter=""
+export_path="export/Demo.exe"
+encryption_include_filters=""
+encryption_exclude_filters=""
+encrypt_pck=false
+encrypt_directory=false
+
+[preset.0.options]
+
+custom_template/debug=""
+custom_template/release=""
+debug/export_console_wrapper=1
+binary_format/embed_pck=false
+texture_format/bptc=true
+texture_format/s3tc=true
+texture_format/etc=false
+texture_format/etc2=false
+binary_format/architecture="x86_64"
+codesign/enable=false
+codesign/timestamp=true
+codesign/timestamp_server_url=""
+codesign/digest_algorithm=1
+codesign/description=""
+codesign/custom_options=PackedStringArray()
+application/modify_resources=true
+application/icon=""
+application/console_wrapper_icon=""
+application/icon_interpolation=4
+application/file_version=""
+application/product_version=""
+application/company_name=""
+application/product_name=""
+application/file_description=""
+application/copyright=""
+application/trademarks=""
+ssh_remote_deploy/enabled=false
+ssh_remote_deploy/host="user@host_ip"
+ssh_remote_deploy/port="22"
+ssh_remote_deploy/extra_args_ssh=""
+ssh_remote_deploy/extra_args_scp=""
+ssh_remote_deploy/run_script="Expand-Archive -LiteralPath '{temp_dir}\\{archive_name}' -DestinationPath '{temp_dir}'
+$action = New-ScheduledTaskAction -Execute '{temp_dir}\\{exe_name}' -Argument '{cmd_args}'
+$trigger = New-ScheduledTaskTrigger -Once -At 00:00
+$settings = New-ScheduledTaskSettingsSet
+$task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings
+Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true
+Start-ScheduledTask -TaskName godot_remote_debug
+while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 }
+Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue"
+ssh_remote_deploy/cleanup_script="Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue
+Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue
+Remove-Item -Recurse -Force '{temp_dir}'"
diff --git a/gdlibretro/demo/icon.svg b/gdlibretro/demo/icon.svg
new file mode 100644
index 0000000..b370ceb
--- /dev/null
+++ b/gdlibretro/demo/icon.svg
@@ -0,0 +1 @@
+
diff --git a/gdlibretro/demo/libretro-cores/DOSBox-pure.pure.zip b/gdlibretro/demo/libretro-cores/DOSBox-pure.pure.zip
new file mode 100644
index 0000000..e49da56
Binary files /dev/null and b/gdlibretro/demo/libretro-cores/DOSBox-pure.pure.zip differ
diff --git a/gdlibretro/demo/libretro-cores/dosbox_pure_libretro.dll b/gdlibretro/demo/libretro-cores/dosbox_pure_libretro.dll
new file mode 100644
index 0000000..c312d19
Binary files /dev/null and b/gdlibretro/demo/libretro-cores/dosbox_pure_libretro.dll differ
diff --git a/gdlibretro/demo/libretro-cores/dosbox_pure_libretro.pdb b/gdlibretro/demo/libretro-cores/dosbox_pure_libretro.pdb
new file mode 100644
index 0000000..c9deaf7
Binary files /dev/null and b/gdlibretro/demo/libretro-cores/dosbox_pure_libretro.pdb differ
diff --git a/gdlibretro/demo/libretro-cores/dosbox_pure_libretro.yml b/gdlibretro/demo/libretro-cores/dosbox_pure_libretro.yml
new file mode 100644
index 0000000..c6ff4fc
--- /dev/null
+++ b/gdlibretro/demo/libretro-cores/dosbox_pure_libretro.yml
@@ -0,0 +1,45 @@
+dosbox_pure_force60fps: false
+dosbox_pure_perfstats: none
+dosbox_pure_savestate: on
+dosbox_pure_conf: false
+dosbox_pure_strict_mode: false
+dosbox_pure_menu_time: 5
+dosbox_pure_latency: default
+dosbox_pure_auto_target: 0.9
+dosbox_pure_bind_unused: true
+dosbox_pure_on_screen_keyboard: true
+dosbox_pure_mouse_input: true
+dosbox_pure_mouse_wheel: 67/68
+dosbox_pure_mouse_speed_factor: 1.0
+dosbox_pure_mouse_speed_factor_x: 1.0
+dosbox_pure_auto_mapping: true
+dosbox_pure_keyboard_layout: br
+dosbox_pure_menu_transparency: 50
+dosbox_pure_joystick_analog_deadzone: 15
+dosbox_pure_joystick_timed: true
+dosbox_pure_cycles: auto
+dosbox_pure_cycles_scale: 1.0
+dosbox_pure_cycle_limit: 1.0
+dosbox_pure_machine: svga
+dosbox_pure_cga: early_auto
+dosbox_pure_hercules: white
+dosbox_pure_svga: svga_s3
+dosbox_pure_svgamem: 2
+dosbox_pure_voodoo: 12mb
+dosbox_pure_voodoo_perf: 1
+dosbox_pure_aspect_correction: false
+dosbox_pure_overscan: 0
+dosbox_pure_memory_size: 16
+dosbox_pure_modem: "null"
+dosbox_pure_cpu_type: auto
+dosbox_pure_cpu_core: auto
+dosbox_pure_bootos_ramdisk: false
+dosbox_pure_bootos_dfreespace: 1024
+dosbox_pure_bootos_forcenormal: false
+dosbox_pure_audiorate: 48000
+dosbox_pure_sblaster_conf: A220 I7 D1 H5
+dosbox_pure_midi: disabled
+dosbox_pure_sblaster_type: sb16
+dosbox_pure_sblaster_adlib_mode: auto
+dosbox_pure_sblaster_adlib_emu: default
+dosbox_pure_gus: false
\ No newline at end of file
diff --git a/gdlibretro/demo/libretro-cores/vice_x128_libretro.yml b/gdlibretro/demo/libretro-cores/vice_x128_libretro.yml
new file mode 100644
index 0000000..3024ef0
--- /dev/null
+++ b/gdlibretro/demo/libretro-cores/vice_x128_libretro.yml
@@ -0,0 +1,117 @@
+vice_c128_model: C128 PAL
+vice_c128_ram_expansion_unit: none
+vice_c128_video_output: VICII
+vice_c128_vdc_ram: default
+vice_c128_go64: disabled
+vice_printer: disabled
+vice_jiffydos: disabled
+vice_read_vicerc: enabled
+vice_reset: autostart
+vice_autoloadwarp: disabled
+vice_warp_boost: enabled
+vice_autostart: enabled
+vice_drive_true_emulation: enabled
+vice_virtual_device_traps: disabled
+vice_floppy_write_protection: disabled
+vice_easyflash_write_protection: disabled
+vice_work_disk: disabled
+vice_cartridge: none
+vice_video_options_display: disabled
+vice_aspect_ratio: auto
+vice_crop: disabled
+vice_zoom_mode: deprecated
+vice_crop_mode: both
+vice_zoom_mode_crop: deprecated
+vice_manual_crop_top: 0
+vice_manual_crop_bottom: 0
+vice_manual_crop_left: 0
+vice_manual_crop_right: 0
+vice_vdc_filter: enabled
+vice_vicii_filter: enabled
+vice_vicii_filter_oddline_offset: 1000
+vice_vicii_filter_oddline_phase: 1000
+vice_external_palette: default
+vice_vicii_color_gamma: 2800
+vice_vicii_color_brightness: 1000
+vice_vicii_color_contrast: 1000
+vice_vicii_color_saturation: 1000
+vice_vicii_color_tint: 1000
+vice_gfx_colors: 16bit
+vice_vkbd_theme: auto
+vice_vkbd_transparency: 25%
+vice_vkbd_dimming: 25%
+vice_statusbar: bottom
+vice_statusbar_startup: disabled
+vice_statusbar_messages: disabled
+vice_joyport_pointer_color: blue
+vice_audio_options_display: disabled
+vice_drive_sound_emulation: 20%
+vice_datasette_sound: disabled
+vice_audio_leak_emulation: disabled
+vice_sid_engine: ReSID
+vice_sid_model: default
+vice_sid_extra: disabled
+vice_resid_sampling: resampling
+vice_resid_passband: 90
+vice_resid_gain: 97
+vice_resid_filterbias: 500
+vice_resid_8580filterbias: 1500
+vice_sfx_sound_expander: disabled
+vice_sound_sample_rate: 48000
+vice_analogmouse: left
+vice_analogmouse_deadzone: 20
+vice_analogmouse_speed: 1.0
+vice_dpadmouse_speed: 6
+vice_mouse_speed: 100
+vice_physical_keyboard_pass_through: disabled
+vice_datasette_hotkeys: disabled
+vice_keyrah_keypad_mappings: disabled
+vice_keyboard_keymap: positional
+vice_mapping_options_display: enabled
+vice_mapper_vkbd: ---
+vice_mapper_statusbar: RETROK_F12
+vice_mapper_joyport_switch: RETROK_RCTRL
+vice_mapper_turbo_fire_toggle: ---
+vice_mapper_save_disk_toggle: ---
+vice_mapper_aspect_ratio_toggle: ---
+vice_mapper_crop_toggle: ---
+vice_mapper_zoom_mode_toggle: ---
+vice_mapper_datasette_toggle_hotkeys: ---
+vice_mapper_datasette_start: RETROK_UP
+vice_mapper_datasette_stop: RETROK_DOWN
+vice_mapper_datasette_rewind: RETROK_LEFT
+vice_mapper_datasette_forward: RETROK_RIGHT
+vice_mapper_datasette_reset: ---
+vice_mapper_reset: RETROK_END
+vice_mapper_warp_mode: ---
+vice_mapper_up: ---
+vice_mapper_down: ---
+vice_mapper_left: ---
+vice_mapper_right: ---
+vice_mapper_b: ---
+vice_mapper_a: ---
+vice_mapper_y: ---
+vice_mapper_x: RETROK_SPACE
+vice_mapper_select: TOGGLE_VKBD
+vice_mapper_start: ---
+vice_mapper_l: ---
+vice_mapper_r: ---
+vice_mapper_l2: RETROK_ESCAPE
+vice_mapper_r2: RETROK_RETURN
+vice_mapper_l3: ---
+vice_mapper_r3: ---
+vice_mapper_lu: ---
+vice_mapper_ld: ---
+vice_mapper_ll: ---
+vice_mapper_lr: ---
+vice_mapper_ru: ---
+vice_mapper_rd: ---
+vice_mapper_rl: ---
+vice_mapper_rr: ---
+vice_turbo_fire: disabled
+vice_turbo_fire_button: B
+vice_turbo_pulse: 6
+vice_userport_joytype: disabled
+vice_joyport: 2
+vice_joyport_type: 1
+vice_retropad_options: disabled
diff --git a/gdlibretro/demo/libretro-cores/vice_x64sc_libretro.yml b/gdlibretro/demo/libretro-cores/vice_x64sc_libretro.yml
new file mode 100644
index 0000000..6f0f6c5
--- /dev/null
+++ b/gdlibretro/demo/libretro-cores/vice_x64sc_libretro.yml
@@ -0,0 +1,113 @@
+vice_c64_model: C64 PAL auto
+vice_ram_expansion_unit: none
+vice_printer: disabled
+vice_jiffydos: disabled
+vice_read_vicerc: enabled
+vice_reset: autostart
+vice_autoloadwarp: disabled
+vice_warp_boost: enabled
+vice_autostart: enabled
+vice_drive_true_emulation: enabled
+vice_virtual_device_traps: disabled
+vice_floppy_write_protection: disabled
+vice_easyflash_write_protection: disabled
+vice_work_disk: disabled
+vice_cartridge: none
+vice_video_options_display: disabled
+vice_aspect_ratio: auto
+vice_crop: disabled
+vice_zoom_mode: deprecated
+vice_crop_mode: both
+vice_zoom_mode_crop: deprecated
+vice_manual_crop_top: 0
+vice_manual_crop_bottom: 0
+vice_manual_crop_left: 0
+vice_manual_crop_right: 0
+vice_vicii_filter: enabled
+vice_vicii_filter_oddline_offset: 1000
+vice_vicii_filter_oddline_phase: 1000
+vice_external_palette: default
+vice_vicii_color_gamma: 2800
+vice_vicii_color_brightness: 1000
+vice_vicii_color_contrast: 1000
+vice_vicii_color_saturation: 1000
+vice_vicii_color_tint: 1000
+vice_gfx_colors: 16bit
+vice_vkbd_theme: auto
+vice_vkbd_transparency: 25%
+vice_vkbd_dimming: 25%
+vice_statusbar: bottom
+vice_statusbar_startup: disabled
+vice_statusbar_messages: disabled
+vice_joyport_pointer_color: blue
+vice_audio_options_display: disabled
+vice_drive_sound_emulation: 20%
+vice_datasette_sound: disabled
+vice_audio_leak_emulation: disabled
+vice_sid_engine: ReSID
+vice_sid_model: default
+vice_sid_extra: disabled
+vice_resid_sampling: resampling
+vice_resid_passband: 90
+vice_resid_gain: 97
+vice_resid_filterbias: 500
+vice_resid_8580filterbias: 1500
+vice_sfx_sound_expander: disabled
+vice_sound_sample_rate: 48000
+vice_analogmouse: left
+vice_analogmouse_deadzone: 20
+vice_analogmouse_speed: 1.0
+vice_dpadmouse_speed: 6
+vice_mouse_speed: 100
+vice_physical_keyboard_pass_through: disabled
+vice_datasette_hotkeys: disabled
+vice_keyrah_keypad_mappings: disabled
+vice_keyboard_keymap: positional
+vice_mapping_options_display: enabled
+vice_mapper_vkbd: ---
+vice_mapper_statusbar: RETROK_F12
+vice_mapper_joyport_switch: RETROK_RCTRL
+vice_mapper_turbo_fire_toggle: ---
+vice_mapper_save_disk_toggle: ---
+vice_mapper_aspect_ratio_toggle: ---
+vice_mapper_crop_toggle: ---
+vice_mapper_zoom_mode_toggle: ---
+vice_mapper_datasette_toggle_hotkeys: ---
+vice_mapper_datasette_start: RETROK_UP
+vice_mapper_datasette_stop: RETROK_DOWN
+vice_mapper_datasette_rewind: RETROK_LEFT
+vice_mapper_datasette_forward: RETROK_RIGHT
+vice_mapper_datasette_reset: ---
+vice_mapper_reset: RETROK_END
+vice_mapper_warp_mode: ---
+vice_mapper_up: ---
+vice_mapper_down: ---
+vice_mapper_left: ---
+vice_mapper_right: ---
+vice_mapper_b: ---
+vice_mapper_a: ---
+vice_mapper_y: ---
+vice_mapper_x: RETROK_SPACE
+vice_mapper_select: TOGGLE_VKBD
+vice_mapper_start: ---
+vice_mapper_l: ---
+vice_mapper_r: ---
+vice_mapper_l2: RETROK_ESCAPE
+vice_mapper_r2: RETROK_RETURN
+vice_mapper_l3: ---
+vice_mapper_r3: ---
+vice_mapper_lu: ---
+vice_mapper_ld: ---
+vice_mapper_ll: ---
+vice_mapper_lr: ---
+vice_mapper_ru: ---
+vice_mapper_rd: ---
+vice_mapper_rl: ---
+vice_mapper_rr: ---
+vice_turbo_fire: disabled
+vice_turbo_fire_button: B
+vice_turbo_pulse: 6
+vice_userport_joytype: disabled
+vice_joyport: 2
+vice_joyport_type: 1
+vice_retropad_options: disabled
\ No newline at end of file
diff --git a/gdlibretro/demo/node_3d.gd b/gdlibretro/demo/node_3d.gd
new file mode 100644
index 0000000..871f378
--- /dev/null
+++ b/gdlibretro/demo/node_3d.gd
@@ -0,0 +1,27 @@
+extends Node3D
+
+@onready var tex_rect = get_node("TextureRect")
+func _ready():
+ # Loads the core, the argument is the dll name inside the libretro-cores folder. WITHOUT THE .DLL
+ RetroHost.load_core("dosbox_pure_libretro")
+
+ #RetroHost.load_core("vice_x64sc_libretro")
+
+
+func _process(delta):
+ # Run one iteration of the core
+ RetroHost.run()
+
+ # Retrieve the framebuffer image
+ var frame_buffer = RetroHost.get_frame_buffer()
+ if(!frame_buffer):
+ return
+
+ # Fuckery to display the image
+ var img_tex = ImageTexture.create_from_image(frame_buffer)
+ $MeshInstance3D.get_surface_override_material(0).albedo_texture = img_tex
+ return
+
+func _input(event):
+ # Forward input events to the frontend (duh)
+ RetroHost.forward_input(event)
diff --git a/gdlibretro/demo/node_3d.tscn b/gdlibretro/demo/node_3d.tscn
new file mode 100644
index 0000000..431b365
--- /dev/null
+++ b/gdlibretro/demo/node_3d.tscn
@@ -0,0 +1,40 @@
+[gd_scene load_steps=9 format=3 uid="uid://dajnw4utx1a03"]
+
+[ext_resource type="Script" path="res://node_3d.gd" id="1_xccqp"]
+[ext_resource type="PackedScene" uid="uid://bv5wch4ufqnkf" path="res://old_computer/scene.gltf" id="1_yhqy6"]
+
+[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_glr6o"]
+
+[sub_resource type="Sky" id="Sky_pyqqo"]
+sky_material = SubResource("ProceduralSkyMaterial_glr6o")
+
+[sub_resource type="Environment" id="Environment_v5dlq"]
+background_mode = 2
+sky = SubResource("Sky_pyqqo")
+
+[sub_resource type="PlaneMesh" id="PlaneMesh_6u87m"]
+
+[sub_resource type="ImageTexture" id="ImageTexture_4jo8e"]
+
+[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_s0krg"]
+albedo_texture = SubResource("ImageTexture_4jo8e")
+
+[node name="Node3D" type="Node3D"]
+script = ExtResource("1_xccqp")
+
+[node name="scene" parent="." instance=ExtResource("1_yhqy6")]
+
+[node name="Camera3D" type="Camera3D" parent="."]
+transform = Transform3D(0.983722, 0.00986766, -0.179426, 0, 0.998491, 0.0549128, 0.179697, -0.054019, 0.982238, -0.0463173, 2.26119, 3.68082)
+fov = 80.056
+
+[node name="WorldEnvironment" type="WorldEnvironment" parent="."]
+environment = SubResource("Environment_v5dlq")
+
+[node name="DirectionalLight3D" type="DirectionalLight3D" parent="."]
+transform = Transform3D(0.856159, 0.205906, -0.473914, 0, 0.917171, 0.398493, 0.516713, -0.341173, 0.785245, 0, 0, 0)
+
+[node name="MeshInstance3D" type="MeshInstance3D" parent="."]
+transform = Transform3D(1.55223, 0, 0, 0, -4.37114e-08, -1.56607, 0, 1, -6.84553e-08, 0, 1.98417, 0.899248)
+mesh = SubResource("PlaneMesh_6u87m")
+surface_material_override/0 = SubResource("StandardMaterial3D_s0krg")
diff --git a/gdlibretro/demo/old_computer/license.txt b/gdlibretro/demo/old_computer/license.txt
new file mode 100644
index 0000000..5570f89
--- /dev/null
+++ b/gdlibretro/demo/old_computer/license.txt
@@ -0,0 +1,11 @@
+Model Information:
+* title: Old Computer
+* source: https://sketchfab.com/3d-models/old-computer-ac488d426f824858b3eb73a6ac15f9da
+* author: YieldingMist206 (https://sketchfab.com/YieldingMist206)
+
+Model License:
+* license type: CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/)
+* requirements: Author must be credited. Commercial use is allowed.
+
+If you use this 3D model in your project be sure to copy paste this credit wherever you share it:
+This work is based on "Old Computer" (https://sketchfab.com/3d-models/old-computer-ac488d426f824858b3eb73a6ac15f9da) by YieldingMist206 (https://sketchfab.com/YieldingMist206) licensed under CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/)
\ No newline at end of file
diff --git a/gdlibretro/demo/old_computer/scene.bin b/gdlibretro/demo/old_computer/scene.bin
new file mode 100644
index 0000000..2c86d9f
Binary files /dev/null and b/gdlibretro/demo/old_computer/scene.bin differ
diff --git a/gdlibretro/demo/old_computer/scene.gltf b/gdlibretro/demo/old_computer/scene.gltf
new file mode 100644
index 0000000..7d455e9
--- /dev/null
+++ b/gdlibretro/demo/old_computer/scene.gltf
@@ -0,0 +1,1494 @@
+{
+ "accessors": [
+ {
+ "bufferView": 2,
+ "componentType": 5126,
+ "count": 1072,
+ "max": [
+ 3.2625391483306885,
+ 2.0,
+ 3.9936037063598633
+ ],
+ "min": [
+ -1.0,
+ -2.0,
+ -0.0063964128494262695
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 12864,
+ "componentType": 5126,
+ "count": 1072,
+ "max": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "min": [
+ -1.0,
+ -1.0,
+ -1.0
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 1,
+ "componentType": 5126,
+ "count": 1072,
+ "max": [
+ 0.8750000596046448,
+ 1.0
+ ],
+ "min": [
+ 0.125,
+ 0.0
+ ],
+ "type": "VEC2"
+ },
+ {
+ "bufferView": 0,
+ "componentType": 5125,
+ "count": 3132,
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 25728,
+ "componentType": 5126,
+ "count": 4,
+ "max": [
+ -0.8882036209106445,
+ 1.5615159273147583,
+ 3.555119514465332
+ ],
+ "min": [
+ -0.8882036209106445,
+ -1.5615159273147583,
+ 0.43208765983581543
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 25776,
+ "componentType": 5126,
+ "count": 4,
+ "max": [
+ -1.0,
+ 0.0,
+ 0.0
+ ],
+ "min": [
+ -1.0,
+ 0.0,
+ 0.0
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 1,
+ "byteOffset": 8576,
+ "componentType": 5126,
+ "count": 4,
+ "max": [
+ 0.5917909145355225,
+ 0.21679092943668365
+ ],
+ "min": [
+ 0.4082089364528656,
+ 0.03320906311273575
+ ],
+ "type": "VEC2"
+ },
+ {
+ "bufferView": 0,
+ "byteOffset": 12528,
+ "componentType": 5125,
+ "count": 6,
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 25824,
+ "componentType": 5126,
+ "count": 346,
+ "max": [
+ -0.9570940732955933,
+ 1.5959045886993408,
+ 0.28595030307769775
+ ],
+ "min": [
+ -1.009149193763733,
+ -1.4813350439071655,
+ 0.04947793483734131
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 29976,
+ "componentType": 5126,
+ "count": 346,
+ "max": [
+ 0.0,
+ 0.999990701675415,
+ 0.9992406964302063
+ ],
+ "min": [
+ -1.0,
+ -0.999990701675415,
+ -0.9992406964302063
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 1,
+ "byteOffset": 8608,
+ "componentType": 5126,
+ "count": 346,
+ "max": [
+ 0.39703550934791565,
+ 0.22474405169487
+ ],
+ "min": [
+ 0.3784921169281006,
+ 0.031331099569797516
+ ],
+ "type": "VEC2"
+ },
+ {
+ "bufferView": 0,
+ "byteOffset": 12552,
+ "componentType": 5125,
+ "count": 1416,
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 34128,
+ "componentType": 5126,
+ "count": 96,
+ "max": [
+ -0.9848702549934387,
+ -1.3916664123535156,
+ 0.2400038242340088
+ ],
+ "min": [
+ -1.0079288482666016,
+ -1.4768397808074951,
+ 0.15483033657073975
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 35280,
+ "componentType": 5126,
+ "count": 96,
+ "max": [
+ -0.31646329164505005,
+ 0.9486009478569031,
+ 0.9486021995544434
+ ],
+ "min": [
+ -0.995914876461029,
+ -0.9486048221588135,
+ -0.9486023187637329
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 1,
+ "byteOffset": 11376,
+ "componentType": 5126,
+ "count": 96,
+ "max": [
+ 0.39258480072021484,
+ 0.03896082565188408
+ ],
+ "min": [
+ 0.3849634528160095,
+ 0.032017506659030914
+ ],
+ "type": "VEC2"
+ },
+ {
+ "bufferView": 0,
+ "byteOffset": 18216,
+ "componentType": 5125,
+ "count": 522,
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 36432,
+ "componentType": 5126,
+ "count": 1225,
+ "max": [
+ 3.9153573513031006,
+ 0.07594017684459686,
+ 1.7278687953948975
+ ],
+ "min": [
+ 0.9327483177185059,
+ -4.088211536407471,
+ -0.05957961082458496
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 51132,
+ "componentType": 5126,
+ "count": 1225,
+ "max": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "min": [
+ -1.0,
+ -1.0,
+ -1.0
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 1,
+ "byteOffset": 12144,
+ "componentType": 5126,
+ "count": 1225,
+ "max": [
+ 1.0,
+ 1.0
+ ],
+ "min": [
+ -1.862645149230957e-07,
+ 0.0
+ ],
+ "type": "VEC2"
+ },
+ {
+ "bufferView": 0,
+ "byteOffset": 20304,
+ "componentType": 5125,
+ "count": 4020,
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 65832,
+ "componentType": 5126,
+ "count": 560,
+ "max": [
+ 1.0,
+ 1.0,
+ 2.704676866531372
+ ],
+ "min": [
+ -1.0,
+ -1.0,
+ -1.0
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 72552,
+ "componentType": 5126,
+ "count": 560,
+ "max": [
+ 0.9818756580352783,
+ 1.0,
+ 1.0
+ ],
+ "min": [
+ -1.0,
+ -1.0,
+ -1.0
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 1,
+ "byteOffset": 21944,
+ "componentType": 5126,
+ "count": 560,
+ "max": [
+ 0.875,
+ 1.0
+ ],
+ "min": [
+ 0.125,
+ 0.0
+ ],
+ "type": "VEC2"
+ },
+ {
+ "bufferView": 0,
+ "byteOffset": 36384,
+ "componentType": 5125,
+ "count": 1863,
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 79272,
+ "componentType": 5126,
+ "count": 1416,
+ "max": [
+ 1.0319879055023193,
+ 0.6006892323493958,
+ 2.2698681354522705
+ ],
+ "min": [
+ -0.9478417038917542,
+ -0.6006892323493958,
+ -0.5373412370681763
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 96264,
+ "componentType": 5126,
+ "count": 1416,
+ "max": [
+ 0.9994925260543823,
+ 1.0,
+ 1.0
+ ],
+ "min": [
+ -1.0,
+ -1.0,
+ -1.0
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 1,
+ "byteOffset": 26424,
+ "componentType": 5126,
+ "count": 1416,
+ "max": [
+ 1.0,
+ 1.0
+ ],
+ "min": [
+ -4.440892098500626e-16,
+ 0.0
+ ],
+ "type": "VEC2"
+ },
+ {
+ "bufferView": 0,
+ "byteOffset": 43836,
+ "componentType": 5125,
+ "count": 5148,
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 113256,
+ "componentType": 5126,
+ "count": 1450,
+ "max": [
+ 0.0700000524520874,
+ 0.5089741349220276,
+ 4.992786407470703
+ ],
+ "min": [
+ -1.0422439575195313,
+ -3.5934951305389404,
+ -0.15193355083465576
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 130656,
+ "componentType": 5126,
+ "count": 1450,
+ "max": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "min": [
+ -1.0,
+ -1.0,
+ -1.0
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 1,
+ "byteOffset": 37752,
+ "componentType": 5126,
+ "count": 1450,
+ "max": [
+ 1.0,
+ 1.0
+ ],
+ "min": [
+ -1.862645149230957e-07,
+ 0.0
+ ],
+ "type": "VEC2"
+ },
+ {
+ "bufferView": 0,
+ "byteOffset": 64428,
+ "componentType": 5125,
+ "count": 5220,
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 148056,
+ "componentType": 5126,
+ "count": 1410,
+ "max": [
+ 0.18144166469573975,
+ 2.3739545345306396,
+ -0.03163576126098633
+ ],
+ "min": [
+ -0.1185583770275116,
+ -2.4260456562042236,
+ -2.0316357612609863
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 164976,
+ "componentType": 5126,
+ "count": 1410,
+ "max": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "min": [
+ -1.0,
+ -1.0,
+ -1.0
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 1,
+ "byteOffset": 49352,
+ "componentType": 5126,
+ "count": 1410,
+ "max": [
+ 0.8750000596046448,
+ 1.0
+ ],
+ "min": [
+ 0.125,
+ 0.0
+ ],
+ "type": "VEC2"
+ },
+ {
+ "bufferView": 0,
+ "byteOffset": 85308,
+ "componentType": 5125,
+ "count": 5322,
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 181896,
+ "componentType": 5126,
+ "count": 80,
+ "max": [
+ -0.0999697893857956,
+ 1.9657925367355347,
+ -0.09819692373275757
+ ],
+ "min": [
+ -0.1185583770275116,
+ -2.017883777618408,
+ -0.27841871976852417
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 182856,
+ "componentType": 5126,
+ "count": 80,
+ "max": [
+ 0.0,
+ 1.0,
+ 1.0
+ ],
+ "min": [
+ -1.0,
+ -1.0,
+ -1.0
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 1,
+ "byteOffset": 60632,
+ "componentType": 5126,
+ "count": 80,
+ "max": [
+ 0.65584796667099,
+ 0.7287415862083435
+ ],
+ "min": [
+ 0.6333200931549072,
+ 0.5212584733963013
+ ],
+ "type": "VEC2"
+ },
+ {
+ "bufferView": 0,
+ "byteOffset": 106596,
+ "componentType": 5125,
+ "count": 120,
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 183816,
+ "componentType": 5126,
+ "count": 440,
+ "max": [
+ -0.11855830252170563,
+ 1.9915693998336792,
+ -0.33050423860549927
+ ],
+ "min": [
+ -0.2056216150522232,
+ -2.0436606407165527,
+ -1.7327673435211182
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 189096,
+ "componentType": 5126,
+ "count": 440,
+ "max": [
+ -0.08956712484359741,
+ 0.4942721426486969,
+ 0.9959808588027954
+ ],
+ "min": [
+ -1.0,
+ -0.4942721426486969,
+ -0.9959807395935059
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 1,
+ "byteOffset": 61272,
+ "componentType": 5126,
+ "count": 440,
+ "max": [
+ 0.8376415967941284,
+ 0.7300841808319092
+ ],
+ "min": [
+ 0.6623584628105164,
+ 0.5199158787727356
+ ],
+ "type": "VEC2"
+ },
+ {
+ "bufferView": 0,
+ "byteOffset": 107076,
+ "componentType": 5125,
+ "count": 1602,
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 194376,
+ "componentType": 5126,
+ "count": 133,
+ "max": [
+ 0.5750637650489807,
+ 0.5701020359992981,
+ 0.03095417097210884
+ ],
+ "min": [
+ -0.5750637650489807,
+ -0.5800254344940186,
+ -0.02627900242805481
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 195972,
+ "componentType": 5126,
+ "count": 133,
+ "max": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "min": [
+ -1.0,
+ -1.0,
+ -1.0
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 1,
+ "byteOffset": 64792,
+ "componentType": 5126,
+ "count": 133,
+ "max": [
+ 0.875,
+ 1.0
+ ],
+ "min": [
+ 0.125,
+ 0.0
+ ],
+ "type": "VEC2"
+ },
+ {
+ "bufferView": 0,
+ "byteOffset": 113484,
+ "componentType": 5125,
+ "count": 330,
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 197568,
+ "componentType": 5126,
+ "count": 232,
+ "max": [
+ 0.12819761037826538,
+ 0.3263741731643677,
+ 0.04435180872678757
+ ],
+ "min": [
+ -0.2651945948600769,
+ -0.5934547781944275,
+ -0.02928842604160309
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 200352,
+ "componentType": 5126,
+ "count": 232,
+ "max": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "min": [
+ -1.0,
+ -1.0,
+ -1.0
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 1,
+ "byteOffset": 65856,
+ "componentType": 5126,
+ "count": 232,
+ "max": [
+ 1.0,
+ 1.0
+ ],
+ "min": [
+ -1.564621925354004e-07,
+ 0.0
+ ],
+ "type": "VEC2"
+ },
+ {
+ "bufferView": 0,
+ "byteOffset": 114804,
+ "componentType": 5125,
+ "count": 648,
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 203136,
+ "componentType": 5126,
+ "count": 104,
+ "max": [
+ -0.9271230697631836,
+ 0.6006892323493958,
+ 2.2698681354522705
+ ],
+ "min": [
+ -0.9733123779296875,
+ -0.6006892323493958,
+ 1.9070035219192505
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 204384,
+ "componentType": 5126,
+ "count": 104,
+ "max": [
+ 0.9995602369308472,
+ 0.9972208738327026,
+ 0.9976539611816406
+ ],
+ "min": [
+ -0.9999995231628418,
+ -0.9972219467163086,
+ -0.9976540207862854
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 1,
+ "byteOffset": 67712,
+ "componentType": 5126,
+ "count": 104,
+ "max": [
+ 0.0,
+ 0.0
+ ],
+ "min": [
+ 0.0,
+ 0.0
+ ],
+ "type": "VEC2"
+ },
+ {
+ "bufferView": 0,
+ "byteOffset": 117396,
+ "componentType": 5125,
+ "count": 570,
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 205632,
+ "componentType": 5126,
+ "count": 288,
+ "max": [
+ 0.973882794380188,
+ 0.5886122584342957,
+ 2.1448874473571777
+ ],
+ "min": [
+ -0.983881950378418,
+ -0.5886122584342957,
+ 1.98805570602417
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 2,
+ "byteOffset": 209088,
+ "componentType": 5126,
+ "count": 288,
+ "max": [
+ 1.0,
+ 1.0,
+ 1.0
+ ],
+ "min": [
+ -0.9999995231628418,
+ -1.0,
+ -1.0
+ ],
+ "type": "VEC3"
+ },
+ {
+ "bufferView": 1,
+ "byteOffset": 68544,
+ "componentType": 5126,
+ "count": 288,
+ "max": [
+ 1.0,
+ 0.75
+ ],
+ "min": [
+ 0.0,
+ 0.0
+ ],
+ "type": "VEC2"
+ },
+ {
+ "bufferView": 0,
+ "byteOffset": 119676,
+ "componentType": 5125,
+ "count": 1152,
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 3,
+ "componentType": 5126,
+ "count": 241,
+ "max": [
+ 10.375
+ ],
+ "min": [
+ 0.0
+ ],
+ "type": "SCALAR"
+ },
+ {
+ "bufferView": 4,
+ "componentType": 5126,
+ "count": 241,
+ "max": [
+ 0.0,
+ 80.0,
+ 393.9999694824219
+ ],
+ "min": [
+ -135.0,
+ 80.0,
+ 393.9999694824219
+ ],
+ "type": "VEC3"
+ }
+ ],
+ "animations": [
+ {
+ "channels": [
+ {
+ "sampler": 0,
+ "target": {
+ "node": 21,
+ "path": "translation"
+ }
+ }
+ ],
+ "name": "Disk Tray|Disk TrayAction",
+ "samplers": [
+ {
+ "input": 60,
+ "interpolation": "LINEAR",
+ "output": 61
+ }
+ ]
+ }
+ ],
+ "asset": {
+ "extras": {
+ "author": "YieldingMist206 (https://sketchfab.com/YieldingMist206)",
+ "license": "CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/)",
+ "source": "https://sketchfab.com/3d-models/old-computer-ac488d426f824858b3eb73a6ac15f9da",
+ "title": "Old Computer"
+ },
+ "generator": "Sketchfab-14.86.0",
+ "version": "2.0"
+ },
+ "bufferViews": [
+ {
+ "buffer": 0,
+ "byteLength": 124284,
+ "name": "floatBufferViews",
+ "target": 34963
+ },
+ {
+ "buffer": 0,
+ "byteLength": 70848,
+ "byteOffset": 124284,
+ "byteStride": 8,
+ "name": "floatBufferViews",
+ "target": 34962
+ },
+ {
+ "buffer": 0,
+ "byteLength": 212544,
+ "byteOffset": 195132,
+ "byteStride": 12,
+ "name": "floatBufferViews",
+ "target": 34962
+ },
+ {
+ "buffer": 0,
+ "byteLength": 964,
+ "byteOffset": 407676,
+ "name": "floatBufferViews"
+ },
+ {
+ "buffer": 0,
+ "byteLength": 2892,
+ "byteOffset": 408640,
+ "byteStride": 12,
+ "name": "floatBufferViews"
+ }
+ ],
+ "buffers": [
+ {
+ "byteLength": 411532,
+ "uri": "scene.bin"
+ }
+ ],
+ "materials": [
+ {
+ "doubleSided": true,
+ "name": "White",
+ "pbrMetallicRoughness": {
+ "baseColorFactor": [
+ 0.8,
+ 0.8,
+ 0.602917,
+ 1.0
+ ],
+ "metallicFactor": 0.0
+ }
+ },
+ {
+ "doubleSided": true,
+ "name": "Dark_Green",
+ "pbrMetallicRoughness": {
+ "baseColorFactor": [
+ 0.0,
+ 0.342383,
+ 0.0104276,
+ 1.0
+ ],
+ "metallicFactor": 0.0,
+ "roughnessFactor": 0.9333471081032856
+ }
+ },
+ {
+ "doubleSided": true,
+ "name": "Black",
+ "pbrMetallicRoughness": {
+ "baseColorFactor": [
+ 0.0219787,
+ 0.0219787,
+ 0.0219787,
+ 1.0
+ ],
+ "metallicFactor": 0.0
+ }
+ },
+ {
+ "doubleSided": true,
+ "emissiveFactor": [
+ 0.0122865,
+ 0.577581,
+ 0.0368895
+ ],
+ "name": "Lime_Green",
+ "pbrMetallicRoughness": {
+ "baseColorFactor": [
+ 0.0,
+ 0.8,
+ 0.020039,
+ 1.0
+ ],
+ "metallicFactor": 0.0
+ }
+ },
+ {
+ "doubleSided": true,
+ "name": "Cable",
+ "pbrMetallicRoughness": {
+ "baseColorFactor": [
+ 0.527717,
+ 0.527717,
+ 0.527717,
+ 1.0
+ ],
+ "metallicFactor": 0.0,
+ "roughnessFactor": 0.8819988915117744
+ }
+ }
+ ],
+ "meshes": [
+ {
+ "name": "Monitor_White_0",
+ "primitives": [
+ {
+ "attributes": {
+ "NORMAL": 1,
+ "POSITION": 0,
+ "TEXCOORD_0": 2
+ },
+ "indices": 3,
+ "material": 0,
+ "mode": 4
+ }
+ ]
+ },
+ {
+ "name": "Monitor_Dark Green_0",
+ "primitives": [
+ {
+ "attributes": {
+ "NORMAL": 5,
+ "POSITION": 4,
+ "TEXCOORD_0": 6
+ },
+ "indices": 7,
+ "material": 1,
+ "mode": 4
+ }
+ ]
+ },
+ {
+ "name": "Monitor_Black_0",
+ "primitives": [
+ {
+ "attributes": {
+ "NORMAL": 9,
+ "POSITION": 8,
+ "TEXCOORD_0": 10
+ },
+ "indices": 11,
+ "material": 2,
+ "mode": 4
+ }
+ ]
+ },
+ {
+ "name": "Monitor_Lime Green_0",
+ "primitives": [
+ {
+ "attributes": {
+ "NORMAL": 13,
+ "POSITION": 12,
+ "TEXCOORD_0": 14
+ },
+ "indices": 15,
+ "material": 3,
+ "mode": 4
+ }
+ ]
+ },
+ {
+ "name": "Monitor_Cable_0",
+ "primitives": [
+ {
+ "attributes": {
+ "NORMAL": 17,
+ "POSITION": 16,
+ "TEXCOORD_0": 18
+ },
+ "indices": 19,
+ "material": 4,
+ "mode": 4
+ }
+ ]
+ },
+ {
+ "name": "CPU_White_0",
+ "primitives": [
+ {
+ "attributes": {
+ "NORMAL": 21,
+ "POSITION": 20,
+ "TEXCOORD_0": 22
+ },
+ "indices": 23,
+ "material": 0,
+ "mode": 4
+ }
+ ]
+ },
+ {
+ "name": "CPU_Black_0",
+ "primitives": [
+ {
+ "attributes": {
+ "NORMAL": 25,
+ "POSITION": 24,
+ "TEXCOORD_0": 26
+ },
+ "indices": 27,
+ "material": 2,
+ "mode": 4
+ }
+ ]
+ },
+ {
+ "name": "Keyboard_Cable_0",
+ "primitives": [
+ {
+ "attributes": {
+ "NORMAL": 29,
+ "POSITION": 28,
+ "TEXCOORD_0": 30
+ },
+ "indices": 31,
+ "material": 4,
+ "mode": 4
+ }
+ ]
+ },
+ {
+ "name": "Keyboard_White_0",
+ "primitives": [
+ {
+ "attributes": {
+ "NORMAL": 33,
+ "POSITION": 32,
+ "TEXCOORD_0": 34
+ },
+ "indices": 35,
+ "material": 0,
+ "mode": 4
+ }
+ ]
+ },
+ {
+ "name": "Keyboard_Lime Green_0",
+ "primitives": [
+ {
+ "attributes": {
+ "NORMAL": 37,
+ "POSITION": 36,
+ "TEXCOORD_0": 38
+ },
+ "indices": 39,
+ "material": 3,
+ "mode": 4
+ }
+ ]
+ },
+ {
+ "name": "Keyboard_Black_0",
+ "primitives": [
+ {
+ "attributes": {
+ "NORMAL": 41,
+ "POSITION": 40,
+ "TEXCOORD_0": 42
+ },
+ "indices": 43,
+ "material": 2,
+ "mode": 4
+ }
+ ]
+ },
+ {
+ "name": "Floppy Disk_Black_0",
+ "primitives": [
+ {
+ "attributes": {
+ "NORMAL": 45,
+ "POSITION": 44,
+ "TEXCOORD_0": 46
+ },
+ "indices": 47,
+ "material": 2,
+ "mode": 4
+ }
+ ]
+ },
+ {
+ "name": "Floppy Disk_White_0",
+ "primitives": [
+ {
+ "attributes": {
+ "NORMAL": 49,
+ "POSITION": 48,
+ "TEXCOORD_0": 50
+ },
+ "indices": 51,
+ "material": 0,
+ "mode": 4
+ }
+ ]
+ },
+ {
+ "name": "Disk Tray_White_0",
+ "primitives": [
+ {
+ "attributes": {
+ "NORMAL": 53,
+ "POSITION": 52,
+ "TEXCOORD_0": 54
+ },
+ "indices": 55,
+ "material": 0,
+ "mode": 4
+ }
+ ]
+ },
+ {
+ "name": "Disk Tray_Black_0",
+ "primitives": [
+ {
+ "attributes": {
+ "NORMAL": 57,
+ "POSITION": 56,
+ "TEXCOORD_0": 58
+ },
+ "indices": 59,
+ "material": 2,
+ "mode": 4
+ }
+ ]
+ }
+ ],
+ "nodes": [
+ {
+ "children": [
+ 1
+ ],
+ "matrix": [
+ 2.220446049250313e-16,
+ 2.220446049250313e-16,
+ -1.0,
+ 0.0,
+ -1.0,
+ 4.930380657631324e-32,
+ -2.220446049250313e-16,
+ 0.0,
+ 0.0,
+ 1.0,
+ 2.220446049250313e-16,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.0
+ ],
+ "name": "Sketchfab_model"
+ },
+ {
+ "children": [
+ 2
+ ],
+ "matrix": [
+ 0.009999999776482582,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.009999999776482582,
+ 0.0,
+ 0.0,
+ -0.009999999776482582,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 0.0,
+ 1.0
+ ],
+ "name": "computer.fbx"
+ },
+ {
+ "children": [
+ 3
+ ],
+ "name": "Object_2"
+ },
+ {
+ "children": [
+ 4,
+ 10,
+ 13,
+ 18,
+ 21
+ ],
+ "name": "RootNode"
+ },
+ {
+ "children": [
+ 5,
+ 6,
+ 7,
+ 8,
+ 9
+ ],
+ "name": "Monitor",
+ "rotation": [
+ -0.7071068286895752,
+ 0.0,
+ 0.0,
+ 0.7071067094802856
+ ],
+ "scale": [
+ 100.0,
+ 100.0,
+ 100.0
+ ]
+ },
+ {
+ "mesh": 0,
+ "name": "Monitor_White_0"
+ },
+ {
+ "mesh": 1,
+ "name": "Monitor_Dark Green_0"
+ },
+ {
+ "mesh": 2,
+ "name": "Monitor_Black_0"
+ },
+ {
+ "mesh": 3,
+ "name": "Monitor_Lime Green_0"
+ },
+ {
+ "mesh": 4,
+ "name": "Monitor_Cable_0"
+ },
+ {
+ "children": [
+ 11,
+ 12
+ ],
+ "name": "CPU",
+ "rotation": [
+ -0.7071068286895752,
+ 0.0,
+ 0.0,
+ 0.7071067094802856
+ ],
+ "scale": [
+ 100.0,
+ 100.0,
+ 100.0
+ ],
+ "translation": [
+ 0.0,
+ 80.0,
+ 393.9999694824219
+ ]
+ },
+ {
+ "mesh": 5,
+ "name": "CPU_White_0"
+ },
+ {
+ "mesh": 6,
+ "name": "CPU_Black_0"
+ },
+ {
+ "children": [
+ 14,
+ 15,
+ 16,
+ 17
+ ],
+ "name": "Keyboard",
+ "rotation": [
+ -0.5,
+ 0.5,
+ -0.5,
+ 0.4999999701976776
+ ],
+ "scale": [
+ 100.0,
+ 100.0,
+ 100.0
+ ],
+ "translation": [
+ -253.88076782226563,
+ -11.354804039001465,
+ -2.6045641899108887
+ ]
+ },
+ {
+ "mesh": 7,
+ "name": "Keyboard_Cable_0"
+ },
+ {
+ "mesh": 8,
+ "name": "Keyboard_White_0"
+ },
+ {
+ "mesh": 9,
+ "name": "Keyboard_Lime Green_0"
+ },
+ {
+ "mesh": 10,
+ "name": "Keyboard_Black_0"
+ },
+ {
+ "children": [
+ 19,
+ 20
+ ],
+ "name": "Floppy Disk",
+ "rotation": [
+ 0.5,
+ -0.4999999701976776,
+ -0.5,
+ -0.5
+ ],
+ "scale": [
+ 100.0,
+ 100.0,
+ 100.0
+ ],
+ "translation": [
+ -252.7777862548828,
+ -22.23185920715332,
+ 432.975830078125
+ ]
+ },
+ {
+ "mesh": 11,
+ "name": "Floppy Disk_Black_0"
+ },
+ {
+ "mesh": 12,
+ "name": "Floppy Disk_White_0"
+ },
+ {
+ "children": [
+ 22,
+ 23
+ ],
+ "name": "Disk Tray",
+ "rotation": [
+ -0.7071068286895752,
+ 0.0,
+ 0.0,
+ 0.7071067094802856
+ ],
+ "scale": [
+ 100.0,
+ 100.0,
+ 100.0
+ ],
+ "translation": [
+ -135.0,
+ 80.0,
+ 393.9999694824219
+ ]
+ },
+ {
+ "mesh": 13,
+ "name": "Disk Tray_White_0"
+ },
+ {
+ "mesh": 14,
+ "name": "Disk Tray_Black_0"
+ }
+ ],
+ "scene": 0,
+ "scenes": [
+ {
+ "name": "Sketchfab_Scene",
+ "nodes": [
+ 0
+ ]
+ }
+ ]
+}
diff --git a/gdlibretro/demo/project.godot b/gdlibretro/demo/project.godot
new file mode 100644
index 0000000..bd82966
--- /dev/null
+++ b/gdlibretro/demo/project.godot
@@ -0,0 +1,16 @@
+; Engine configuration file.
+; It's best edited using the editor UI and not directly,
+; since the parameters that go here are not all obvious.
+;
+; Format:
+; [section] ; section goes between []
+; param=value ; assign values to parameters
+
+config_version=5
+
+[application]
+
+config/name="Demo"
+run/main_scene="res://node_3d.tscn"
+config/features=PackedStringArray("4.1", "Forward Plus")
+config/icon="res://icon.svg"
diff --git a/gdlibretro/extern/CMakeFiles/CMakeDirectoryInformation.cmake b/gdlibretro/extern/CMakeFiles/CMakeDirectoryInformation.cmake
new file mode 100644
index 0000000..266754e
--- /dev/null
+++ b/gdlibretro/extern/CMakeFiles/CMakeDirectoryInformation.cmake
@@ -0,0 +1,16 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.30
+
+# Relative path conversion top directories.
+set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro")
+set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro")
+
+# Force unix paths in dependencies.
+set(CMAKE_FORCE_UNIX_PATHS 1)
+
+
+# The C and CXX include file regular expressions for this directory.
+set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
+set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
+set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
+set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
diff --git a/gdlibretro/extern/CMakeFiles/progress.marks b/gdlibretro/extern/CMakeFiles/progress.marks
new file mode 100644
index 0000000..3ad5abd
--- /dev/null
+++ b/gdlibretro/extern/CMakeFiles/progress.marks
@@ -0,0 +1 @@
+99
diff --git a/gdlibretro/extern/CMakeLists.txt b/gdlibretro/extern/CMakeLists.txt
new file mode 100644
index 0000000..f3f76e2
--- /dev/null
+++ b/gdlibretro/extern/CMakeLists.txt
@@ -0,0 +1,4 @@
+add_subdirectory( godot-cpp )
+add_subdirectory( yaml-cpp )
+
+target_include_directories( ${PROJECT_NAME} PUBLIC libretro-common/include )
\ No newline at end of file
diff --git a/gdlibretro/extern/Makefile b/gdlibretro/extern/Makefile
new file mode 100644
index 0000000..6cd2b2f
--- /dev/null
+++ b/gdlibretro/extern/Makefile
@@ -0,0 +1,191 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.30
+
+# Default target executed when no arguments are given to make.
+default_target: all
+.PHONY : default_target
+
+# Allow only one "make -f Makefile2" at a time, but pass parallelism.
+.NOTPARALLEL:
+
+#=============================================================================
+# Special targets provided by cmake.
+
+# Disable implicit rules so canonical targets will work.
+.SUFFIXES:
+
+# Disable VCS-based implicit rules.
+% : %,v
+
+# Disable VCS-based implicit rules.
+% : RCS/%
+
+# Disable VCS-based implicit rules.
+% : RCS/%,v
+
+# Disable VCS-based implicit rules.
+% : SCCS/s.%
+
+# Disable VCS-based implicit rules.
+% : s.%
+
+.SUFFIXES: .hpux_make_needs_suffix_list
+
+# Command-line flag to silence nested $(MAKE).
+$(VERBOSE)MAKESILENT = -s
+
+#Suppress display of executed commands.
+$(VERBOSE).SILENT:
+
+# A target that is always out of date.
+cmake_force:
+.PHONY : cmake_force
+
+#=============================================================================
+# Set environment variables for the build.
+
+# The shell in which to execute make rules.
+SHELL = /bin/sh
+
+# The CMake executable.
+CMAKE_COMMAND = /usr/bin/cmake
+
+# The command to remove a file.
+RM = /usr/bin/cmake -E rm -f
+
+# Escaping for special characters.
+EQUALS = =
+
+# The top-level source directory on which CMake was run.
+CMAKE_SOURCE_DIR = /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro
+
+# The top-level build directory on which CMake was run.
+CMAKE_BINARY_DIR = /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro
+
+#=============================================================================
+# Targets provided globally by CMake.
+
+# Special rule for the target edit_cache
+edit_cache:
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "No interactive CMake dialog available..."
+ /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
+.PHONY : edit_cache
+
+# Special rule for the target edit_cache
+edit_cache/fast: edit_cache
+.PHONY : edit_cache/fast
+
+# Special rule for the target rebuild_cache
+rebuild_cache:
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
+ /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
+.PHONY : rebuild_cache
+
+# Special rule for the target rebuild_cache
+rebuild_cache/fast: rebuild_cache
+.PHONY : rebuild_cache/fast
+
+# Special rule for the target list_install_components
+list_install_components:
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\""
+.PHONY : list_install_components
+
+# Special rule for the target list_install_components
+list_install_components/fast: list_install_components
+.PHONY : list_install_components/fast
+
+# Special rule for the target install
+install: preinstall
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
+ /usr/bin/cmake -P cmake_install.cmake
+.PHONY : install
+
+# Special rule for the target install
+install/fast: preinstall/fast
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
+ /usr/bin/cmake -P cmake_install.cmake
+.PHONY : install/fast
+
+# Special rule for the target install/local
+install/local: preinstall
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
+ /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
+.PHONY : install/local
+
+# Special rule for the target install/local
+install/local/fast: preinstall/fast
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
+ /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
+.PHONY : install/local/fast
+
+# Special rule for the target install/strip
+install/strip: preinstall
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
+ /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
+.PHONY : install/strip
+
+# Special rule for the target install/strip
+install/strip/fast: preinstall/fast
+ @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
+ /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
+.PHONY : install/strip/fast
+
+# The main all target
+all: cmake_check_build_system
+ cd /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro && $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern//CMakeFiles/progress.marks
+ cd /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles 0
+.PHONY : all
+
+# The main clean target
+clean:
+ cd /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/clean
+.PHONY : clean
+
+# The main clean target
+clean/fast: clean
+.PHONY : clean/fast
+
+# Prepare targets for installation.
+preinstall: all
+ cd /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/preinstall
+.PHONY : preinstall
+
+# Prepare targets for installation.
+preinstall/fast:
+ cd /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/preinstall
+.PHONY : preinstall/fast
+
+# clear depends
+depend:
+ cd /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro && $(CMAKE_COMMAND) -P /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/VerifyGlobs.cmake
+ cd /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
+.PHONY : depend
+
+# Help Target
+help:
+ @echo "The following are some of the valid targets for this Makefile:"
+ @echo "... all (the default if no target is provided)"
+ @echo "... clean"
+ @echo "... depend"
+ @echo "... edit_cache"
+ @echo "... install"
+ @echo "... install/local"
+ @echo "... install/strip"
+ @echo "... list_install_components"
+ @echo "... rebuild_cache"
+.PHONY : help
+
+
+
+#=============================================================================
+# Special targets to cleanup operation of make.
+
+# Special rule to run CMake to check the build system integrity.
+# No rule that depends on this can have commands that come from listfiles
+# because they might be regenerated.
+cmake_check_build_system:
+ cd /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro && $(CMAKE_COMMAND) -P /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/CMakeFiles/VerifyGlobs.cmake
+ cd /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
+.PHONY : cmake_check_build_system
+
diff --git a/gdlibretro/extern/cmake_install.cmake b/gdlibretro/extern/cmake_install.cmake
new file mode 100644
index 0000000..c03e9e6
--- /dev/null
+++ b/gdlibretro/extern/cmake_install.cmake
@@ -0,0 +1,54 @@
+# Install script for directory: /home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern
+
+# 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 "1")
+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/objdump")
+endif()
+
+if(NOT CMAKE_INSTALL_LOCAL_ONLY)
+ # Include the install script for the subdirectory.
+ include("/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/godot-cpp/cmake_install.cmake")
+endif()
+
+if(NOT CMAKE_INSTALL_LOCAL_ONLY)
+ # Include the install script for the subdirectory.
+ include("/home/jay/gits/RetroQUEST/RetroQUEST/gdlibretro/extern/yaml-cpp/cmake_install.cmake")
+endif()
+
diff --git a/gdlibretro/extern/libretro-common/.gitignore b/gdlibretro/extern/libretro-common/.gitignore
new file mode 100644
index 0000000..4e88cc3
--- /dev/null
+++ b/gdlibretro/extern/libretro-common/.gitignore
@@ -0,0 +1,6 @@
+glsm/
+*.[od]
+*.dll
+*.so
+*.dylib
+*.exe
diff --git a/gdlibretro/extern/libretro-common/Makefile.test b/gdlibretro/extern/libretro-common/Makefile.test
new file mode 100644
index 0000000..4e1deed
--- /dev/null
+++ b/gdlibretro/extern/libretro-common/Makefile.test
@@ -0,0 +1,58 @@
+
+OBJDIR = ../obj-unix
+
+TEST_UNIT_CFLAGS = $(CFLAGS) -Iinclude $(LDFLAGS) -lcheck $(LIBCHECK_CFLAGS) -Werror -Wdeclaration-after-statement -fsanitize=address -fsanitize=undefined -ftest-coverage -fprofile-arcs -ggdb
+
+TEST_GENERIC_QUEUE = test/queues/test_generic_queue
+TEST_GENERIC_QUEUE_SRC = test/queues/test_generic_queue.c queues/generic_queue.c
+
+TEST_LINKED_LIST = test/lists/test_linked_list
+TEST_LINKED_LIST_SRC = test/lists/test_linked_list.c lists/linked_list.c
+
+TEST_STDSTRING = test/string/test_stdstring
+TEST_STDSTRING_SRC = test/string/test_stdstring.c string/stdstring.c encodings/encoding_utf.c \
+ compat/compat_strl.c
+
+TEST_UTILS = test/utils/test_utils
+TEST_UTILS_SRC = test/utils/test_utils.c utils/md5.c encodings/encoding_crc32.c \
+ streams/file_stream.c vfs/vfs_implementation.c file/file_path.c \
+ compat/compat_strl.c time/rtime.c string/stdstring.c encodings/encoding_utf.c
+
+TEST_HASH = test/hash/test_hash
+TEST_HASH_SRC = test/hash/test_hash.c hash/lrc_hash.c \
+ streams/file_stream.c vfs/vfs_implementation.c file/file_path.c \
+ compat/compat_strl.c time/rtime.c string/stdstring.c encodings/encoding_utf.c
+
+all:
+ # Build and execute tests in order, to avoid coverage file collision
+ # string
+ $(CC) $(TEST_UNIT_CFLAGS) $(TEST_STDSTRING_SRC) -o $(TEST_STDSTRING)
+ $(TEST_STDSTRING)
+ lcov -c -d . -o `dirname $(TEST_STDSTRING)`/coverage.info
+ # utils
+ $(CC) $(TEST_UNIT_CFLAGS) $(TEST_UTILS_SRC) -o $(TEST_UTILS)
+ $(TEST_UTILS)
+ lcov -c -d . -o `dirname $(TEST_UTILS)`/coverage.info
+ # utils
+ $(CC) $(TEST_UNIT_CFLAGS) $(TEST_HASH_SRC) -o $(TEST_HASH)
+ $(TEST_HASH)
+ lcov -c -d . -o `dirname $(TEST_HASH)`/coverage.info
+ # list
+ $(CC) $(TEST_UNIT_CFLAGS) $(TEST_LINKED_LIST_SRC) -o $(TEST_LINKED_LIST)
+ $(TEST_LINKED_LIST)
+ lcov -c -d . -o `dirname $(TEST_LINKED_LIST)`/coverage.info
+ # queue
+ $(CC) $(TEST_UNIT_CFLAGS) $(TEST_GENERIC_QUEUE_SRC) -o $(TEST_GENERIC_QUEUE)
+ $(TEST_GENERIC_QUEUE)
+ lcov -c -d . -o `dirname $(TEST_GENERIC_QUEUE)`/coverage.info
+
+ lcov -o test/coverage.info \
+ -a test/utils/coverage.info \
+ -a test/string/coverage.info \
+ -a test/lists/coverage.info \
+ -a test/queues/coverage.info
+ genhtml -o test/coverage/ test/coverage.info
+
+clean:
+ rm -f *.gcda *.gcno
+
diff --git a/gdlibretro/extern/libretro-common/audio/audio_mix.c b/gdlibretro/extern/libretro-common/audio/audio_mix.c
new file mode 100644
index 0000000..eb138ed
--- /dev/null
+++ b/gdlibretro/extern/libretro-common/audio/audio_mix.c
@@ -0,0 +1,377 @@
+/* Copyright (C) 2010-2020 The RetroArch team
+ *
+ * ---------------------------------------------------------------------------------------
+ * The following license statement only applies to this file (audio_mix.c).
+ * ---------------------------------------------------------------------------------------
+ *
+ * Permission is hereby granted, free of charge,
+ * to any person obtaining a copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation the rights to
+ * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
+ * and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
+ * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+ * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+ * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ */
+
+#include
+#include
+#include
+
+#include
+
+#if defined(__SSE2__)
+#include
+#elif defined(__ALTIVEC__)
+#include
+#endif
+
+#include
+#include