add QCodeEditor
This commit is contained in:
parent
bccee9bd36
commit
2f3069a388
316 changed files with 98016 additions and 0 deletions
69
external/QCodeEditor/example/.qt/QtDeploySupport.cmake
vendored
Normal file
69
external/QCodeEditor/example/.qt/QtDeploySupport.cmake
vendored
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
cmake_minimum_required(VERSION 3.16...3.21)
|
||||
|
||||
# These are part of the public API. Projects should use them to provide a
|
||||
# consistent set of prefix-relative destinations.
|
||||
if(NOT QT_DEPLOY_BIN_DIR)
|
||||
set(QT_DEPLOY_BIN_DIR "bin")
|
||||
endif()
|
||||
if(NOT QT_DEPLOY_LIBEXEC_DIR)
|
||||
set(QT_DEPLOY_LIBEXEC_DIR "libexec")
|
||||
endif()
|
||||
if(NOT QT_DEPLOY_LIB_DIR)
|
||||
set(QT_DEPLOY_LIB_DIR "lib")
|
||||
endif()
|
||||
if(NOT QT_DEPLOY_PLUGINS_DIR)
|
||||
set(QT_DEPLOY_PLUGINS_DIR "lib/qt6/plugins")
|
||||
endif()
|
||||
if(NOT QT_DEPLOY_QML_DIR)
|
||||
set(QT_DEPLOY_QML_DIR "lib/qt6/qml")
|
||||
endif()
|
||||
if(NOT QT_DEPLOY_TRANSLATIONS_DIR)
|
||||
set(QT_DEPLOY_TRANSLATIONS_DIR "share/qt6/translations")
|
||||
endif()
|
||||
if(NOT QT_DEPLOY_PREFIX)
|
||||
set(QT_DEPLOY_PREFIX "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}")
|
||||
endif()
|
||||
if(QT_DEPLOY_PREFIX STREQUAL "")
|
||||
set(QT_DEPLOY_PREFIX .)
|
||||
endif()
|
||||
if(NOT QT_DEPLOY_IGNORED_LIB_DIRS)
|
||||
set(QT_DEPLOY_IGNORED_LIB_DIRS "/lib")
|
||||
endif()
|
||||
|
||||
# These are internal implementation details. They may be removed at any time.
|
||||
set(__QT_DEPLOY_SYSTEM_NAME "Linux")
|
||||
set(__QT_DEPLOY_IS_SHARED_LIBS_BUILD "ON")
|
||||
set(__QT_DEPLOY_TOOL "GRD")
|
||||
set(__QT_DEPLOY_IMPL_DIR "/home/philipp/programing/QCodeEditor/example/.qt")
|
||||
set(__QT_DEPLOY_VERBOSE "")
|
||||
set(__QT_CMAKE_EXPORT_NAMESPACE "Qt6")
|
||||
set(__QT_DEPLOY_GENERATOR_IS_MULTI_CONFIG "0")
|
||||
set(__QT_DEPLOY_ACTIVE_CONFIG "")
|
||||
set(__QT_NO_CREATE_VERSIONLESS_FUNCTIONS "")
|
||||
set(__QT_DEFAULT_MAJOR_VERSION "6")
|
||||
set(__QT_DEPLOY_QT_ADDITIONAL_PACKAGES_PREFIX_PATH "")
|
||||
set(__QT_DEPLOY_QT_INSTALL_PREFIX "/usr")
|
||||
set(__QT_DEPLOY_QT_INSTALL_BINS "lib/qt6/bin")
|
||||
set(__QT_DEPLOY_QT_INSTALL_DATA "share/qt6")
|
||||
set(__QT_DEPLOY_QT_INSTALL_LIBEXECS "lib/qt6")
|
||||
set(__QT_DEPLOY_QT_INSTALL_PLUGINS "lib/qt6/plugins")
|
||||
set(__QT_DEPLOY_QT_INSTALL_TRANSLATIONS "share/qt6/translations")
|
||||
set(__QT_DEPLOY_TARGET_QT_PATHS_PATH "/usr/lib/qt6/bin/qtpaths6")
|
||||
set(__QT_DEPLOY_PLUGINS "")
|
||||
set(__QT_DEPLOY_MUST_ADJUST_PLUGINS_RPATH "ON")
|
||||
set(__QT_DEPLOY_USE_PATCHELF "")
|
||||
set(__QT_DEPLOY_PATCHELF_EXECUTABLE "")
|
||||
set(__QT_DEPLOY_QT_IS_MULTI_CONFIG_BUILD_WITH_DEBUG "FALSE")
|
||||
set(__QT_DEPLOY_QT_DEBUG_POSTFIX "")
|
||||
|
||||
# Define the CMake commands to be made available during deployment.
|
||||
set(__qt_deploy_support_files
|
||||
"/home/philipp/programing/QCodeEditor/example/.qt/QtDeployTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreDeploySupport.cmake"
|
||||
)
|
||||
foreach(__qt_deploy_support_file IN LISTS __qt_deploy_support_files)
|
||||
include("${__qt_deploy_support_file}")
|
||||
endforeach()
|
||||
|
||||
unset(__qt_deploy_support_file)
|
||||
unset(__qt_deploy_support_files)
|
||||
2
external/QCodeEditor/example/.qt/QtDeployTargets.cmake
vendored
Normal file
2
external/QCodeEditor/example/.qt/QtDeployTargets.cmake
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
set(__QT_DEPLOY_TARGET_QCodeEditor_FILE /home/philipp/programing/QCodeEditor/example/libQCodeEditor.a)
|
||||
set(__QT_DEPLOY_TARGET_QCodeEditor_TYPE STATIC_LIBRARY)
|
||||
29
external/QCodeEditor/example/CMakeLists.txt
vendored
Normal file
29
external/QCodeEditor/example/CMakeLists.txt
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
cmake_minimum_required(VERSION 3.6)
|
||||
project(QCodeEditorExample)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
|
||||
set(CMAKE_AUTOMOC On)
|
||||
set(CMAKE_AUTORCC ON)
|
||||
|
||||
find_package(Qt6Core CONFIG REQUIRED)
|
||||
find_package(Qt6Widgets CONFIG REQUIRED)
|
||||
find_package(Qt6Gui CONFIG REQUIRED)
|
||||
|
||||
add_executable(QCodeEditorExample
|
||||
resources/demo_resources.qrc
|
||||
src/main.cpp
|
||||
src/MainWindow.cpp
|
||||
include/MainWindow.hpp
|
||||
)
|
||||
|
||||
target_include_directories(QCodeEditorExample PUBLIC
|
||||
include
|
||||
)
|
||||
|
||||
target_link_libraries(QCodeEditorExample
|
||||
Qt::Core
|
||||
Qt::Widgets
|
||||
Qt::Gui
|
||||
QCodeEditor
|
||||
)
|
||||
641
external/QCodeEditor/example/Makefile
vendored
Normal file
641
external/QCodeEditor/example/Makefile
vendored
Normal file
|
|
@ -0,0 +1,641 @@
|
|||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||
|
||||
# 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/philipp/programing/QCodeEditor
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/philipp/programing/QCodeEditor/example
|
||||
|
||||
#=============================================================================
|
||||
# Targets provided globally by CMake.
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..."
|
||||
/usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : edit_cache
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache/fast: edit_cache
|
||||
.PHONY : edit_cache/fast
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
|
||||
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : rebuild_cache
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache/fast: rebuild_cache
|
||||
.PHONY : rebuild_cache/fast
|
||||
|
||||
# The main all target
|
||||
all: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/philipp/programing/QCodeEditor/example/CMakeFiles /home/philipp/programing/QCodeEditor/example//CMakeFiles/progress.marks
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/philipp/programing/QCodeEditor/example/CMakeFiles 0
|
||||
.PHONY : all
|
||||
|
||||
# The main clean target
|
||||
clean:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean
|
||||
.PHONY : clean
|
||||
|
||||
# The main clean target
|
||||
clean/fast: clean
|
||||
.PHONY : clean/fast
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall: all
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
|
||||
.PHONY : preinstall
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall/fast:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
|
||||
.PHONY : preinstall/fast
|
||||
|
||||
# clear depends
|
||||
depend:
|
||||
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||
.PHONY : depend
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for targets named QCodeEditor
|
||||
|
||||
# Build rule for target.
|
||||
QCodeEditor: cmake_check_build_system
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QCodeEditor
|
||||
.PHONY : QCodeEditor
|
||||
|
||||
# fast build rule for target.
|
||||
QCodeEditor/fast:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/build
|
||||
.PHONY : QCodeEditor/fast
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for targets named QCodeEditor_autogen_timestamp_deps
|
||||
|
||||
# Build rule for target.
|
||||
QCodeEditor_autogen_timestamp_deps: cmake_check_build_system
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QCodeEditor_autogen_timestamp_deps
|
||||
.PHONY : QCodeEditor_autogen_timestamp_deps
|
||||
|
||||
# fast build rule for target.
|
||||
QCodeEditor_autogen_timestamp_deps/fast:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor_autogen_timestamp_deps.dir/build.make CMakeFiles/QCodeEditor_autogen_timestamp_deps.dir/build
|
||||
.PHONY : QCodeEditor_autogen_timestamp_deps/fast
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for targets named QCodeEditor_autogen
|
||||
|
||||
# Build rule for target.
|
||||
QCodeEditor_autogen: cmake_check_build_system
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QCodeEditor_autogen
|
||||
.PHONY : QCodeEditor_autogen
|
||||
|
||||
# fast build rule for target.
|
||||
QCodeEditor_autogen/fast:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor_autogen.dir/build.make CMakeFiles/QCodeEditor_autogen.dir/build
|
||||
.PHONY : QCodeEditor_autogen/fast
|
||||
|
||||
QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.o: QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.cpp.o
|
||||
.PHONY : QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.o
|
||||
|
||||
# target to build an object file
|
||||
QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.cpp.o
|
||||
.PHONY : QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.cpp.o
|
||||
|
||||
QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.i: QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.cpp.i
|
||||
.PHONY : QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.i
|
||||
|
||||
# target to preprocess a source file
|
||||
QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.cpp.i
|
||||
.PHONY : QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.cpp.i
|
||||
|
||||
QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.s: QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.cpp.s
|
||||
.PHONY : QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.cpp.s
|
||||
.PHONY : QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.cpp.s
|
||||
|
||||
QCodeEditor_autogen/mocs_compilation.o: QCodeEditor_autogen/mocs_compilation.cpp.o
|
||||
.PHONY : QCodeEditor_autogen/mocs_compilation.o
|
||||
|
||||
# target to build an object file
|
||||
QCodeEditor_autogen/mocs_compilation.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/QCodeEditor_autogen/mocs_compilation.cpp.o
|
||||
.PHONY : QCodeEditor_autogen/mocs_compilation.cpp.o
|
||||
|
||||
QCodeEditor_autogen/mocs_compilation.i: QCodeEditor_autogen/mocs_compilation.cpp.i
|
||||
.PHONY : QCodeEditor_autogen/mocs_compilation.i
|
||||
|
||||
# target to preprocess a source file
|
||||
QCodeEditor_autogen/mocs_compilation.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/QCodeEditor_autogen/mocs_compilation.cpp.i
|
||||
.PHONY : QCodeEditor_autogen/mocs_compilation.cpp.i
|
||||
|
||||
QCodeEditor_autogen/mocs_compilation.s: QCodeEditor_autogen/mocs_compilation.cpp.s
|
||||
.PHONY : QCodeEditor_autogen/mocs_compilation.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
QCodeEditor_autogen/mocs_compilation.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/QCodeEditor_autogen/mocs_compilation.cpp.s
|
||||
.PHONY : QCodeEditor_autogen/mocs_compilation.cpp.s
|
||||
|
||||
src/internal/QCXXHighlighter.o: src/internal/QCXXHighlighter.cpp.o
|
||||
.PHONY : src/internal/QCXXHighlighter.o
|
||||
|
||||
# target to build an object file
|
||||
src/internal/QCXXHighlighter.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QCXXHighlighter.cpp.o
|
||||
.PHONY : src/internal/QCXXHighlighter.cpp.o
|
||||
|
||||
src/internal/QCXXHighlighter.i: src/internal/QCXXHighlighter.cpp.i
|
||||
.PHONY : src/internal/QCXXHighlighter.i
|
||||
|
||||
# target to preprocess a source file
|
||||
src/internal/QCXXHighlighter.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QCXXHighlighter.cpp.i
|
||||
.PHONY : src/internal/QCXXHighlighter.cpp.i
|
||||
|
||||
src/internal/QCXXHighlighter.s: src/internal/QCXXHighlighter.cpp.s
|
||||
.PHONY : src/internal/QCXXHighlighter.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
src/internal/QCXXHighlighter.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QCXXHighlighter.cpp.s
|
||||
.PHONY : src/internal/QCXXHighlighter.cpp.s
|
||||
|
||||
src/internal/QCodeEditor.o: src/internal/QCodeEditor.cpp.o
|
||||
.PHONY : src/internal/QCodeEditor.o
|
||||
|
||||
# target to build an object file
|
||||
src/internal/QCodeEditor.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QCodeEditor.cpp.o
|
||||
.PHONY : src/internal/QCodeEditor.cpp.o
|
||||
|
||||
src/internal/QCodeEditor.i: src/internal/QCodeEditor.cpp.i
|
||||
.PHONY : src/internal/QCodeEditor.i
|
||||
|
||||
# target to preprocess a source file
|
||||
src/internal/QCodeEditor.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QCodeEditor.cpp.i
|
||||
.PHONY : src/internal/QCodeEditor.cpp.i
|
||||
|
||||
src/internal/QCodeEditor.s: src/internal/QCodeEditor.cpp.s
|
||||
.PHONY : src/internal/QCodeEditor.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
src/internal/QCodeEditor.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QCodeEditor.cpp.s
|
||||
.PHONY : src/internal/QCodeEditor.cpp.s
|
||||
|
||||
src/internal/QFramedTextAttribute.o: src/internal/QFramedTextAttribute.cpp.o
|
||||
.PHONY : src/internal/QFramedTextAttribute.o
|
||||
|
||||
# target to build an object file
|
||||
src/internal/QFramedTextAttribute.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QFramedTextAttribute.cpp.o
|
||||
.PHONY : src/internal/QFramedTextAttribute.cpp.o
|
||||
|
||||
src/internal/QFramedTextAttribute.i: src/internal/QFramedTextAttribute.cpp.i
|
||||
.PHONY : src/internal/QFramedTextAttribute.i
|
||||
|
||||
# target to preprocess a source file
|
||||
src/internal/QFramedTextAttribute.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QFramedTextAttribute.cpp.i
|
||||
.PHONY : src/internal/QFramedTextAttribute.cpp.i
|
||||
|
||||
src/internal/QFramedTextAttribute.s: src/internal/QFramedTextAttribute.cpp.s
|
||||
.PHONY : src/internal/QFramedTextAttribute.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
src/internal/QFramedTextAttribute.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QFramedTextAttribute.cpp.s
|
||||
.PHONY : src/internal/QFramedTextAttribute.cpp.s
|
||||
|
||||
src/internal/QGLSLCompleter.o: src/internal/QGLSLCompleter.cpp.o
|
||||
.PHONY : src/internal/QGLSLCompleter.o
|
||||
|
||||
# target to build an object file
|
||||
src/internal/QGLSLCompleter.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QGLSLCompleter.cpp.o
|
||||
.PHONY : src/internal/QGLSLCompleter.cpp.o
|
||||
|
||||
src/internal/QGLSLCompleter.i: src/internal/QGLSLCompleter.cpp.i
|
||||
.PHONY : src/internal/QGLSLCompleter.i
|
||||
|
||||
# target to preprocess a source file
|
||||
src/internal/QGLSLCompleter.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QGLSLCompleter.cpp.i
|
||||
.PHONY : src/internal/QGLSLCompleter.cpp.i
|
||||
|
||||
src/internal/QGLSLCompleter.s: src/internal/QGLSLCompleter.cpp.s
|
||||
.PHONY : src/internal/QGLSLCompleter.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
src/internal/QGLSLCompleter.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QGLSLCompleter.cpp.s
|
||||
.PHONY : src/internal/QGLSLCompleter.cpp.s
|
||||
|
||||
src/internal/QGLSLHighlighter.o: src/internal/QGLSLHighlighter.cpp.o
|
||||
.PHONY : src/internal/QGLSLHighlighter.o
|
||||
|
||||
# target to build an object file
|
||||
src/internal/QGLSLHighlighter.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QGLSLHighlighter.cpp.o
|
||||
.PHONY : src/internal/QGLSLHighlighter.cpp.o
|
||||
|
||||
src/internal/QGLSLHighlighter.i: src/internal/QGLSLHighlighter.cpp.i
|
||||
.PHONY : src/internal/QGLSLHighlighter.i
|
||||
|
||||
# target to preprocess a source file
|
||||
src/internal/QGLSLHighlighter.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QGLSLHighlighter.cpp.i
|
||||
.PHONY : src/internal/QGLSLHighlighter.cpp.i
|
||||
|
||||
src/internal/QGLSLHighlighter.s: src/internal/QGLSLHighlighter.cpp.s
|
||||
.PHONY : src/internal/QGLSLHighlighter.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
src/internal/QGLSLHighlighter.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QGLSLHighlighter.cpp.s
|
||||
.PHONY : src/internal/QGLSLHighlighter.cpp.s
|
||||
|
||||
src/internal/QJSONHighlighter.o: src/internal/QJSONHighlighter.cpp.o
|
||||
.PHONY : src/internal/QJSONHighlighter.o
|
||||
|
||||
# target to build an object file
|
||||
src/internal/QJSONHighlighter.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QJSONHighlighter.cpp.o
|
||||
.PHONY : src/internal/QJSONHighlighter.cpp.o
|
||||
|
||||
src/internal/QJSONHighlighter.i: src/internal/QJSONHighlighter.cpp.i
|
||||
.PHONY : src/internal/QJSONHighlighter.i
|
||||
|
||||
# target to preprocess a source file
|
||||
src/internal/QJSONHighlighter.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QJSONHighlighter.cpp.i
|
||||
.PHONY : src/internal/QJSONHighlighter.cpp.i
|
||||
|
||||
src/internal/QJSONHighlighter.s: src/internal/QJSONHighlighter.cpp.s
|
||||
.PHONY : src/internal/QJSONHighlighter.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
src/internal/QJSONHighlighter.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QJSONHighlighter.cpp.s
|
||||
.PHONY : src/internal/QJSONHighlighter.cpp.s
|
||||
|
||||
src/internal/QLanguage.o: src/internal/QLanguage.cpp.o
|
||||
.PHONY : src/internal/QLanguage.o
|
||||
|
||||
# target to build an object file
|
||||
src/internal/QLanguage.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QLanguage.cpp.o
|
||||
.PHONY : src/internal/QLanguage.cpp.o
|
||||
|
||||
src/internal/QLanguage.i: src/internal/QLanguage.cpp.i
|
||||
.PHONY : src/internal/QLanguage.i
|
||||
|
||||
# target to preprocess a source file
|
||||
src/internal/QLanguage.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QLanguage.cpp.i
|
||||
.PHONY : src/internal/QLanguage.cpp.i
|
||||
|
||||
src/internal/QLanguage.s: src/internal/QLanguage.cpp.s
|
||||
.PHONY : src/internal/QLanguage.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
src/internal/QLanguage.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QLanguage.cpp.s
|
||||
.PHONY : src/internal/QLanguage.cpp.s
|
||||
|
||||
src/internal/QLineNumberArea.o: src/internal/QLineNumberArea.cpp.o
|
||||
.PHONY : src/internal/QLineNumberArea.o
|
||||
|
||||
# target to build an object file
|
||||
src/internal/QLineNumberArea.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QLineNumberArea.cpp.o
|
||||
.PHONY : src/internal/QLineNumberArea.cpp.o
|
||||
|
||||
src/internal/QLineNumberArea.i: src/internal/QLineNumberArea.cpp.i
|
||||
.PHONY : src/internal/QLineNumberArea.i
|
||||
|
||||
# target to preprocess a source file
|
||||
src/internal/QLineNumberArea.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QLineNumberArea.cpp.i
|
||||
.PHONY : src/internal/QLineNumberArea.cpp.i
|
||||
|
||||
src/internal/QLineNumberArea.s: src/internal/QLineNumberArea.cpp.s
|
||||
.PHONY : src/internal/QLineNumberArea.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
src/internal/QLineNumberArea.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QLineNumberArea.cpp.s
|
||||
.PHONY : src/internal/QLineNumberArea.cpp.s
|
||||
|
||||
src/internal/QLuaCompleter.o: src/internal/QLuaCompleter.cpp.o
|
||||
.PHONY : src/internal/QLuaCompleter.o
|
||||
|
||||
# target to build an object file
|
||||
src/internal/QLuaCompleter.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QLuaCompleter.cpp.o
|
||||
.PHONY : src/internal/QLuaCompleter.cpp.o
|
||||
|
||||
src/internal/QLuaCompleter.i: src/internal/QLuaCompleter.cpp.i
|
||||
.PHONY : src/internal/QLuaCompleter.i
|
||||
|
||||
# target to preprocess a source file
|
||||
src/internal/QLuaCompleter.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QLuaCompleter.cpp.i
|
||||
.PHONY : src/internal/QLuaCompleter.cpp.i
|
||||
|
||||
src/internal/QLuaCompleter.s: src/internal/QLuaCompleter.cpp.s
|
||||
.PHONY : src/internal/QLuaCompleter.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
src/internal/QLuaCompleter.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QLuaCompleter.cpp.s
|
||||
.PHONY : src/internal/QLuaCompleter.cpp.s
|
||||
|
||||
src/internal/QLuaHighlighter.o: src/internal/QLuaHighlighter.cpp.o
|
||||
.PHONY : src/internal/QLuaHighlighter.o
|
||||
|
||||
# target to build an object file
|
||||
src/internal/QLuaHighlighter.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QLuaHighlighter.cpp.o
|
||||
.PHONY : src/internal/QLuaHighlighter.cpp.o
|
||||
|
||||
src/internal/QLuaHighlighter.i: src/internal/QLuaHighlighter.cpp.i
|
||||
.PHONY : src/internal/QLuaHighlighter.i
|
||||
|
||||
# target to preprocess a source file
|
||||
src/internal/QLuaHighlighter.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QLuaHighlighter.cpp.i
|
||||
.PHONY : src/internal/QLuaHighlighter.cpp.i
|
||||
|
||||
src/internal/QLuaHighlighter.s: src/internal/QLuaHighlighter.cpp.s
|
||||
.PHONY : src/internal/QLuaHighlighter.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
src/internal/QLuaHighlighter.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QLuaHighlighter.cpp.s
|
||||
.PHONY : src/internal/QLuaHighlighter.cpp.s
|
||||
|
||||
src/internal/QPythonCompleter.o: src/internal/QPythonCompleter.cpp.o
|
||||
.PHONY : src/internal/QPythonCompleter.o
|
||||
|
||||
# target to build an object file
|
||||
src/internal/QPythonCompleter.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QPythonCompleter.cpp.o
|
||||
.PHONY : src/internal/QPythonCompleter.cpp.o
|
||||
|
||||
src/internal/QPythonCompleter.i: src/internal/QPythonCompleter.cpp.i
|
||||
.PHONY : src/internal/QPythonCompleter.i
|
||||
|
||||
# target to preprocess a source file
|
||||
src/internal/QPythonCompleter.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QPythonCompleter.cpp.i
|
||||
.PHONY : src/internal/QPythonCompleter.cpp.i
|
||||
|
||||
src/internal/QPythonCompleter.s: src/internal/QPythonCompleter.cpp.s
|
||||
.PHONY : src/internal/QPythonCompleter.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
src/internal/QPythonCompleter.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QPythonCompleter.cpp.s
|
||||
.PHONY : src/internal/QPythonCompleter.cpp.s
|
||||
|
||||
src/internal/QPythonHighlighter.o: src/internal/QPythonHighlighter.cpp.o
|
||||
.PHONY : src/internal/QPythonHighlighter.o
|
||||
|
||||
# target to build an object file
|
||||
src/internal/QPythonHighlighter.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QPythonHighlighter.cpp.o
|
||||
.PHONY : src/internal/QPythonHighlighter.cpp.o
|
||||
|
||||
src/internal/QPythonHighlighter.i: src/internal/QPythonHighlighter.cpp.i
|
||||
.PHONY : src/internal/QPythonHighlighter.i
|
||||
|
||||
# target to preprocess a source file
|
||||
src/internal/QPythonHighlighter.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QPythonHighlighter.cpp.i
|
||||
.PHONY : src/internal/QPythonHighlighter.cpp.i
|
||||
|
||||
src/internal/QPythonHighlighter.s: src/internal/QPythonHighlighter.cpp.s
|
||||
.PHONY : src/internal/QPythonHighlighter.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
src/internal/QPythonHighlighter.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QPythonHighlighter.cpp.s
|
||||
.PHONY : src/internal/QPythonHighlighter.cpp.s
|
||||
|
||||
src/internal/QStyleSyntaxHighlighter.o: src/internal/QStyleSyntaxHighlighter.cpp.o
|
||||
.PHONY : src/internal/QStyleSyntaxHighlighter.o
|
||||
|
||||
# target to build an object file
|
||||
src/internal/QStyleSyntaxHighlighter.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QStyleSyntaxHighlighter.cpp.o
|
||||
.PHONY : src/internal/QStyleSyntaxHighlighter.cpp.o
|
||||
|
||||
src/internal/QStyleSyntaxHighlighter.i: src/internal/QStyleSyntaxHighlighter.cpp.i
|
||||
.PHONY : src/internal/QStyleSyntaxHighlighter.i
|
||||
|
||||
# target to preprocess a source file
|
||||
src/internal/QStyleSyntaxHighlighter.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QStyleSyntaxHighlighter.cpp.i
|
||||
.PHONY : src/internal/QStyleSyntaxHighlighter.cpp.i
|
||||
|
||||
src/internal/QStyleSyntaxHighlighter.s: src/internal/QStyleSyntaxHighlighter.cpp.s
|
||||
.PHONY : src/internal/QStyleSyntaxHighlighter.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
src/internal/QStyleSyntaxHighlighter.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QStyleSyntaxHighlighter.cpp.s
|
||||
.PHONY : src/internal/QStyleSyntaxHighlighter.cpp.s
|
||||
|
||||
src/internal/QSyntaxStyle.o: src/internal/QSyntaxStyle.cpp.o
|
||||
.PHONY : src/internal/QSyntaxStyle.o
|
||||
|
||||
# target to build an object file
|
||||
src/internal/QSyntaxStyle.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QSyntaxStyle.cpp.o
|
||||
.PHONY : src/internal/QSyntaxStyle.cpp.o
|
||||
|
||||
src/internal/QSyntaxStyle.i: src/internal/QSyntaxStyle.cpp.i
|
||||
.PHONY : src/internal/QSyntaxStyle.i
|
||||
|
||||
# target to preprocess a source file
|
||||
src/internal/QSyntaxStyle.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QSyntaxStyle.cpp.i
|
||||
.PHONY : src/internal/QSyntaxStyle.cpp.i
|
||||
|
||||
src/internal/QSyntaxStyle.s: src/internal/QSyntaxStyle.cpp.s
|
||||
.PHONY : src/internal/QSyntaxStyle.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
src/internal/QSyntaxStyle.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QSyntaxStyle.cpp.s
|
||||
.PHONY : src/internal/QSyntaxStyle.cpp.s
|
||||
|
||||
src/internal/QXMLHighlighter.o: src/internal/QXMLHighlighter.cpp.o
|
||||
.PHONY : src/internal/QXMLHighlighter.o
|
||||
|
||||
# target to build an object file
|
||||
src/internal/QXMLHighlighter.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QXMLHighlighter.cpp.o
|
||||
.PHONY : src/internal/QXMLHighlighter.cpp.o
|
||||
|
||||
src/internal/QXMLHighlighter.i: src/internal/QXMLHighlighter.cpp.i
|
||||
.PHONY : src/internal/QXMLHighlighter.i
|
||||
|
||||
# target to preprocess a source file
|
||||
src/internal/QXMLHighlighter.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QXMLHighlighter.cpp.i
|
||||
.PHONY : src/internal/QXMLHighlighter.cpp.i
|
||||
|
||||
src/internal/QXMLHighlighter.s: src/internal/QXMLHighlighter.cpp.s
|
||||
.PHONY : src/internal/QXMLHighlighter.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
src/internal/QXMLHighlighter.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditor.dir/build.make CMakeFiles/QCodeEditor.dir/src/internal/QXMLHighlighter.cpp.s
|
||||
.PHONY : src/internal/QXMLHighlighter.cpp.s
|
||||
|
||||
# Help Target
|
||||
help:
|
||||
@echo "The following are some of the valid targets for this Makefile:"
|
||||
@echo "... all (the default if no target is provided)"
|
||||
@echo "... clean"
|
||||
@echo "... depend"
|
||||
@echo "... edit_cache"
|
||||
@echo "... rebuild_cache"
|
||||
@echo "... QCodeEditor_autogen"
|
||||
@echo "... QCodeEditor_autogen_timestamp_deps"
|
||||
@echo "... QCodeEditor"
|
||||
@echo "... QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.o"
|
||||
@echo "... QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.i"
|
||||
@echo "... QCodeEditor_autogen/3YJK5W5UP7/qrc_qcodeeditor_resources.s"
|
||||
@echo "... QCodeEditor_autogen/mocs_compilation.o"
|
||||
@echo "... QCodeEditor_autogen/mocs_compilation.i"
|
||||
@echo "... QCodeEditor_autogen/mocs_compilation.s"
|
||||
@echo "... src/internal/QCXXHighlighter.o"
|
||||
@echo "... src/internal/QCXXHighlighter.i"
|
||||
@echo "... src/internal/QCXXHighlighter.s"
|
||||
@echo "... src/internal/QCodeEditor.o"
|
||||
@echo "... src/internal/QCodeEditor.i"
|
||||
@echo "... src/internal/QCodeEditor.s"
|
||||
@echo "... src/internal/QFramedTextAttribute.o"
|
||||
@echo "... src/internal/QFramedTextAttribute.i"
|
||||
@echo "... src/internal/QFramedTextAttribute.s"
|
||||
@echo "... src/internal/QGLSLCompleter.o"
|
||||
@echo "... src/internal/QGLSLCompleter.i"
|
||||
@echo "... src/internal/QGLSLCompleter.s"
|
||||
@echo "... src/internal/QGLSLHighlighter.o"
|
||||
@echo "... src/internal/QGLSLHighlighter.i"
|
||||
@echo "... src/internal/QGLSLHighlighter.s"
|
||||
@echo "... src/internal/QJSONHighlighter.o"
|
||||
@echo "... src/internal/QJSONHighlighter.i"
|
||||
@echo "... src/internal/QJSONHighlighter.s"
|
||||
@echo "... src/internal/QLanguage.o"
|
||||
@echo "... src/internal/QLanguage.i"
|
||||
@echo "... src/internal/QLanguage.s"
|
||||
@echo "... src/internal/QLineNumberArea.o"
|
||||
@echo "... src/internal/QLineNumberArea.i"
|
||||
@echo "... src/internal/QLineNumberArea.s"
|
||||
@echo "... src/internal/QLuaCompleter.o"
|
||||
@echo "... src/internal/QLuaCompleter.i"
|
||||
@echo "... src/internal/QLuaCompleter.s"
|
||||
@echo "... src/internal/QLuaHighlighter.o"
|
||||
@echo "... src/internal/QLuaHighlighter.i"
|
||||
@echo "... src/internal/QLuaHighlighter.s"
|
||||
@echo "... src/internal/QPythonCompleter.o"
|
||||
@echo "... src/internal/QPythonCompleter.i"
|
||||
@echo "... src/internal/QPythonCompleter.s"
|
||||
@echo "... src/internal/QPythonHighlighter.o"
|
||||
@echo "... src/internal/QPythonHighlighter.i"
|
||||
@echo "... src/internal/QPythonHighlighter.s"
|
||||
@echo "... src/internal/QStyleSyntaxHighlighter.o"
|
||||
@echo "... src/internal/QStyleSyntaxHighlighter.i"
|
||||
@echo "... src/internal/QStyleSyntaxHighlighter.s"
|
||||
@echo "... src/internal/QSyntaxStyle.o"
|
||||
@echo "... src/internal/QSyntaxStyle.i"
|
||||
@echo "... src/internal/QSyntaxStyle.s"
|
||||
@echo "... src/internal/QXMLHighlighter.o"
|
||||
@echo "... src/internal/QXMLHighlighter.i"
|
||||
@echo "... src/internal/QXMLHighlighter.s"
|
||||
.PHONY : help
|
||||
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
||||
69
external/QCodeEditor/example/build/.qt/QtDeploySupport.cmake
vendored
Normal file
69
external/QCodeEditor/example/build/.qt/QtDeploySupport.cmake
vendored
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
cmake_minimum_required(VERSION 3.16...3.21)
|
||||
|
||||
# These are part of the public API. Projects should use them to provide a
|
||||
# consistent set of prefix-relative destinations.
|
||||
if(NOT QT_DEPLOY_BIN_DIR)
|
||||
set(QT_DEPLOY_BIN_DIR "bin")
|
||||
endif()
|
||||
if(NOT QT_DEPLOY_LIBEXEC_DIR)
|
||||
set(QT_DEPLOY_LIBEXEC_DIR "libexec")
|
||||
endif()
|
||||
if(NOT QT_DEPLOY_LIB_DIR)
|
||||
set(QT_DEPLOY_LIB_DIR "lib")
|
||||
endif()
|
||||
if(NOT QT_DEPLOY_PLUGINS_DIR)
|
||||
set(QT_DEPLOY_PLUGINS_DIR "lib/qt6/plugins")
|
||||
endif()
|
||||
if(NOT QT_DEPLOY_QML_DIR)
|
||||
set(QT_DEPLOY_QML_DIR "lib/qt6/qml")
|
||||
endif()
|
||||
if(NOT QT_DEPLOY_TRANSLATIONS_DIR)
|
||||
set(QT_DEPLOY_TRANSLATIONS_DIR "share/qt6/translations")
|
||||
endif()
|
||||
if(NOT QT_DEPLOY_PREFIX)
|
||||
set(QT_DEPLOY_PREFIX "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}")
|
||||
endif()
|
||||
if(QT_DEPLOY_PREFIX STREQUAL "")
|
||||
set(QT_DEPLOY_PREFIX .)
|
||||
endif()
|
||||
if(NOT QT_DEPLOY_IGNORED_LIB_DIRS)
|
||||
set(QT_DEPLOY_IGNORED_LIB_DIRS "/lib")
|
||||
endif()
|
||||
|
||||
# These are internal implementation details. They may be removed at any time.
|
||||
set(__QT_DEPLOY_SYSTEM_NAME "Linux")
|
||||
set(__QT_DEPLOY_IS_SHARED_LIBS_BUILD "ON")
|
||||
set(__QT_DEPLOY_TOOL "GRD")
|
||||
set(__QT_DEPLOY_IMPL_DIR "/home/philipp/programing/QCodeEditor/example/build/.qt")
|
||||
set(__QT_DEPLOY_VERBOSE "")
|
||||
set(__QT_CMAKE_EXPORT_NAMESPACE "Qt6")
|
||||
set(__QT_DEPLOY_GENERATOR_IS_MULTI_CONFIG "0")
|
||||
set(__QT_DEPLOY_ACTIVE_CONFIG "")
|
||||
set(__QT_NO_CREATE_VERSIONLESS_FUNCTIONS "")
|
||||
set(__QT_DEFAULT_MAJOR_VERSION "6")
|
||||
set(__QT_DEPLOY_QT_ADDITIONAL_PACKAGES_PREFIX_PATH "")
|
||||
set(__QT_DEPLOY_QT_INSTALL_PREFIX "/usr")
|
||||
set(__QT_DEPLOY_QT_INSTALL_BINS "lib/qt6/bin")
|
||||
set(__QT_DEPLOY_QT_INSTALL_DATA "share/qt6")
|
||||
set(__QT_DEPLOY_QT_INSTALL_LIBEXECS "lib/qt6")
|
||||
set(__QT_DEPLOY_QT_INSTALL_PLUGINS "lib/qt6/plugins")
|
||||
set(__QT_DEPLOY_QT_INSTALL_TRANSLATIONS "share/qt6/translations")
|
||||
set(__QT_DEPLOY_TARGET_QT_PATHS_PATH "/usr/lib/qt6/bin/qtpaths6")
|
||||
set(__QT_DEPLOY_PLUGINS "")
|
||||
set(__QT_DEPLOY_MUST_ADJUST_PLUGINS_RPATH "ON")
|
||||
set(__QT_DEPLOY_USE_PATCHELF "")
|
||||
set(__QT_DEPLOY_PATCHELF_EXECUTABLE "")
|
||||
set(__QT_DEPLOY_QT_IS_MULTI_CONFIG_BUILD_WITH_DEBUG "FALSE")
|
||||
set(__QT_DEPLOY_QT_DEBUG_POSTFIX "")
|
||||
|
||||
# Define the CMake commands to be made available during deployment.
|
||||
set(__qt_deploy_support_files
|
||||
"/home/philipp/programing/QCodeEditor/example/build/.qt/QtDeployTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreDeploySupport.cmake"
|
||||
)
|
||||
foreach(__qt_deploy_support_file IN LISTS __qt_deploy_support_files)
|
||||
include("${__qt_deploy_support_file}")
|
||||
endforeach()
|
||||
|
||||
unset(__qt_deploy_support_file)
|
||||
unset(__qt_deploy_support_files)
|
||||
2
external/QCodeEditor/example/build/.qt/QtDeployTargets.cmake
vendored
Normal file
2
external/QCodeEditor/example/build/.qt/QtDeployTargets.cmake
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
set(__QT_DEPLOY_TARGET_QCodeEditorExample_FILE /home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample)
|
||||
set(__QT_DEPLOY_TARGET_QCodeEditorExample_TYPE EXECUTABLE)
|
||||
1466
external/QCodeEditor/example/build/CMakeCache.txt
vendored
Normal file
1466
external/QCodeEditor/example/build/CMakeCache.txt
vendored
Normal file
File diff suppressed because it is too large
Load diff
84
external/QCodeEditor/example/build/CMakeFiles/4.1.2/CMakeCCompiler.cmake
vendored
Normal file
84
external/QCodeEditor/example/build/CMakeFiles/4.1.2/CMakeCCompiler.cmake
vendored
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
set(CMAKE_C_COMPILER "/usr/bin/cc")
|
||||
set(CMAKE_C_COMPILER_ARG1 "")
|
||||
set(CMAKE_C_COMPILER_ID "GNU")
|
||||
set(CMAKE_C_COMPILER_VERSION "15.2.1")
|
||||
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
|
||||
set(CMAKE_C_COMPILER_WRAPPER "")
|
||||
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "23")
|
||||
set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON")
|
||||
set(CMAKE_C_STANDARD_LATEST "23")
|
||||
set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23")
|
||||
set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
|
||||
set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
|
||||
set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
|
||||
set(CMAKE_C17_COMPILE_FEATURES "c_std_17")
|
||||
set(CMAKE_C23_COMPILE_FEATURES "c_std_23")
|
||||
|
||||
set(CMAKE_C_PLATFORM_ID "Linux")
|
||||
set(CMAKE_C_SIMULATE_ID "")
|
||||
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU")
|
||||
set(CMAKE_C_COMPILER_APPLE_SYSROOT "")
|
||||
set(CMAKE_C_SIMULATE_VERSION "")
|
||||
set(CMAKE_C_COMPILER_ARCHITECTURE_ID "x86_64")
|
||||
|
||||
|
||||
|
||||
set(CMAKE_AR "/usr/bin/ar")
|
||||
set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar")
|
||||
set(CMAKE_RANLIB "/usr/bin/ranlib")
|
||||
set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib")
|
||||
set(CMAKE_LINKER "/usr/bin/ld")
|
||||
set(CMAKE_LINKER_LINK "")
|
||||
set(CMAKE_LINKER_LLD "")
|
||||
set(CMAKE_C_COMPILER_LINKER "/usr/bin/ld")
|
||||
set(CMAKE_C_COMPILER_LINKER_ID "GNU")
|
||||
set(CMAKE_C_COMPILER_LINKER_VERSION 2.45.0)
|
||||
set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT GNU)
|
||||
set(CMAKE_MT "")
|
||||
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
|
||||
set(CMAKE_COMPILER_IS_GNUCC 1)
|
||||
set(CMAKE_C_COMPILER_LOADED 1)
|
||||
set(CMAKE_C_COMPILER_WORKS TRUE)
|
||||
set(CMAKE_C_ABI_COMPILED TRUE)
|
||||
|
||||
set(CMAKE_C_COMPILER_ENV_VAR "CC")
|
||||
|
||||
set(CMAKE_C_COMPILER_ID_RUN 1)
|
||||
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
|
||||
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||
set(CMAKE_C_LINKER_PREFERENCE 10)
|
||||
set(CMAKE_C_LINKER_DEPFILE_SUPPORTED TRUE)
|
||||
set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED TRUE)
|
||||
set(CMAKE_C_LINKER_PUSHPOP_STATE_SUPPORTED TRUE)
|
||||
|
||||
# Save compiler ABI information.
|
||||
set(CMAKE_C_SIZEOF_DATA_PTR "8")
|
||||
set(CMAKE_C_COMPILER_ABI "ELF")
|
||||
set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN")
|
||||
set(CMAKE_C_LIBRARY_ARCHITECTURE "")
|
||||
|
||||
if(CMAKE_C_SIZEOF_DATA_PTR)
|
||||
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
|
||||
endif()
|
||||
|
||||
if(CMAKE_C_COMPILER_ABI)
|
||||
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
|
||||
endif()
|
||||
|
||||
if(CMAKE_C_LIBRARY_ARCHITECTURE)
|
||||
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
||||
endif()
|
||||
|
||||
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
|
||||
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
|
||||
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
|
||||
endif()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include-fixed;/usr/include")
|
||||
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s")
|
||||
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1;/usr/lib;/lib")
|
||||
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||
108
external/QCodeEditor/example/build/CMakeFiles/4.1.2/CMakeCXXCompiler.cmake
vendored
Normal file
108
external/QCodeEditor/example/build/CMakeFiles/4.1.2/CMakeCXXCompiler.cmake
vendored
Normal file
|
|
@ -0,0 +1,108 @@
|
|||
set(CMAKE_CXX_COMPILER "/usr/bin/c++")
|
||||
set(CMAKE_CXX_COMPILER_ARG1 "")
|
||||
set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||
set(CMAKE_CXX_COMPILER_VERSION "15.2.1")
|
||||
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
|
||||
set(CMAKE_CXX_COMPILER_WRAPPER "")
|
||||
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17")
|
||||
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON")
|
||||
set(CMAKE_CXX_STANDARD_LATEST "26")
|
||||
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23;cxx_std_26")
|
||||
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
|
||||
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
|
||||
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
|
||||
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
|
||||
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
|
||||
set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23")
|
||||
set(CMAKE_CXX26_COMPILE_FEATURES "cxx_std_26")
|
||||
|
||||
set(CMAKE_CXX_PLATFORM_ID "Linux")
|
||||
set(CMAKE_CXX_SIMULATE_ID "")
|
||||
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU")
|
||||
set(CMAKE_CXX_COMPILER_APPLE_SYSROOT "")
|
||||
set(CMAKE_CXX_SIMULATE_VERSION "")
|
||||
set(CMAKE_CXX_COMPILER_ARCHITECTURE_ID "x86_64")
|
||||
|
||||
|
||||
|
||||
set(CMAKE_AR "/usr/bin/ar")
|
||||
set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar")
|
||||
set(CMAKE_RANLIB "/usr/bin/ranlib")
|
||||
set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib")
|
||||
set(CMAKE_LINKER "/usr/bin/ld")
|
||||
set(CMAKE_LINKER_LINK "")
|
||||
set(CMAKE_LINKER_LLD "")
|
||||
set(CMAKE_CXX_COMPILER_LINKER "/usr/bin/ld")
|
||||
set(CMAKE_CXX_COMPILER_LINKER_ID "GNU")
|
||||
set(CMAKE_CXX_COMPILER_LINKER_VERSION 2.45.0)
|
||||
set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT GNU)
|
||||
set(CMAKE_MT "")
|
||||
set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND")
|
||||
set(CMAKE_COMPILER_IS_GNUCXX 1)
|
||||
set(CMAKE_CXX_COMPILER_LOADED 1)
|
||||
set(CMAKE_CXX_COMPILER_WORKS TRUE)
|
||||
set(CMAKE_CXX_ABI_COMPILED TRUE)
|
||||
|
||||
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
|
||||
|
||||
set(CMAKE_CXX_COMPILER_ID_RUN 1)
|
||||
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m)
|
||||
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||
|
||||
foreach (lang IN ITEMS C OBJC OBJCXX)
|
||||
if (CMAKE_${lang}_COMPILER_ID_RUN)
|
||||
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
|
||||
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
|
||||
endforeach()
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
set(CMAKE_CXX_LINKER_PREFERENCE 30)
|
||||
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
|
||||
set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED TRUE)
|
||||
set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED TRUE)
|
||||
set(CMAKE_CXX_LINKER_PUSHPOP_STATE_SUPPORTED TRUE)
|
||||
|
||||
# Save compiler ABI information.
|
||||
set(CMAKE_CXX_SIZEOF_DATA_PTR "8")
|
||||
set(CMAKE_CXX_COMPILER_ABI "ELF")
|
||||
set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN")
|
||||
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "")
|
||||
|
||||
if(CMAKE_CXX_SIZEOF_DATA_PTR)
|
||||
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
|
||||
endif()
|
||||
|
||||
if(CMAKE_CXX_COMPILER_ABI)
|
||||
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
|
||||
endif()
|
||||
|
||||
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
|
||||
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
||||
endif()
|
||||
|
||||
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
|
||||
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
|
||||
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
|
||||
endif()
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/15.2.1;/usr/include/c++/15.2.1/x86_64-pc-linux-gnu;/usr/include/c++/15.2.1/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include-fixed;/usr/include")
|
||||
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc")
|
||||
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1;/usr/lib;/lib")
|
||||
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||
set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "")
|
||||
|
||||
set(CMAKE_CXX_COMPILER_IMPORT_STD "")
|
||||
### 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")
|
||||
|
||||
|
||||
|
||||
BIN
external/QCodeEditor/example/build/CMakeFiles/4.1.2/CMakeDetermineCompilerABI_C.bin
vendored
Executable file
BIN
external/QCodeEditor/example/build/CMakeFiles/4.1.2/CMakeDetermineCompilerABI_C.bin
vendored
Executable file
Binary file not shown.
BIN
external/QCodeEditor/example/build/CMakeFiles/4.1.2/CMakeDetermineCompilerABI_CXX.bin
vendored
Executable file
BIN
external/QCodeEditor/example/build/CMakeFiles/4.1.2/CMakeDetermineCompilerABI_CXX.bin
vendored
Executable file
Binary file not shown.
15
external/QCodeEditor/example/build/CMakeFiles/4.1.2/CMakeSystem.cmake
vendored
Normal file
15
external/QCodeEditor/example/build/CMakeFiles/4.1.2/CMakeSystem.cmake
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
set(CMAKE_HOST_SYSTEM "Linux-6.16.10-arch1-1")
|
||||
set(CMAKE_HOST_SYSTEM_NAME "Linux")
|
||||
set(CMAKE_HOST_SYSTEM_VERSION "6.16.10-arch1-1")
|
||||
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
|
||||
|
||||
|
||||
|
||||
set(CMAKE_SYSTEM "Linux-6.16.10-arch1-1")
|
||||
set(CMAKE_SYSTEM_NAME "Linux")
|
||||
set(CMAKE_SYSTEM_VERSION "6.16.10-arch1-1")
|
||||
set(CMAKE_SYSTEM_PROCESSOR "x86_64")
|
||||
|
||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||
|
||||
set(CMAKE_SYSTEM_LOADED 1)
|
||||
934
external/QCodeEditor/example/build/CMakeFiles/4.1.2/CompilerIdC/CMakeCCompilerId.c
vendored
Normal file
934
external/QCodeEditor/example/build/CMakeFiles/4.1.2/CompilerIdC/CMakeCCompilerId.c
vendored
Normal file
|
|
@ -0,0 +1,934 @@
|
|||
#ifdef __cplusplus
|
||||
# error "A C++ compiler has been selected for C."
|
||||
#endif
|
||||
|
||||
#if defined(__18CXX)
|
||||
# define ID_VOID_MAIN
|
||||
#endif
|
||||
#if defined(__CLASSIC_C__)
|
||||
/* cv-qualifiers did not exist in K&R C */
|
||||
# define const
|
||||
# define volatile
|
||||
#endif
|
||||
|
||||
#if !defined(__has_include)
|
||||
/* If the compiler does not have __has_include, pretend the answer is
|
||||
always no. */
|
||||
# define __has_include(x) 0
|
||||
#endif
|
||||
|
||||
|
||||
/* Version number components: V=Version, R=Revision, P=Patch
|
||||
Version date components: YYYY=Year, MM=Month, DD=Day */
|
||||
|
||||
#if defined(__INTEL_COMPILER) || defined(__ICC)
|
||||
# define COMPILER_ID "Intel"
|
||||
# if defined(_MSC_VER)
|
||||
# define SIMULATE_ID "MSVC"
|
||||
# endif
|
||||
# if defined(__GNUC__)
|
||||
# define SIMULATE_ID "GNU"
|
||||
# endif
|
||||
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
|
||||
except that a few beta releases use the old format with V=2021. */
|
||||
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
|
||||
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
|
||||
# if defined(__INTEL_COMPILER_UPDATE)
|
||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
|
||||
# else
|
||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
|
||||
# endif
|
||||
# else
|
||||
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
|
||||
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
|
||||
/* The third version component from --version is an update index,
|
||||
but no macro is provided for it. */
|
||||
# define COMPILER_VERSION_PATCH DEC(0)
|
||||
# endif
|
||||
# if defined(__INTEL_COMPILER_BUILD_DATE)
|
||||
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
|
||||
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
|
||||
# endif
|
||||
# if defined(_MSC_VER)
|
||||
/* _MSC_VER = VVRR */
|
||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# endif
|
||||
# if defined(__GNUC__)
|
||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||
# elif defined(__GNUG__)
|
||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||
# endif
|
||||
# if defined(__GNUC_MINOR__)
|
||||
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||
# endif
|
||||
# if defined(__GNUC_PATCHLEVEL__)
|
||||
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
|
||||
# define COMPILER_ID "IntelLLVM"
|
||||
#if defined(_MSC_VER)
|
||||
# define SIMULATE_ID "MSVC"
|
||||
#endif
|
||||
#if defined(__GNUC__)
|
||||
# define SIMULATE_ID "GNU"
|
||||
#endif
|
||||
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
|
||||
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
|
||||
* VVVV is no smaller than the current year when a version is released.
|
||||
*/
|
||||
#if __INTEL_LLVM_COMPILER < 1000000L
|
||||
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
|
||||
#else
|
||||
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
|
||||
#endif
|
||||
#if defined(_MSC_VER)
|
||||
/* _MSC_VER = VVRR */
|
||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
#endif
|
||||
#if defined(__GNUC__)
|
||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||
#elif defined(__GNUG__)
|
||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||
#endif
|
||||
#if defined(__GNUC_MINOR__)
|
||||
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||
#endif
|
||||
#if defined(__GNUC_PATCHLEVEL__)
|
||||
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||
#endif
|
||||
|
||||
#elif defined(__PATHCC__)
|
||||
# define COMPILER_ID "PathScale"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
|
||||
# if defined(__PATHCC_PATCHLEVEL__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
|
||||
# define COMPILER_ID "Embarcadero"
|
||||
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
|
||||
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
|
||||
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
|
||||
|
||||
#elif defined(__BORLANDC__)
|
||||
# define COMPILER_ID "Borland"
|
||||
/* __BORLANDC__ = 0xVRR */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
|
||||
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
|
||||
|
||||
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
|
||||
# define COMPILER_ID "Watcom"
|
||||
/* __WATCOMC__ = VVRR */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||
# if (__WATCOMC__ % 10) > 0
|
||||
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||
# endif
|
||||
|
||||
#elif defined(__WATCOMC__)
|
||||
# define COMPILER_ID "OpenWatcom"
|
||||
/* __WATCOMC__ = VVRP + 1100 */
|
||||
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||
# if (__WATCOMC__ % 10) > 0
|
||||
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||
# endif
|
||||
|
||||
#elif defined(__SUNPRO_C)
|
||||
# define COMPILER_ID "SunPro"
|
||||
# if __SUNPRO_C >= 0x5100
|
||||
/* __SUNPRO_C = 0xVRRP */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
|
||||
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
|
||||
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
|
||||
# else
|
||||
/* __SUNPRO_CC = 0xVRP */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
|
||||
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
|
||||
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
|
||||
# endif
|
||||
|
||||
#elif defined(__HP_cc)
|
||||
# define COMPILER_ID "HP"
|
||||
/* __HP_cc = VVRRPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
|
||||
|
||||
#elif defined(__DECC)
|
||||
# define COMPILER_ID "Compaq"
|
||||
/* __DECC_VER = VVRRTPPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
|
||||
|
||||
#elif defined(__IBMC__) && defined(__COMPILER_VER__)
|
||||
# define COMPILER_ID "zOS"
|
||||
/* __IBMC__ = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||
|
||||
#elif defined(__open_xl__) && defined(__clang__)
|
||||
# define COMPILER_ID "IBMClang"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
|
||||
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
|
||||
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||
|
||||
|
||||
#elif defined(__ibmxl__) && defined(__clang__)
|
||||
# define COMPILER_ID "XLClang"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
||||
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
||||
|
||||
|
||||
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
|
||||
# define COMPILER_ID "XL"
|
||||
/* __IBMC__ = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||
|
||||
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
|
||||
# define COMPILER_ID "VisualAge"
|
||||
/* __IBMC__ = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||
|
||||
#elif defined(__NVCOMPILER)
|
||||
# define COMPILER_ID "NVHPC"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
|
||||
# if defined(__NVCOMPILER_PATCHLEVEL__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(__PGI)
|
||||
# define COMPILER_ID "PGI"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
||||
# if defined(__PGIC_PATCHLEVEL__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(__clang__) && defined(__cray__)
|
||||
# define COMPILER_ID "CrayClang"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__cray_major__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__cray_minor__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__)
|
||||
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||
|
||||
|
||||
#elif defined(_CRAYC)
|
||||
# define COMPILER_ID "Cray"
|
||||
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
||||
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
||||
|
||||
#elif defined(__TI_COMPILER_VERSION__)
|
||||
# define COMPILER_ID "TI"
|
||||
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
||||
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
||||
|
||||
#elif defined(__CLANG_FUJITSU)
|
||||
# define COMPILER_ID "FujitsuClang"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||
|
||||
|
||||
#elif defined(__FUJITSU)
|
||||
# define COMPILER_ID "Fujitsu"
|
||||
# if defined(__FCC_version__)
|
||||
# define COMPILER_VERSION __FCC_version__
|
||||
# elif defined(__FCC_major__)
|
||||
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||
# endif
|
||||
# if defined(__fcc_version)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
|
||||
# elif defined(__FCC_VERSION)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
|
||||
# endif
|
||||
|
||||
|
||||
#elif defined(__ghs__)
|
||||
# define COMPILER_ID "GHS"
|
||||
/* __GHS_VERSION_NUMBER = VVVVRP */
|
||||
# ifdef __GHS_VERSION_NUMBER
|
||||
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
|
||||
# endif
|
||||
|
||||
#elif defined(__TASKING__)
|
||||
# define COMPILER_ID "Tasking"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__VERSION__)
|
||||
|
||||
#elif defined(__ORANGEC__)
|
||||
# define COMPILER_ID "OrangeC"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__)
|
||||
|
||||
#elif defined(__RENESAS__)
|
||||
# define COMPILER_ID "Renesas"
|
||||
/* __RENESAS_VERSION__ = 0xVVRRPP00 */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__RENESAS_VERSION__ >> 24 & 0xFF)
|
||||
# define COMPILER_VERSION_MINOR HEX(__RENESAS_VERSION__ >> 16 & 0xFF)
|
||||
# define COMPILER_VERSION_PATCH HEX(__RENESAS_VERSION__ >> 8 & 0xFF)
|
||||
|
||||
#elif defined(__TINYC__)
|
||||
# define COMPILER_ID "TinyCC"
|
||||
|
||||
#elif defined(__BCC__)
|
||||
# define COMPILER_ID "Bruce"
|
||||
|
||||
#elif defined(__SCO_VERSION__)
|
||||
# define COMPILER_ID "SCO"
|
||||
|
||||
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
|
||||
# define COMPILER_ID "ARMCC"
|
||||
#if __ARMCC_VERSION >= 1000000
|
||||
/* __ARMCC_VERSION = VRRPPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||
#else
|
||||
/* __ARMCC_VERSION = VRPPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||
#endif
|
||||
|
||||
|
||||
#elif defined(__clang__) && defined(__apple_build_version__)
|
||||
# define COMPILER_ID "AppleClang"
|
||||
# if defined(_MSC_VER)
|
||||
# define SIMULATE_ID "MSVC"
|
||||
# endif
|
||||
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||
# if defined(_MSC_VER)
|
||||
/* _MSC_VER = VVRR */
|
||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# endif
|
||||
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
|
||||
|
||||
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
|
||||
# define COMPILER_ID "ARMClang"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
|
||||
|
||||
#elif defined(__clang__) && defined(__ti__)
|
||||
# define COMPILER_ID "TIClang"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ti_major__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ti_minor__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__ti_version__)
|
||||
|
||||
#elif defined(__clang__)
|
||||
# define COMPILER_ID "Clang"
|
||||
# if defined(_MSC_VER)
|
||||
# define SIMULATE_ID "MSVC"
|
||||
# endif
|
||||
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||
# if defined(_MSC_VER)
|
||||
/* _MSC_VER = VVRR */
|
||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# endif
|
||||
|
||||
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
|
||||
# define COMPILER_ID "LCC"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100)
|
||||
# if defined(__LCC_MINOR__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
|
||||
# endif
|
||||
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
|
||||
# define SIMULATE_ID "GNU"
|
||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||
# if defined(__GNUC_PATCHLEVEL__)
|
||||
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||
# endif
|
||||
# endif
|
||||
|
||||
#elif defined(__GNUC__)
|
||||
# define COMPILER_ID "GNU"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
||||
# if defined(__GNUC_MINOR__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||
# endif
|
||||
# if defined(__GNUC_PATCHLEVEL__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(_MSC_VER)
|
||||
# define COMPILER_ID "MSVC"
|
||||
/* _MSC_VER = VVRR */
|
||||
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# if defined(_MSC_FULL_VER)
|
||||
# if _MSC_VER >= 1400
|
||||
/* _MSC_FULL_VER = VVRRPPPPP */
|
||||
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
||||
# else
|
||||
/* _MSC_FULL_VER = VVRRPPPP */
|
||||
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
||||
# endif
|
||||
# endif
|
||||
# if defined(_MSC_BUILD)
|
||||
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
||||
# endif
|
||||
|
||||
#elif defined(_ADI_COMPILER)
|
||||
# define COMPILER_ID "ADSP"
|
||||
#if defined(__VERSIONNUM__)
|
||||
/* __VERSIONNUM__ = 0xVVRRPPTT */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
|
||||
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
|
||||
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
|
||||
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
|
||||
#endif
|
||||
|
||||
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||
# define COMPILER_ID "IAR"
|
||||
# if defined(__VER__) && defined(__ICCARM__)
|
||||
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
|
||||
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
|
||||
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
|
||||
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||
# endif
|
||||
|
||||
#elif defined(__DCC__) && defined(_DIAB_TOOL)
|
||||
# define COMPILER_ID "Diab"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__VERSION_MAJOR_NUMBER__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__VERSION_MINOR_NUMBER__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__VERSION_ARCH_FEATURE_NUMBER__)
|
||||
# define COMPILER_VERSION_TWEAK DEC(__VERSION_BUG_FIX_NUMBER__)
|
||||
|
||||
|
||||
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
|
||||
# define COMPILER_ID "SDCC"
|
||||
# if defined(__SDCC_VERSION_MAJOR)
|
||||
# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
|
||||
# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
|
||||
# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
|
||||
# else
|
||||
/* SDCC = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
|
||||
# endif
|
||||
|
||||
|
||||
/* These compilers are either not known or too old to define an
|
||||
identification macro. Try to identify the platform and guess that
|
||||
it is the native compiler. */
|
||||
#elif defined(__hpux) || defined(__hpua)
|
||||
# define COMPILER_ID "HP"
|
||||
|
||||
#else /* unknown compiler */
|
||||
# define COMPILER_ID ""
|
||||
#endif
|
||||
|
||||
/* Construct the string literal in pieces to prevent the source from
|
||||
getting matched. Store it in a pointer rather than an array
|
||||
because some compilers will just produce instructions to fill the
|
||||
array rather than assigning a pointer to a static array. */
|
||||
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
||||
#ifdef SIMULATE_ID
|
||||
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
||||
#endif
|
||||
|
||||
#ifdef __QNXNTO__
|
||||
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
||||
#endif
|
||||
|
||||
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
||||
#endif
|
||||
|
||||
#define STRINGIFY_HELPER(X) #X
|
||||
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
||||
|
||||
/* Identify known platforms by name. */
|
||||
#if defined(__linux) || defined(__linux__) || defined(linux)
|
||||
# define PLATFORM_ID "Linux"
|
||||
|
||||
#elif defined(__MSYS__)
|
||||
# define PLATFORM_ID "MSYS"
|
||||
|
||||
#elif defined(__CYGWIN__)
|
||||
# define PLATFORM_ID "Cygwin"
|
||||
|
||||
#elif defined(__MINGW32__)
|
||||
# define PLATFORM_ID "MinGW"
|
||||
|
||||
#elif defined(__APPLE__)
|
||||
# define PLATFORM_ID "Darwin"
|
||||
|
||||
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
||||
# define PLATFORM_ID "Windows"
|
||||
|
||||
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
||||
# define PLATFORM_ID "FreeBSD"
|
||||
|
||||
#elif defined(__NetBSD__) || defined(__NetBSD)
|
||||
# define PLATFORM_ID "NetBSD"
|
||||
|
||||
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
||||
# define PLATFORM_ID "OpenBSD"
|
||||
|
||||
#elif defined(__sun) || defined(sun)
|
||||
# define PLATFORM_ID "SunOS"
|
||||
|
||||
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
||||
# define PLATFORM_ID "AIX"
|
||||
|
||||
#elif defined(__hpux) || defined(__hpux__)
|
||||
# define PLATFORM_ID "HP-UX"
|
||||
|
||||
#elif defined(__HAIKU__)
|
||||
# define PLATFORM_ID "Haiku"
|
||||
|
||||
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
||||
# define PLATFORM_ID "BeOS"
|
||||
|
||||
#elif defined(__QNX__) || defined(__QNXNTO__)
|
||||
# define PLATFORM_ID "QNX"
|
||||
|
||||
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
||||
# define PLATFORM_ID "Tru64"
|
||||
|
||||
#elif defined(__riscos) || defined(__riscos__)
|
||||
# define PLATFORM_ID "RISCos"
|
||||
|
||||
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
||||
# define PLATFORM_ID "SINIX"
|
||||
|
||||
#elif defined(__UNIX_SV__)
|
||||
# define PLATFORM_ID "UNIX_SV"
|
||||
|
||||
#elif defined(__bsdos__)
|
||||
# define PLATFORM_ID "BSDOS"
|
||||
|
||||
#elif defined(_MPRAS) || defined(MPRAS)
|
||||
# define PLATFORM_ID "MP-RAS"
|
||||
|
||||
#elif defined(__osf) || defined(__osf__)
|
||||
# define PLATFORM_ID "OSF1"
|
||||
|
||||
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
||||
# define PLATFORM_ID "SCO_SV"
|
||||
|
||||
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
||||
# define PLATFORM_ID "ULTRIX"
|
||||
|
||||
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
||||
# define PLATFORM_ID "Xenix"
|
||||
|
||||
#elif defined(__WATCOMC__)
|
||||
# if defined(__LINUX__)
|
||||
# define PLATFORM_ID "Linux"
|
||||
|
||||
# elif defined(__DOS__)
|
||||
# define PLATFORM_ID "DOS"
|
||||
|
||||
# elif defined(__OS2__)
|
||||
# define PLATFORM_ID "OS2"
|
||||
|
||||
# elif defined(__WINDOWS__)
|
||||
# define PLATFORM_ID "Windows3x"
|
||||
|
||||
# elif defined(__VXWORKS__)
|
||||
# define PLATFORM_ID "VxWorks"
|
||||
|
||||
# else /* unknown platform */
|
||||
# define PLATFORM_ID
|
||||
# endif
|
||||
|
||||
#elif defined(__INTEGRITY)
|
||||
# if defined(INT_178B)
|
||||
# define PLATFORM_ID "Integrity178"
|
||||
|
||||
# else /* regular Integrity */
|
||||
# define PLATFORM_ID "Integrity"
|
||||
# endif
|
||||
|
||||
# elif defined(_ADI_COMPILER)
|
||||
# define PLATFORM_ID "ADSP"
|
||||
|
||||
#else /* unknown platform */
|
||||
# define PLATFORM_ID
|
||||
|
||||
#endif
|
||||
|
||||
/* For windows compilers MSVC and Intel we can determine
|
||||
the architecture of the compiler being used. This is because
|
||||
the compilers do not have flags that can change the architecture,
|
||||
but rather depend on which compiler is being used
|
||||
*/
|
||||
#if defined(_WIN32) && defined(_MSC_VER)
|
||||
# if defined(_M_IA64)
|
||||
# define ARCHITECTURE_ID "IA64"
|
||||
|
||||
# elif defined(_M_ARM64EC)
|
||||
# define ARCHITECTURE_ID "ARM64EC"
|
||||
|
||||
# elif defined(_M_X64) || defined(_M_AMD64)
|
||||
# define ARCHITECTURE_ID "x64"
|
||||
|
||||
# elif defined(_M_IX86)
|
||||
# define ARCHITECTURE_ID "X86"
|
||||
|
||||
# elif defined(_M_ARM64)
|
||||
# define ARCHITECTURE_ID "ARM64"
|
||||
|
||||
# elif defined(_M_ARM)
|
||||
# if _M_ARM == 4
|
||||
# define ARCHITECTURE_ID "ARMV4I"
|
||||
# elif _M_ARM == 5
|
||||
# define ARCHITECTURE_ID "ARMV5I"
|
||||
# else
|
||||
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
||||
# endif
|
||||
|
||||
# elif defined(_M_MIPS)
|
||||
# define ARCHITECTURE_ID "MIPS"
|
||||
|
||||
# elif defined(_M_SH)
|
||||
# define ARCHITECTURE_ID "SHx"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__WATCOMC__)
|
||||
# if defined(_M_I86)
|
||||
# define ARCHITECTURE_ID "I86"
|
||||
|
||||
# elif defined(_M_IX86)
|
||||
# define ARCHITECTURE_ID "X86"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||
# if defined(__ICCARM__)
|
||||
# define ARCHITECTURE_ID "ARM"
|
||||
|
||||
# elif defined(__ICCRX__)
|
||||
# define ARCHITECTURE_ID "RX"
|
||||
|
||||
# elif defined(__ICCRH850__)
|
||||
# define ARCHITECTURE_ID "RH850"
|
||||
|
||||
# elif defined(__ICCRL78__)
|
||||
# define ARCHITECTURE_ID "RL78"
|
||||
|
||||
# elif defined(__ICCRISCV__)
|
||||
# define ARCHITECTURE_ID "RISCV"
|
||||
|
||||
# elif defined(__ICCAVR__)
|
||||
# define ARCHITECTURE_ID "AVR"
|
||||
|
||||
# elif defined(__ICC430__)
|
||||
# define ARCHITECTURE_ID "MSP430"
|
||||
|
||||
# elif defined(__ICCV850__)
|
||||
# define ARCHITECTURE_ID "V850"
|
||||
|
||||
# elif defined(__ICC8051__)
|
||||
# define ARCHITECTURE_ID "8051"
|
||||
|
||||
# elif defined(__ICCSTM8__)
|
||||
# define ARCHITECTURE_ID "STM8"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__ghs__)
|
||||
# if defined(__PPC64__)
|
||||
# define ARCHITECTURE_ID "PPC64"
|
||||
|
||||
# elif defined(__ppc__)
|
||||
# define ARCHITECTURE_ID "PPC"
|
||||
|
||||
# elif defined(__ARM__)
|
||||
# define ARCHITECTURE_ID "ARM"
|
||||
|
||||
# elif defined(__x86_64__)
|
||||
# define ARCHITECTURE_ID "x64"
|
||||
|
||||
# elif defined(__i386__)
|
||||
# define ARCHITECTURE_ID "X86"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__clang__) && defined(__ti__)
|
||||
# if defined(__ARM_ARCH)
|
||||
# define ARCHITECTURE_ID "ARM"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__TI_COMPILER_VERSION__)
|
||||
# if defined(__TI_ARM__)
|
||||
# define ARCHITECTURE_ID "ARM"
|
||||
|
||||
# elif defined(__MSP430__)
|
||||
# define ARCHITECTURE_ID "MSP430"
|
||||
|
||||
# elif defined(__TMS320C28XX__)
|
||||
# define ARCHITECTURE_ID "TMS320C28x"
|
||||
|
||||
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
|
||||
# define ARCHITECTURE_ID "TMS320C6x"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
# elif defined(__ADSPSHARC__)
|
||||
# define ARCHITECTURE_ID "SHARC"
|
||||
|
||||
# elif defined(__ADSPBLACKFIN__)
|
||||
# define ARCHITECTURE_ID "Blackfin"
|
||||
|
||||
#elif defined(__TASKING__)
|
||||
|
||||
# if defined(__CTC__) || defined(__CPTC__)
|
||||
# define ARCHITECTURE_ID "TriCore"
|
||||
|
||||
# elif defined(__CMCS__)
|
||||
# define ARCHITECTURE_ID "MCS"
|
||||
|
||||
# elif defined(__CARM__) || defined(__CPARM__)
|
||||
# define ARCHITECTURE_ID "ARM"
|
||||
|
||||
# elif defined(__CARC__)
|
||||
# define ARCHITECTURE_ID "ARC"
|
||||
|
||||
# elif defined(__C51__)
|
||||
# define ARCHITECTURE_ID "8051"
|
||||
|
||||
# elif defined(__CPCP__)
|
||||
# define ARCHITECTURE_ID "PCP"
|
||||
|
||||
# else
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__RENESAS__)
|
||||
# if defined(__CCRX__)
|
||||
# define ARCHITECTURE_ID "RX"
|
||||
|
||||
# elif defined(__CCRL__)
|
||||
# define ARCHITECTURE_ID "RL78"
|
||||
|
||||
# elif defined(__CCRH__)
|
||||
# define ARCHITECTURE_ID "RH850"
|
||||
|
||||
# else
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#else
|
||||
# define ARCHITECTURE_ID
|
||||
#endif
|
||||
|
||||
/* Convert integer to decimal digit literals. */
|
||||
#define DEC(n) \
|
||||
('0' + (((n) / 10000000)%10)), \
|
||||
('0' + (((n) / 1000000)%10)), \
|
||||
('0' + (((n) / 100000)%10)), \
|
||||
('0' + (((n) / 10000)%10)), \
|
||||
('0' + (((n) / 1000)%10)), \
|
||||
('0' + (((n) / 100)%10)), \
|
||||
('0' + (((n) / 10)%10)), \
|
||||
('0' + ((n) % 10))
|
||||
|
||||
/* Convert integer to hex digit literals. */
|
||||
#define HEX(n) \
|
||||
('0' + ((n)>>28 & 0xF)), \
|
||||
('0' + ((n)>>24 & 0xF)), \
|
||||
('0' + ((n)>>20 & 0xF)), \
|
||||
('0' + ((n)>>16 & 0xF)), \
|
||||
('0' + ((n)>>12 & 0xF)), \
|
||||
('0' + ((n)>>8 & 0xF)), \
|
||||
('0' + ((n)>>4 & 0xF)), \
|
||||
('0' + ((n) & 0xF))
|
||||
|
||||
/* Construct a string literal encoding the version number. */
|
||||
#ifdef COMPILER_VERSION
|
||||
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
|
||||
|
||||
/* Construct a string literal encoding the version number components. */
|
||||
#elif defined(COMPILER_VERSION_MAJOR)
|
||||
char const info_version[] = {
|
||||
'I', 'N', 'F', 'O', ':',
|
||||
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
|
||||
COMPILER_VERSION_MAJOR,
|
||||
# ifdef COMPILER_VERSION_MINOR
|
||||
'.', COMPILER_VERSION_MINOR,
|
||||
# ifdef COMPILER_VERSION_PATCH
|
||||
'.', COMPILER_VERSION_PATCH,
|
||||
# ifdef COMPILER_VERSION_TWEAK
|
||||
'.', COMPILER_VERSION_TWEAK,
|
||||
# endif
|
||||
# endif
|
||||
# endif
|
||||
']','\0'};
|
||||
#endif
|
||||
|
||||
/* Construct a string literal encoding the internal version number. */
|
||||
#ifdef COMPILER_VERSION_INTERNAL
|
||||
char const info_version_internal[] = {
|
||||
'I', 'N', 'F', 'O', ':',
|
||||
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
|
||||
'i','n','t','e','r','n','a','l','[',
|
||||
COMPILER_VERSION_INTERNAL,']','\0'};
|
||||
#elif defined(COMPILER_VERSION_INTERNAL_STR)
|
||||
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
|
||||
#endif
|
||||
|
||||
/* Construct a string literal encoding the version number components. */
|
||||
#ifdef SIMULATE_VERSION_MAJOR
|
||||
char const info_simulate_version[] = {
|
||||
'I', 'N', 'F', 'O', ':',
|
||||
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
||||
SIMULATE_VERSION_MAJOR,
|
||||
# ifdef SIMULATE_VERSION_MINOR
|
||||
'.', SIMULATE_VERSION_MINOR,
|
||||
# ifdef SIMULATE_VERSION_PATCH
|
||||
'.', SIMULATE_VERSION_PATCH,
|
||||
# ifdef SIMULATE_VERSION_TWEAK
|
||||
'.', SIMULATE_VERSION_TWEAK,
|
||||
# endif
|
||||
# endif
|
||||
# endif
|
||||
']','\0'};
|
||||
#endif
|
||||
|
||||
/* Construct the string literal in pieces to prevent the source from
|
||||
getting matched. Store it in a pointer rather than an array
|
||||
because some compilers will just produce instructions to fill the
|
||||
array rather than assigning a pointer to a static array. */
|
||||
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
||||
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
||||
|
||||
|
||||
|
||||
#define C_STD_99 199901L
|
||||
#define C_STD_11 201112L
|
||||
#define C_STD_17 201710L
|
||||
#define C_STD_23 202311L
|
||||
|
||||
#ifdef __STDC_VERSION__
|
||||
# define C_STD __STDC_VERSION__
|
||||
#endif
|
||||
|
||||
#if !defined(__STDC__) && !defined(__clang__) && !defined(__RENESAS__)
|
||||
# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__)
|
||||
# define C_VERSION "90"
|
||||
# else
|
||||
# define C_VERSION
|
||||
# endif
|
||||
#elif C_STD > C_STD_17
|
||||
# define C_VERSION "23"
|
||||
#elif C_STD > C_STD_11
|
||||
# define C_VERSION "17"
|
||||
#elif C_STD > C_STD_99
|
||||
# define C_VERSION "11"
|
||||
#elif C_STD >= C_STD_99
|
||||
# define C_VERSION "99"
|
||||
#else
|
||||
# define C_VERSION "90"
|
||||
#endif
|
||||
const char* info_language_standard_default =
|
||||
"INFO" ":" "standard_default[" C_VERSION "]";
|
||||
|
||||
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
|
||||
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
|
||||
defined(__TI_COMPILER_VERSION__) || defined(__RENESAS__)) && \
|
||||
!defined(__STRICT_ANSI__)
|
||||
"ON"
|
||||
#else
|
||||
"OFF"
|
||||
#endif
|
||||
"]";
|
||||
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
||||
#ifdef ID_VOID_MAIN
|
||||
void main() {}
|
||||
#else
|
||||
# if defined(__CLASSIC_C__)
|
||||
int main(argc, argv) int argc; char *argv[];
|
||||
# else
|
||||
int main(int argc, char* argv[])
|
||||
# endif
|
||||
{
|
||||
int require = 0;
|
||||
require += info_compiler[argc];
|
||||
require += info_platform[argc];
|
||||
require += info_arch[argc];
|
||||
#ifdef COMPILER_VERSION_MAJOR
|
||||
require += info_version[argc];
|
||||
#endif
|
||||
#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR)
|
||||
require += info_version_internal[argc];
|
||||
#endif
|
||||
#ifdef SIMULATE_ID
|
||||
require += info_simulate[argc];
|
||||
#endif
|
||||
#ifdef SIMULATE_VERSION_MAJOR
|
||||
require += info_simulate_version[argc];
|
||||
#endif
|
||||
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||
require += info_cray[argc];
|
||||
#endif
|
||||
require += info_language_standard_default[argc];
|
||||
require += info_language_extensions_default[argc];
|
||||
(void)argv;
|
||||
return require;
|
||||
}
|
||||
#endif
|
||||
BIN
external/QCodeEditor/example/build/CMakeFiles/4.1.2/CompilerIdC/a.out
vendored
Executable file
BIN
external/QCodeEditor/example/build/CMakeFiles/4.1.2/CompilerIdC/a.out
vendored
Executable file
Binary file not shown.
949
external/QCodeEditor/example/build/CMakeFiles/4.1.2/CompilerIdCXX/CMakeCXXCompilerId.cpp
vendored
Normal file
949
external/QCodeEditor/example/build/CMakeFiles/4.1.2/CompilerIdCXX/CMakeCXXCompilerId.cpp
vendored
Normal file
|
|
@ -0,0 +1,949 @@
|
|||
/* This source file must have a .cpp extension so that all C++ compilers
|
||||
recognize the extension without flags. Borland does not know .cxx for
|
||||
example. */
|
||||
#ifndef __cplusplus
|
||||
# error "A C compiler has been selected for C++."
|
||||
#endif
|
||||
|
||||
#if !defined(__has_include)
|
||||
/* If the compiler does not have __has_include, pretend the answer is
|
||||
always no. */
|
||||
# define __has_include(x) 0
|
||||
#endif
|
||||
|
||||
|
||||
/* Version number components: V=Version, R=Revision, P=Patch
|
||||
Version date components: YYYY=Year, MM=Month, DD=Day */
|
||||
|
||||
#if defined(__INTEL_COMPILER) || defined(__ICC)
|
||||
# define COMPILER_ID "Intel"
|
||||
# if defined(_MSC_VER)
|
||||
# define SIMULATE_ID "MSVC"
|
||||
# endif
|
||||
# if defined(__GNUC__)
|
||||
# define SIMULATE_ID "GNU"
|
||||
# endif
|
||||
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
|
||||
except that a few beta releases use the old format with V=2021. */
|
||||
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
|
||||
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
|
||||
# if defined(__INTEL_COMPILER_UPDATE)
|
||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
|
||||
# else
|
||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
|
||||
# endif
|
||||
# else
|
||||
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
|
||||
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
|
||||
/* The third version component from --version is an update index,
|
||||
but no macro is provided for it. */
|
||||
# define COMPILER_VERSION_PATCH DEC(0)
|
||||
# endif
|
||||
# if defined(__INTEL_COMPILER_BUILD_DATE)
|
||||
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
|
||||
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
|
||||
# endif
|
||||
# if defined(_MSC_VER)
|
||||
/* _MSC_VER = VVRR */
|
||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# endif
|
||||
# if defined(__GNUC__)
|
||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||
# elif defined(__GNUG__)
|
||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||
# endif
|
||||
# if defined(__GNUC_MINOR__)
|
||||
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||
# endif
|
||||
# if defined(__GNUC_PATCHLEVEL__)
|
||||
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
|
||||
# define COMPILER_ID "IntelLLVM"
|
||||
#if defined(_MSC_VER)
|
||||
# define SIMULATE_ID "MSVC"
|
||||
#endif
|
||||
#if defined(__GNUC__)
|
||||
# define SIMULATE_ID "GNU"
|
||||
#endif
|
||||
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
|
||||
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
|
||||
* VVVV is no smaller than the current year when a version is released.
|
||||
*/
|
||||
#if __INTEL_LLVM_COMPILER < 1000000L
|
||||
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
|
||||
#else
|
||||
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
|
||||
#endif
|
||||
#if defined(_MSC_VER)
|
||||
/* _MSC_VER = VVRR */
|
||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
#endif
|
||||
#if defined(__GNUC__)
|
||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||
#elif defined(__GNUG__)
|
||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||
#endif
|
||||
#if defined(__GNUC_MINOR__)
|
||||
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||
#endif
|
||||
#if defined(__GNUC_PATCHLEVEL__)
|
||||
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||
#endif
|
||||
|
||||
#elif defined(__PATHCC__)
|
||||
# define COMPILER_ID "PathScale"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
|
||||
# if defined(__PATHCC_PATCHLEVEL__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
|
||||
# define COMPILER_ID "Embarcadero"
|
||||
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
|
||||
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
|
||||
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
|
||||
|
||||
#elif defined(__BORLANDC__)
|
||||
# define COMPILER_ID "Borland"
|
||||
/* __BORLANDC__ = 0xVRR */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
|
||||
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
|
||||
|
||||
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
|
||||
# define COMPILER_ID "Watcom"
|
||||
/* __WATCOMC__ = VVRR */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||
# if (__WATCOMC__ % 10) > 0
|
||||
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||
# endif
|
||||
|
||||
#elif defined(__WATCOMC__)
|
||||
# define COMPILER_ID "OpenWatcom"
|
||||
/* __WATCOMC__ = VVRP + 1100 */
|
||||
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||
# if (__WATCOMC__ % 10) > 0
|
||||
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||
# endif
|
||||
|
||||
#elif defined(__SUNPRO_CC)
|
||||
# define COMPILER_ID "SunPro"
|
||||
# if __SUNPRO_CC >= 0x5100
|
||||
/* __SUNPRO_CC = 0xVRRP */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
|
||||
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
|
||||
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
|
||||
# else
|
||||
/* __SUNPRO_CC = 0xVRP */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
|
||||
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
|
||||
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
|
||||
# endif
|
||||
|
||||
#elif defined(__HP_aCC)
|
||||
# define COMPILER_ID "HP"
|
||||
/* __HP_aCC = VVRRPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
|
||||
|
||||
#elif defined(__DECCXX)
|
||||
# define COMPILER_ID "Compaq"
|
||||
/* __DECCXX_VER = VVRRTPPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
|
||||
|
||||
#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
|
||||
# define COMPILER_ID "zOS"
|
||||
/* __IBMCPP__ = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||
|
||||
#elif defined(__open_xl__) && defined(__clang__)
|
||||
# define COMPILER_ID "IBMClang"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
|
||||
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
|
||||
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||
|
||||
|
||||
#elif defined(__ibmxl__) && defined(__clang__)
|
||||
# define COMPILER_ID "XLClang"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
||||
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
||||
|
||||
|
||||
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
|
||||
# define COMPILER_ID "XL"
|
||||
/* __IBMCPP__ = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||
|
||||
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
|
||||
# define COMPILER_ID "VisualAge"
|
||||
/* __IBMCPP__ = VRP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||
|
||||
#elif defined(__NVCOMPILER)
|
||||
# define COMPILER_ID "NVHPC"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
|
||||
# if defined(__NVCOMPILER_PATCHLEVEL__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(__PGI)
|
||||
# define COMPILER_ID "PGI"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
||||
# if defined(__PGIC_PATCHLEVEL__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(__clang__) && defined(__cray__)
|
||||
# define COMPILER_ID "CrayClang"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__cray_major__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__cray_minor__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__)
|
||||
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||
|
||||
|
||||
#elif defined(_CRAYC)
|
||||
# define COMPILER_ID "Cray"
|
||||
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
||||
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
||||
|
||||
#elif defined(__TI_COMPILER_VERSION__)
|
||||
# define COMPILER_ID "TI"
|
||||
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
||||
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
||||
|
||||
#elif defined(__CLANG_FUJITSU)
|
||||
# define COMPILER_ID "FujitsuClang"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||
|
||||
|
||||
#elif defined(__FUJITSU)
|
||||
# define COMPILER_ID "Fujitsu"
|
||||
# if defined(__FCC_version__)
|
||||
# define COMPILER_VERSION __FCC_version__
|
||||
# elif defined(__FCC_major__)
|
||||
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||
# endif
|
||||
# if defined(__fcc_version)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
|
||||
# elif defined(__FCC_VERSION)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
|
||||
# endif
|
||||
|
||||
|
||||
#elif defined(__ghs__)
|
||||
# define COMPILER_ID "GHS"
|
||||
/* __GHS_VERSION_NUMBER = VVVVRP */
|
||||
# ifdef __GHS_VERSION_NUMBER
|
||||
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
|
||||
# endif
|
||||
|
||||
#elif defined(__TASKING__)
|
||||
# define COMPILER_ID "Tasking"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__VERSION__)
|
||||
|
||||
#elif defined(__ORANGEC__)
|
||||
# define COMPILER_ID "OrangeC"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__)
|
||||
|
||||
#elif defined(__RENESAS__)
|
||||
# define COMPILER_ID "Renesas"
|
||||
/* __RENESAS_VERSION__ = 0xVVRRPP00 */
|
||||
# define COMPILER_VERSION_MAJOR HEX(__RENESAS_VERSION__ >> 24 & 0xFF)
|
||||
# define COMPILER_VERSION_MINOR HEX(__RENESAS_VERSION__ >> 16 & 0xFF)
|
||||
# define COMPILER_VERSION_PATCH HEX(__RENESAS_VERSION__ >> 8 & 0xFF)
|
||||
|
||||
#elif defined(__SCO_VERSION__)
|
||||
# define COMPILER_ID "SCO"
|
||||
|
||||
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
|
||||
# define COMPILER_ID "ARMCC"
|
||||
#if __ARMCC_VERSION >= 1000000
|
||||
/* __ARMCC_VERSION = VRRPPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||
#else
|
||||
/* __ARMCC_VERSION = VRPPPP */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||
#endif
|
||||
|
||||
|
||||
#elif defined(__clang__) && defined(__apple_build_version__)
|
||||
# define COMPILER_ID "AppleClang"
|
||||
# if defined(_MSC_VER)
|
||||
# define SIMULATE_ID "MSVC"
|
||||
# endif
|
||||
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||
# if defined(_MSC_VER)
|
||||
/* _MSC_VER = VVRR */
|
||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# endif
|
||||
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
|
||||
|
||||
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
|
||||
# define COMPILER_ID "ARMClang"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
|
||||
|
||||
#elif defined(__clang__) && defined(__ti__)
|
||||
# define COMPILER_ID "TIClang"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__ti_major__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__ti_minor__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__ti_version__)
|
||||
|
||||
#elif defined(__clang__)
|
||||
# define COMPILER_ID "Clang"
|
||||
# if defined(_MSC_VER)
|
||||
# define SIMULATE_ID "MSVC"
|
||||
# endif
|
||||
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||
# if defined(_MSC_VER)
|
||||
/* _MSC_VER = VVRR */
|
||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# endif
|
||||
|
||||
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
|
||||
# define COMPILER_ID "LCC"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100)
|
||||
# if defined(__LCC_MINOR__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
|
||||
# endif
|
||||
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
|
||||
# define SIMULATE_ID "GNU"
|
||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||
# if defined(__GNUC_PATCHLEVEL__)
|
||||
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||
# endif
|
||||
# endif
|
||||
|
||||
#elif defined(__GNUC__) || defined(__GNUG__)
|
||||
# define COMPILER_ID "GNU"
|
||||
# if defined(__GNUC__)
|
||||
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
||||
# else
|
||||
# define COMPILER_VERSION_MAJOR DEC(__GNUG__)
|
||||
# endif
|
||||
# if defined(__GNUC_MINOR__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||
# endif
|
||||
# if defined(__GNUC_PATCHLEVEL__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||
# endif
|
||||
|
||||
#elif defined(_MSC_VER)
|
||||
# define COMPILER_ID "MSVC"
|
||||
/* _MSC_VER = VVRR */
|
||||
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||
# if defined(_MSC_FULL_VER)
|
||||
# if _MSC_VER >= 1400
|
||||
/* _MSC_FULL_VER = VVRRPPPPP */
|
||||
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
||||
# else
|
||||
/* _MSC_FULL_VER = VVRRPPPP */
|
||||
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
||||
# endif
|
||||
# endif
|
||||
# if defined(_MSC_BUILD)
|
||||
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
||||
# endif
|
||||
|
||||
#elif defined(_ADI_COMPILER)
|
||||
# define COMPILER_ID "ADSP"
|
||||
#if defined(__VERSIONNUM__)
|
||||
/* __VERSIONNUM__ = 0xVVRRPPTT */
|
||||
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
|
||||
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
|
||||
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
|
||||
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
|
||||
#endif
|
||||
|
||||
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||
# define COMPILER_ID "IAR"
|
||||
# if defined(__VER__) && defined(__ICCARM__)
|
||||
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
||||
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
|
||||
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
|
||||
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
|
||||
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
|
||||
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
|
||||
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||
# endif
|
||||
|
||||
#elif defined(__DCC__) && defined(_DIAB_TOOL)
|
||||
# define COMPILER_ID "Diab"
|
||||
# define COMPILER_VERSION_MAJOR DEC(__VERSION_MAJOR_NUMBER__)
|
||||
# define COMPILER_VERSION_MINOR DEC(__VERSION_MINOR_NUMBER__)
|
||||
# define COMPILER_VERSION_PATCH DEC(__VERSION_ARCH_FEATURE_NUMBER__)
|
||||
# define COMPILER_VERSION_TWEAK DEC(__VERSION_BUG_FIX_NUMBER__)
|
||||
|
||||
|
||||
|
||||
/* These compilers are either not known or too old to define an
|
||||
identification macro. Try to identify the platform and guess that
|
||||
it is the native compiler. */
|
||||
#elif defined(__hpux) || defined(__hpua)
|
||||
# define COMPILER_ID "HP"
|
||||
|
||||
#else /* unknown compiler */
|
||||
# define COMPILER_ID ""
|
||||
#endif
|
||||
|
||||
/* Construct the string literal in pieces to prevent the source from
|
||||
getting matched. Store it in a pointer rather than an array
|
||||
because some compilers will just produce instructions to fill the
|
||||
array rather than assigning a pointer to a static array. */
|
||||
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
||||
#ifdef SIMULATE_ID
|
||||
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
||||
#endif
|
||||
|
||||
#ifdef __QNXNTO__
|
||||
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
||||
#endif
|
||||
|
||||
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
||||
#endif
|
||||
|
||||
#define STRINGIFY_HELPER(X) #X
|
||||
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
||||
|
||||
/* Identify known platforms by name. */
|
||||
#if defined(__linux) || defined(__linux__) || defined(linux)
|
||||
# define PLATFORM_ID "Linux"
|
||||
|
||||
#elif defined(__MSYS__)
|
||||
# define PLATFORM_ID "MSYS"
|
||||
|
||||
#elif defined(__CYGWIN__)
|
||||
# define PLATFORM_ID "Cygwin"
|
||||
|
||||
#elif defined(__MINGW32__)
|
||||
# define PLATFORM_ID "MinGW"
|
||||
|
||||
#elif defined(__APPLE__)
|
||||
# define PLATFORM_ID "Darwin"
|
||||
|
||||
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
||||
# define PLATFORM_ID "Windows"
|
||||
|
||||
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
||||
# define PLATFORM_ID "FreeBSD"
|
||||
|
||||
#elif defined(__NetBSD__) || defined(__NetBSD)
|
||||
# define PLATFORM_ID "NetBSD"
|
||||
|
||||
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
||||
# define PLATFORM_ID "OpenBSD"
|
||||
|
||||
#elif defined(__sun) || defined(sun)
|
||||
# define PLATFORM_ID "SunOS"
|
||||
|
||||
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
||||
# define PLATFORM_ID "AIX"
|
||||
|
||||
#elif defined(__hpux) || defined(__hpux__)
|
||||
# define PLATFORM_ID "HP-UX"
|
||||
|
||||
#elif defined(__HAIKU__)
|
||||
# define PLATFORM_ID "Haiku"
|
||||
|
||||
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
||||
# define PLATFORM_ID "BeOS"
|
||||
|
||||
#elif defined(__QNX__) || defined(__QNXNTO__)
|
||||
# define PLATFORM_ID "QNX"
|
||||
|
||||
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
||||
# define PLATFORM_ID "Tru64"
|
||||
|
||||
#elif defined(__riscos) || defined(__riscos__)
|
||||
# define PLATFORM_ID "RISCos"
|
||||
|
||||
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
||||
# define PLATFORM_ID "SINIX"
|
||||
|
||||
#elif defined(__UNIX_SV__)
|
||||
# define PLATFORM_ID "UNIX_SV"
|
||||
|
||||
#elif defined(__bsdos__)
|
||||
# define PLATFORM_ID "BSDOS"
|
||||
|
||||
#elif defined(_MPRAS) || defined(MPRAS)
|
||||
# define PLATFORM_ID "MP-RAS"
|
||||
|
||||
#elif defined(__osf) || defined(__osf__)
|
||||
# define PLATFORM_ID "OSF1"
|
||||
|
||||
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
||||
# define PLATFORM_ID "SCO_SV"
|
||||
|
||||
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
||||
# define PLATFORM_ID "ULTRIX"
|
||||
|
||||
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
||||
# define PLATFORM_ID "Xenix"
|
||||
|
||||
#elif defined(__WATCOMC__)
|
||||
# if defined(__LINUX__)
|
||||
# define PLATFORM_ID "Linux"
|
||||
|
||||
# elif defined(__DOS__)
|
||||
# define PLATFORM_ID "DOS"
|
||||
|
||||
# elif defined(__OS2__)
|
||||
# define PLATFORM_ID "OS2"
|
||||
|
||||
# elif defined(__WINDOWS__)
|
||||
# define PLATFORM_ID "Windows3x"
|
||||
|
||||
# elif defined(__VXWORKS__)
|
||||
# define PLATFORM_ID "VxWorks"
|
||||
|
||||
# else /* unknown platform */
|
||||
# define PLATFORM_ID
|
||||
# endif
|
||||
|
||||
#elif defined(__INTEGRITY)
|
||||
# if defined(INT_178B)
|
||||
# define PLATFORM_ID "Integrity178"
|
||||
|
||||
# else /* regular Integrity */
|
||||
# define PLATFORM_ID "Integrity"
|
||||
# endif
|
||||
|
||||
# elif defined(_ADI_COMPILER)
|
||||
# define PLATFORM_ID "ADSP"
|
||||
|
||||
#else /* unknown platform */
|
||||
# define PLATFORM_ID
|
||||
|
||||
#endif
|
||||
|
||||
/* For windows compilers MSVC and Intel we can determine
|
||||
the architecture of the compiler being used. This is because
|
||||
the compilers do not have flags that can change the architecture,
|
||||
but rather depend on which compiler is being used
|
||||
*/
|
||||
#if defined(_WIN32) && defined(_MSC_VER)
|
||||
# if defined(_M_IA64)
|
||||
# define ARCHITECTURE_ID "IA64"
|
||||
|
||||
# elif defined(_M_ARM64EC)
|
||||
# define ARCHITECTURE_ID "ARM64EC"
|
||||
|
||||
# elif defined(_M_X64) || defined(_M_AMD64)
|
||||
# define ARCHITECTURE_ID "x64"
|
||||
|
||||
# elif defined(_M_IX86)
|
||||
# define ARCHITECTURE_ID "X86"
|
||||
|
||||
# elif defined(_M_ARM64)
|
||||
# define ARCHITECTURE_ID "ARM64"
|
||||
|
||||
# elif defined(_M_ARM)
|
||||
# if _M_ARM == 4
|
||||
# define ARCHITECTURE_ID "ARMV4I"
|
||||
# elif _M_ARM == 5
|
||||
# define ARCHITECTURE_ID "ARMV5I"
|
||||
# else
|
||||
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
||||
# endif
|
||||
|
||||
# elif defined(_M_MIPS)
|
||||
# define ARCHITECTURE_ID "MIPS"
|
||||
|
||||
# elif defined(_M_SH)
|
||||
# define ARCHITECTURE_ID "SHx"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__WATCOMC__)
|
||||
# if defined(_M_I86)
|
||||
# define ARCHITECTURE_ID "I86"
|
||||
|
||||
# elif defined(_M_IX86)
|
||||
# define ARCHITECTURE_ID "X86"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||
# if defined(__ICCARM__)
|
||||
# define ARCHITECTURE_ID "ARM"
|
||||
|
||||
# elif defined(__ICCRX__)
|
||||
# define ARCHITECTURE_ID "RX"
|
||||
|
||||
# elif defined(__ICCRH850__)
|
||||
# define ARCHITECTURE_ID "RH850"
|
||||
|
||||
# elif defined(__ICCRL78__)
|
||||
# define ARCHITECTURE_ID "RL78"
|
||||
|
||||
# elif defined(__ICCRISCV__)
|
||||
# define ARCHITECTURE_ID "RISCV"
|
||||
|
||||
# elif defined(__ICCAVR__)
|
||||
# define ARCHITECTURE_ID "AVR"
|
||||
|
||||
# elif defined(__ICC430__)
|
||||
# define ARCHITECTURE_ID "MSP430"
|
||||
|
||||
# elif defined(__ICCV850__)
|
||||
# define ARCHITECTURE_ID "V850"
|
||||
|
||||
# elif defined(__ICC8051__)
|
||||
# define ARCHITECTURE_ID "8051"
|
||||
|
||||
# elif defined(__ICCSTM8__)
|
||||
# define ARCHITECTURE_ID "STM8"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__ghs__)
|
||||
# if defined(__PPC64__)
|
||||
# define ARCHITECTURE_ID "PPC64"
|
||||
|
||||
# elif defined(__ppc__)
|
||||
# define ARCHITECTURE_ID "PPC"
|
||||
|
||||
# elif defined(__ARM__)
|
||||
# define ARCHITECTURE_ID "ARM"
|
||||
|
||||
# elif defined(__x86_64__)
|
||||
# define ARCHITECTURE_ID "x64"
|
||||
|
||||
# elif defined(__i386__)
|
||||
# define ARCHITECTURE_ID "X86"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__clang__) && defined(__ti__)
|
||||
# if defined(__ARM_ARCH)
|
||||
# define ARCHITECTURE_ID "ARM"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__TI_COMPILER_VERSION__)
|
||||
# if defined(__TI_ARM__)
|
||||
# define ARCHITECTURE_ID "ARM"
|
||||
|
||||
# elif defined(__MSP430__)
|
||||
# define ARCHITECTURE_ID "MSP430"
|
||||
|
||||
# elif defined(__TMS320C28XX__)
|
||||
# define ARCHITECTURE_ID "TMS320C28x"
|
||||
|
||||
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
|
||||
# define ARCHITECTURE_ID "TMS320C6x"
|
||||
|
||||
# else /* unknown architecture */
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
# elif defined(__ADSPSHARC__)
|
||||
# define ARCHITECTURE_ID "SHARC"
|
||||
|
||||
# elif defined(__ADSPBLACKFIN__)
|
||||
# define ARCHITECTURE_ID "Blackfin"
|
||||
|
||||
#elif defined(__TASKING__)
|
||||
|
||||
# if defined(__CTC__) || defined(__CPTC__)
|
||||
# define ARCHITECTURE_ID "TriCore"
|
||||
|
||||
# elif defined(__CMCS__)
|
||||
# define ARCHITECTURE_ID "MCS"
|
||||
|
||||
# elif defined(__CARM__) || defined(__CPARM__)
|
||||
# define ARCHITECTURE_ID "ARM"
|
||||
|
||||
# elif defined(__CARC__)
|
||||
# define ARCHITECTURE_ID "ARC"
|
||||
|
||||
# elif defined(__C51__)
|
||||
# define ARCHITECTURE_ID "8051"
|
||||
|
||||
# elif defined(__CPCP__)
|
||||
# define ARCHITECTURE_ID "PCP"
|
||||
|
||||
# else
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#elif defined(__RENESAS__)
|
||||
# if defined(__CCRX__)
|
||||
# define ARCHITECTURE_ID "RX"
|
||||
|
||||
# elif defined(__CCRL__)
|
||||
# define ARCHITECTURE_ID "RL78"
|
||||
|
||||
# elif defined(__CCRH__)
|
||||
# define ARCHITECTURE_ID "RH850"
|
||||
|
||||
# else
|
||||
# define ARCHITECTURE_ID ""
|
||||
# endif
|
||||
|
||||
#else
|
||||
# define ARCHITECTURE_ID
|
||||
#endif
|
||||
|
||||
/* Convert integer to decimal digit literals. */
|
||||
#define DEC(n) \
|
||||
('0' + (((n) / 10000000)%10)), \
|
||||
('0' + (((n) / 1000000)%10)), \
|
||||
('0' + (((n) / 100000)%10)), \
|
||||
('0' + (((n) / 10000)%10)), \
|
||||
('0' + (((n) / 1000)%10)), \
|
||||
('0' + (((n) / 100)%10)), \
|
||||
('0' + (((n) / 10)%10)), \
|
||||
('0' + ((n) % 10))
|
||||
|
||||
/* Convert integer to hex digit literals. */
|
||||
#define HEX(n) \
|
||||
('0' + ((n)>>28 & 0xF)), \
|
||||
('0' + ((n)>>24 & 0xF)), \
|
||||
('0' + ((n)>>20 & 0xF)), \
|
||||
('0' + ((n)>>16 & 0xF)), \
|
||||
('0' + ((n)>>12 & 0xF)), \
|
||||
('0' + ((n)>>8 & 0xF)), \
|
||||
('0' + ((n)>>4 & 0xF)), \
|
||||
('0' + ((n) & 0xF))
|
||||
|
||||
/* Construct a string literal encoding the version number. */
|
||||
#ifdef COMPILER_VERSION
|
||||
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
|
||||
|
||||
/* Construct a string literal encoding the version number components. */
|
||||
#elif defined(COMPILER_VERSION_MAJOR)
|
||||
char const info_version[] = {
|
||||
'I', 'N', 'F', 'O', ':',
|
||||
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
|
||||
COMPILER_VERSION_MAJOR,
|
||||
# ifdef COMPILER_VERSION_MINOR
|
||||
'.', COMPILER_VERSION_MINOR,
|
||||
# ifdef COMPILER_VERSION_PATCH
|
||||
'.', COMPILER_VERSION_PATCH,
|
||||
# ifdef COMPILER_VERSION_TWEAK
|
||||
'.', COMPILER_VERSION_TWEAK,
|
||||
# endif
|
||||
# endif
|
||||
# endif
|
||||
']','\0'};
|
||||
#endif
|
||||
|
||||
/* Construct a string literal encoding the internal version number. */
|
||||
#ifdef COMPILER_VERSION_INTERNAL
|
||||
char const info_version_internal[] = {
|
||||
'I', 'N', 'F', 'O', ':',
|
||||
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
|
||||
'i','n','t','e','r','n','a','l','[',
|
||||
COMPILER_VERSION_INTERNAL,']','\0'};
|
||||
#elif defined(COMPILER_VERSION_INTERNAL_STR)
|
||||
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
|
||||
#endif
|
||||
|
||||
/* Construct a string literal encoding the version number components. */
|
||||
#ifdef SIMULATE_VERSION_MAJOR
|
||||
char const info_simulate_version[] = {
|
||||
'I', 'N', 'F', 'O', ':',
|
||||
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
||||
SIMULATE_VERSION_MAJOR,
|
||||
# ifdef SIMULATE_VERSION_MINOR
|
||||
'.', SIMULATE_VERSION_MINOR,
|
||||
# ifdef SIMULATE_VERSION_PATCH
|
||||
'.', SIMULATE_VERSION_PATCH,
|
||||
# ifdef SIMULATE_VERSION_TWEAK
|
||||
'.', SIMULATE_VERSION_TWEAK,
|
||||
# endif
|
||||
# endif
|
||||
# endif
|
||||
']','\0'};
|
||||
#endif
|
||||
|
||||
/* Construct the string literal in pieces to prevent the source from
|
||||
getting matched. Store it in a pointer rather than an array
|
||||
because some compilers will just produce instructions to fill the
|
||||
array rather than assigning a pointer to a static array. */
|
||||
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
||||
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
||||
|
||||
|
||||
|
||||
#define CXX_STD_98 199711L
|
||||
#define CXX_STD_11 201103L
|
||||
#define CXX_STD_14 201402L
|
||||
#define CXX_STD_17 201703L
|
||||
#define CXX_STD_20 202002L
|
||||
#define CXX_STD_23 202302L
|
||||
|
||||
#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG)
|
||||
# if _MSVC_LANG > CXX_STD_17
|
||||
# define CXX_STD _MSVC_LANG
|
||||
# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init)
|
||||
# define CXX_STD CXX_STD_20
|
||||
# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17
|
||||
# define CXX_STD CXX_STD_20
|
||||
# elif _MSVC_LANG > CXX_STD_14
|
||||
# define CXX_STD CXX_STD_17
|
||||
# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi)
|
||||
# define CXX_STD CXX_STD_14
|
||||
# elif defined(__INTEL_CXX11_MODE__)
|
||||
# define CXX_STD CXX_STD_11
|
||||
# else
|
||||
# define CXX_STD CXX_STD_98
|
||||
# endif
|
||||
#elif defined(_MSC_VER) && defined(_MSVC_LANG)
|
||||
# if _MSVC_LANG > __cplusplus
|
||||
# define CXX_STD _MSVC_LANG
|
||||
# else
|
||||
# define CXX_STD __cplusplus
|
||||
# endif
|
||||
#elif defined(__NVCOMPILER)
|
||||
# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init)
|
||||
# define CXX_STD CXX_STD_20
|
||||
# else
|
||||
# define CXX_STD __cplusplus
|
||||
# endif
|
||||
#elif defined(__INTEL_COMPILER) || defined(__PGI)
|
||||
# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes)
|
||||
# define CXX_STD CXX_STD_17
|
||||
# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi)
|
||||
# define CXX_STD CXX_STD_14
|
||||
# else
|
||||
# define CXX_STD __cplusplus
|
||||
# endif
|
||||
#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__)
|
||||
# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi)
|
||||
# define CXX_STD CXX_STD_14
|
||||
# else
|
||||
# define CXX_STD __cplusplus
|
||||
# endif
|
||||
#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__)
|
||||
# define CXX_STD CXX_STD_11
|
||||
#else
|
||||
# define CXX_STD __cplusplus
|
||||
#endif
|
||||
|
||||
const char* info_language_standard_default = "INFO" ":" "standard_default["
|
||||
#if CXX_STD > CXX_STD_23
|
||||
"26"
|
||||
#elif CXX_STD > CXX_STD_20
|
||||
"23"
|
||||
#elif CXX_STD > CXX_STD_17
|
||||
"20"
|
||||
#elif CXX_STD > CXX_STD_14
|
||||
"17"
|
||||
#elif CXX_STD > CXX_STD_11
|
||||
"14"
|
||||
#elif CXX_STD >= CXX_STD_11
|
||||
"11"
|
||||
#else
|
||||
"98"
|
||||
#endif
|
||||
"]";
|
||||
|
||||
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
|
||||
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
|
||||
defined(__TI_COMPILER_VERSION__) || defined(__RENESAS__)) && \
|
||||
!defined(__STRICT_ANSI__)
|
||||
"ON"
|
||||
#else
|
||||
"OFF"
|
||||
#endif
|
||||
"]";
|
||||
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
int require = 0;
|
||||
require += info_compiler[argc];
|
||||
require += info_platform[argc];
|
||||
require += info_arch[argc];
|
||||
#ifdef COMPILER_VERSION_MAJOR
|
||||
require += info_version[argc];
|
||||
#endif
|
||||
#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR)
|
||||
require += info_version_internal[argc];
|
||||
#endif
|
||||
#ifdef SIMULATE_ID
|
||||
require += info_simulate[argc];
|
||||
#endif
|
||||
#ifdef SIMULATE_VERSION_MAJOR
|
||||
require += info_simulate_version[argc];
|
||||
#endif
|
||||
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||
require += info_cray[argc];
|
||||
#endif
|
||||
require += info_language_standard_default[argc];
|
||||
require += info_language_extensions_default[argc];
|
||||
(void)argv;
|
||||
return require;
|
||||
}
|
||||
BIN
external/QCodeEditor/example/build/CMakeFiles/4.1.2/CompilerIdCXX/a.out
vendored
Executable file
BIN
external/QCodeEditor/example/build/CMakeFiles/4.1.2/CompilerIdCXX/a.out
vendored
Executable file
Binary file not shown.
5374
external/QCodeEditor/example/build/CMakeFiles/CMakeConfigureLog.yaml
vendored
Normal file
5374
external/QCodeEditor/example/build/CMakeFiles/CMakeConfigureLog.yaml
vendored
Normal file
File diff suppressed because it is too large
Load diff
16
external/QCodeEditor/example/build/CMakeFiles/CMakeDirectoryInformation.cmake
vendored
Normal file
16
external/QCodeEditor/example/build/CMakeFiles/CMakeDirectoryInformation.cmake
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||
|
||||
# Relative path conversion top directories.
|
||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/philipp/programing/QCodeEditor/example")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/philipp/programing/QCodeEditor/example/build")
|
||||
|
||||
# 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})
|
||||
4
external/QCodeEditor/example/build/CMakeFiles/CMakeRuleHashes.txt
vendored
Normal file
4
external/QCodeEditor/example/build/CMakeFiles/CMakeRuleHashes.txt
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# Hashes of file build rules.
|
||||
3827d20ed25ae4af6628751bc55624fd CMakeFiles/QCodeEditorExample_autogen
|
||||
273c37cad74f708aa5517efc0462cd7c QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp
|
||||
ffe1fe4c492f50495160a13e0d2045b4 QCodeEditorExample_autogen/timestamp
|
||||
7
external/QCodeEditor/example/build/CMakeFiles/InstallScripts.json
vendored
Normal file
7
external/QCodeEditor/example/build/CMakeFiles/InstallScripts.json
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"InstallScripts" :
|
||||
[
|
||||
"/home/philipp/programing/QCodeEditor/example/build/cmake_install.cmake"
|
||||
],
|
||||
"Parallel" : false
|
||||
}
|
||||
389
external/QCodeEditor/example/build/CMakeFiles/Makefile.cmake
vendored
Normal file
389
external/QCodeEditor/example/build/CMakeFiles/Makefile.cmake
vendored
Normal file
|
|
@ -0,0 +1,389 @@
|
|||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||
|
||||
# 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"
|
||||
"/home/philipp/programing/QCodeEditor/example/CMakeLists.txt"
|
||||
"CMakeFiles/4.1.2/CMakeCCompiler.cmake"
|
||||
"CMakeFiles/4.1.2/CMakeCXXCompiler.cmake"
|
||||
"CMakeFiles/4.1.2/CMakeSystem.cmake"
|
||||
"/home/philipp/programing/QCodeEditor/example/resources/demo_resources.qrc"
|
||||
"/usr/lib/cmake/Qt6/3rdparty/kwin/FindXKB.cmake"
|
||||
"/usr/lib/cmake/Qt6/FindWrapAtomic.cmake"
|
||||
"/usr/lib/cmake/Qt6/FindWrapOpenGL.cmake"
|
||||
"/usr/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake"
|
||||
"/usr/lib/cmake/Qt6/Qt6Config.cmake"
|
||||
"/usr/lib/cmake/Qt6/Qt6ConfigExtras.cmake"
|
||||
"/usr/lib/cmake/Qt6/Qt6ConfigVersion.cmake"
|
||||
"/usr/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake"
|
||||
"/usr/lib/cmake/Qt6/Qt6Dependencies.cmake"
|
||||
"/usr/lib/cmake/Qt6/Qt6Targets.cmake"
|
||||
"/usr/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtFeature.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtFeatureCommon.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtInstallPaths.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicAndroidHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicAppleHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicCMakeEarlyPolicyHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicGitHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicPluginHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicPluginHelpers_v2.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomAttributionHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomCpeHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomDepHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomFileHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomLicenseHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomOpsHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomPurlHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomPythonHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomQtEntityHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomSystemDepHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicTargetHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicTestHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicToolHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6/QtPublicWindowsHelpers.cmake"
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake"
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake"
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake"
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake"
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreMacros.cmake"
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateConfigVersion.cmake"
|
||||
"/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateConfigVersionImpl.cmake"
|
||||
"/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateDependencies.cmake"
|
||||
"/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateVersionlessAliasTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake"
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake"
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake"
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake"
|
||||
"/usr/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake"
|
||||
"/usr/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake"
|
||||
"/usr/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake"
|
||||
"/usr/lib/cmake/Qt6DBus/Qt6DBusTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6DBus/Qt6DBusVersionlessAliasTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateConfigVersion.cmake"
|
||||
"/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateConfigVersionImpl.cmake"
|
||||
"/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateDependencies.cmake"
|
||||
"/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateVersionlessAliasTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake"
|
||||
"/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake"
|
||||
"/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake"
|
||||
"/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateConfigVersion.cmake"
|
||||
"/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateConfigVersionImpl.cmake"
|
||||
"/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateDependencies.cmake"
|
||||
"/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateVersionlessAliasTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake"
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake"
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake"
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake"
|
||||
"/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake"
|
||||
"/usr/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake"
|
||||
"/usr/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake"
|
||||
"/usr/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake"
|
||||
"/usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateConfigVersion.cmake"
|
||||
"/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateConfigVersionImpl.cmake"
|
||||
"/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateDependencies.cmake"
|
||||
"/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateVersionlessAliasTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake"
|
||||
"/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake"
|
||||
"/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake"
|
||||
"/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake"
|
||||
"/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake"
|
||||
"/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake"
|
||||
"/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake"
|
||||
"/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake"
|
||||
"/usr/share/cmake/Modules/CMakeCInformation.cmake"
|
||||
"/usr/share/cmake/Modules/CMakeCXXInformation.cmake"
|
||||
"/usr/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake"
|
||||
"/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake"
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake"
|
||||
"/usr/share/cmake/Modules/CMakeGenericSystem.cmake"
|
||||
"/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake"
|
||||
"/usr/share/cmake/Modules/CMakeLanguageInformation.cmake"
|
||||
"/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake"
|
||||
"/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake"
|
||||
"/usr/share/cmake/Modules/CheckCSourceCompiles.cmake"
|
||||
"/usr/share/cmake/Modules/CheckCXXCompilerFlag.cmake"
|
||||
"/usr/share/cmake/Modules/CheckCXXSourceCompiles.cmake"
|
||||
"/usr/share/cmake/Modules/CheckIncludeFile.cmake"
|
||||
"/usr/share/cmake/Modules/CheckLibraryExists.cmake"
|
||||
"/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
||||
"/usr/share/cmake/Modules/Compiler/GNU-C.cmake"
|
||||
"/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake"
|
||||
"/usr/share/cmake/Modules/Compiler/GNU.cmake"
|
||||
"/usr/share/cmake/Modules/FeatureSummary.cmake"
|
||||
"/usr/share/cmake/Modules/FindOpenGL.cmake"
|
||||
"/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
|
||||
"/usr/share/cmake/Modules/FindPackageMessage.cmake"
|
||||
"/usr/share/cmake/Modules/FindPkgConfig.cmake"
|
||||
"/usr/share/cmake/Modules/FindThreads.cmake"
|
||||
"/usr/share/cmake/Modules/FindVulkan.cmake"
|
||||
"/usr/share/cmake/Modules/GNUInstallDirs.cmake"
|
||||
"/usr/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake"
|
||||
"/usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake"
|
||||
"/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake"
|
||||
"/usr/share/cmake/Modules/Internal/CheckCompilerFlag.cmake"
|
||||
"/usr/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake"
|
||||
"/usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake"
|
||||
"/usr/share/cmake/Modules/Linker/GNU-C.cmake"
|
||||
"/usr/share/cmake/Modules/Linker/GNU-CXX.cmake"
|
||||
"/usr/share/cmake/Modules/Linker/GNU.cmake"
|
||||
"/usr/share/cmake/Modules/MacroAddFileDependencies.cmake"
|
||||
"/usr/share/cmake/Modules/Platform/Linker/GNU.cmake"
|
||||
"/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-C.cmake"
|
||||
"/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake"
|
||||
"/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake"
|
||||
"/usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake"
|
||||
"/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake"
|
||||
"/usr/share/cmake/Modules/Platform/Linux-GNU.cmake"
|
||||
"/usr/share/cmake/Modules/Platform/Linux-Initialize.cmake"
|
||||
"/usr/share/cmake/Modules/Platform/Linux.cmake"
|
||||
"/usr/share/cmake/Modules/Platform/UnixPaths.cmake"
|
||||
)
|
||||
|
||||
# The corresponding makefile is:
|
||||
set(CMAKE_MAKEFILE_OUTPUTS
|
||||
"Makefile"
|
||||
"CMakeFiles/cmake.check_cache"
|
||||
)
|
||||
|
||||
# Byproducts of CMake generate step:
|
||||
set(CMAKE_MAKEFILE_PRODUCTS
|
||||
"CMakeFiles/QCodeEditorExample_autogen.dir/AutogenInfo.json"
|
||||
"CMakeFiles/QCodeEditorExample_autogen.dir/AutoRcc_demo_resources_3YJK5W5UP7_Info.json"
|
||||
".qt/QtDeploySupport.cmake"
|
||||
".qt/QtDeployTargets.cmake"
|
||||
"CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||
)
|
||||
|
||||
# Dependency information for all targets:
|
||||
set(CMAKE_DEPEND_INFO_FILES
|
||||
"CMakeFiles/QCodeEditorExample.dir/DependInfo.cmake"
|
||||
"CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/DependInfo.cmake"
|
||||
"CMakeFiles/QCodeEditorExample_autogen.dir/DependInfo.cmake"
|
||||
)
|
||||
189
external/QCodeEditor/example/build/CMakeFiles/Makefile2
vendored
Normal file
189
external/QCodeEditor/example/build/CMakeFiles/Makefile2
vendored
Normal file
|
|
@ -0,0 +1,189 @@
|
|||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||
|
||||
# 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/philipp/programing/QCodeEditor/example
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/philipp/programing/QCodeEditor/example/build
|
||||
|
||||
#=============================================================================
|
||||
# Directory level rules for the build root directory
|
||||
|
||||
# The main recursive "all" target.
|
||||
all: CMakeFiles/QCodeEditorExample.dir/all
|
||||
.PHONY : all
|
||||
|
||||
# The main recursive "codegen" target.
|
||||
codegen: CMakeFiles/QCodeEditorExample.dir/codegen
|
||||
.PHONY : codegen
|
||||
|
||||
# The main recursive "preinstall" target.
|
||||
preinstall:
|
||||
.PHONY : preinstall
|
||||
|
||||
# The main recursive "clean" target.
|
||||
clean: CMakeFiles/QCodeEditorExample.dir/clean
|
||||
clean: CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/clean
|
||||
clean: CMakeFiles/QCodeEditorExample_autogen.dir/clean
|
||||
.PHONY : clean
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for target CMakeFiles/QCodeEditorExample.dir
|
||||
|
||||
# All Build rule for target.
|
||||
CMakeFiles/QCodeEditorExample.dir/all: CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/all
|
||||
CMakeFiles/QCodeEditorExample.dir/all: CMakeFiles/QCodeEditorExample_autogen.dir/all
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample.dir/build.make CMakeFiles/QCodeEditorExample.dir/depend
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample.dir/build.make CMakeFiles/QCodeEditorExample.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/philipp/programing/QCodeEditor/example/build/CMakeFiles --progress-num=1,2,3,4,5,6,7 "Built target QCodeEditorExample"
|
||||
.PHONY : CMakeFiles/QCodeEditorExample.dir/all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
CMakeFiles/QCodeEditorExample.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/philipp/programing/QCodeEditor/example/build/CMakeFiles 8
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/QCodeEditorExample.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/philipp/programing/QCodeEditor/example/build/CMakeFiles 0
|
||||
.PHONY : CMakeFiles/QCodeEditorExample.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
QCodeEditorExample: CMakeFiles/QCodeEditorExample.dir/rule
|
||||
.PHONY : QCodeEditorExample
|
||||
|
||||
# codegen rule for target.
|
||||
CMakeFiles/QCodeEditorExample.dir/codegen: CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/all
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample.dir/build.make CMakeFiles/QCodeEditorExample.dir/codegen
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/philipp/programing/QCodeEditor/example/build/CMakeFiles --progress-num=1,2,3,4,5,6,7 "Finished codegen for target QCodeEditorExample"
|
||||
.PHONY : CMakeFiles/QCodeEditorExample.dir/codegen
|
||||
|
||||
# clean rule for target.
|
||||
CMakeFiles/QCodeEditorExample.dir/clean:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample.dir/build.make CMakeFiles/QCodeEditorExample.dir/clean
|
||||
.PHONY : CMakeFiles/QCodeEditorExample.dir/clean
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for target CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir
|
||||
|
||||
# All Build rule for target.
|
||||
CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/all:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/build.make CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/depend
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/build.make CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/philipp/programing/QCodeEditor/example/build/CMakeFiles --progress-num= "Built target QCodeEditorExample_autogen_timestamp_deps"
|
||||
.PHONY : CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/philipp/programing/QCodeEditor/example/build/CMakeFiles 0
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/philipp/programing/QCodeEditor/example/build/CMakeFiles 0
|
||||
.PHONY : CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
QCodeEditorExample_autogen_timestamp_deps: CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/rule
|
||||
.PHONY : QCodeEditorExample_autogen_timestamp_deps
|
||||
|
||||
# codegen rule for target.
|
||||
CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/codegen:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/build.make CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/codegen
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/philipp/programing/QCodeEditor/example/build/CMakeFiles --progress-num= "Finished codegen for target QCodeEditorExample_autogen_timestamp_deps"
|
||||
.PHONY : CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/codegen
|
||||
|
||||
# clean rule for target.
|
||||
CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/clean:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/build.make CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/clean
|
||||
.PHONY : CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/clean
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for target CMakeFiles/QCodeEditorExample_autogen.dir
|
||||
|
||||
# All Build rule for target.
|
||||
CMakeFiles/QCodeEditorExample_autogen.dir/all: CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/all
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample_autogen.dir/build.make CMakeFiles/QCodeEditorExample_autogen.dir/depend
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample_autogen.dir/build.make CMakeFiles/QCodeEditorExample_autogen.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/philipp/programing/QCodeEditor/example/build/CMakeFiles --progress-num=8 "Built target QCodeEditorExample_autogen"
|
||||
.PHONY : CMakeFiles/QCodeEditorExample_autogen.dir/all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
CMakeFiles/QCodeEditorExample_autogen.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/philipp/programing/QCodeEditor/example/build/CMakeFiles 1
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/QCodeEditorExample_autogen.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/philipp/programing/QCodeEditor/example/build/CMakeFiles 0
|
||||
.PHONY : CMakeFiles/QCodeEditorExample_autogen.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
QCodeEditorExample_autogen: CMakeFiles/QCodeEditorExample_autogen.dir/rule
|
||||
.PHONY : QCodeEditorExample_autogen
|
||||
|
||||
# codegen rule for target.
|
||||
CMakeFiles/QCodeEditorExample_autogen.dir/codegen: CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/all
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample_autogen.dir/build.make CMakeFiles/QCodeEditorExample_autogen.dir/codegen
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/philipp/programing/QCodeEditor/example/build/CMakeFiles --progress-num=8 "Finished codegen for target QCodeEditorExample_autogen"
|
||||
.PHONY : CMakeFiles/QCodeEditorExample_autogen.dir/codegen
|
||||
|
||||
# clean rule for target.
|
||||
CMakeFiles/QCodeEditorExample_autogen.dir/clean:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample_autogen.dir/build.make CMakeFiles/QCodeEditorExample_autogen.dir/clean
|
||||
.PHONY : CMakeFiles/QCodeEditorExample_autogen.dir/clean
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
||||
1
external/QCodeEditor/example/build/CMakeFiles/Progress/5
vendored
Normal file
1
external/QCodeEditor/example/build/CMakeFiles/Progress/5
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
empty
|
||||
1
external/QCodeEditor/example/build/CMakeFiles/Progress/8
vendored
Normal file
1
external/QCodeEditor/example/build/CMakeFiles/Progress/8
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
empty
|
||||
1
external/QCodeEditor/example/build/CMakeFiles/Progress/count.txt
vendored
Normal file
1
external/QCodeEditor/example/build/CMakeFiles/Progress/count.txt
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
8
|
||||
28
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/DependInfo.cmake
vendored
Normal file
28
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/DependInfo.cmake
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
|
||||
# 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
|
||||
"" "QCodeEditorExample_autogen/timestamp" "custom" "QCodeEditorExample_autogen/deps"
|
||||
"/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp" "CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o" "gcc" "CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o.d"
|
||||
"/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/mocs_compilation.cpp" "CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.o" "gcc" "CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.o.d"
|
||||
"/home/philipp/programing/QCodeEditor/example/src/MainWindow.cpp" "CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.o" "gcc" "CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.o.d"
|
||||
"/home/philipp/programing/QCodeEditor/example/src/main.cpp" "CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o" "gcc" "CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o.d"
|
||||
"" "QCodeEditorExample" "gcc" "CMakeFiles/QCodeEditorExample.dir/link.d"
|
||||
)
|
||||
|
||||
# Targets to which this target links which contain Fortran sources.
|
||||
set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
|
||||
)
|
||||
|
||||
# Targets to which this target links which contain Fortran sources.
|
||||
set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
|
||||
)
|
||||
|
||||
# Fortran module output directory.
|
||||
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||
Binary file not shown.
|
|
@ -0,0 +1,3 @@
|
|||
CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o: \
|
||||
/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp \
|
||||
/usr/include/stdc-predef.h
|
||||
Binary file not shown.
|
|
@ -0,0 +1,353 @@
|
|||
CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.o: \
|
||||
/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/mocs_compilation.cpp \
|
||||
/usr/include/stdc-predef.h \
|
||||
/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/6YEA5652QU/moc_MainWindow.cpp \
|
||||
/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/6YEA5652QU/../../../include/MainWindow.hpp \
|
||||
/usr/include/qt6/QtWidgets/QMainWindow \
|
||||
/usr/include/qt6/QtWidgets/qmainwindow.h \
|
||||
/usr/include/qt6/QtWidgets/qtwidgetsglobal.h \
|
||||
/usr/include/qt6/QtGui/qtguiglobal.h /usr/include/qt6/QtCore/qglobal.h \
|
||||
/usr/include/c++/15.2.1/type_traits \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||
/usr/include/features.h /usr/include/features-time64.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||
/usr/include/c++/15.2.1/pstl/pstl_config.h \
|
||||
/usr/include/c++/15.2.1/bits/version.h /usr/include/c++/15.2.1/cstddef \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \
|
||||
/usr/include/c++/15.2.1/utility \
|
||||
/usr/include/c++/15.2.1/bits/stl_relops.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_pair.h \
|
||||
/usr/include/c++/15.2.1/bits/move.h \
|
||||
/usr/include/c++/15.2.1/bits/utility.h \
|
||||
/usr/include/c++/15.2.1/initializer_list /usr/include/c++/15.2.1/cstdint \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \
|
||||
/usr/include/stdint.h /usr/include/bits/libc-header-start.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/time64.h /usr/include/bits/wchar.h \
|
||||
/usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \
|
||||
/usr/include/bits/stdint-least.h /usr/include/assert.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h \
|
||||
/usr/include/qt6/QtCore/qtcoreglobal.h \
|
||||
/usr/include/qt6/QtCore/qtversionchecks.h \
|
||||
/usr/include/qt6/QtCore/qtconfiginclude.h \
|
||||
/usr/include/c++/15.2.1/version /usr/include/qt6/QtCore/qconfig.h \
|
||||
/usr/include/qt6/QtCore/qtcore-config.h \
|
||||
/usr/include/qt6/QtCore/qtconfigmacros.h \
|
||||
/usr/include/qt6/QtCore/qtdeprecationdefinitions.h \
|
||||
/usr/include/qt6/QtCore/qcompilerdetection.h \
|
||||
/usr/include/qt6/QtCore/qprocessordetection.h \
|
||||
/usr/include/qt6/QtCore/qsystemdetection.h \
|
||||
/usr/include/qt6/QtCore/qtcoreexports.h \
|
||||
/usr/include/qt6/QtCore/qtdeprecationmarkers.h \
|
||||
/usr/include/qt6/QtCore/qtclasshelpermacros.h \
|
||||
/usr/include/qt6/QtCore/qtpreprocessorsupport.h \
|
||||
/usr/include/qt6/QtCore/qassert.h /usr/include/qt6/QtCore/qtnoop.h \
|
||||
/usr/include/qt6/QtCore/qtypes.h /usr/include/qt6/QtCore/qtversion.h \
|
||||
/usr/include/qt6/QtCore/qtypeinfo.h \
|
||||
/usr/include/qt6/QtCore/qcontainerfwd.h /usr/include/c++/15.2.1/limits \
|
||||
/usr/include/qt6/QtCore/qsysinfo.h /usr/include/qt6/QtCore/qlogging.h \
|
||||
/usr/include/qt6/QtCore/qflags.h /usr/include/qt6/QtCore/qcompare_impl.h \
|
||||
/usr/include/c++/15.2.1/algorithm \
|
||||
/usr/include/c++/15.2.1/bits/stl_algobase.h \
|
||||
/usr/include/c++/15.2.1/bits/functexcept.h \
|
||||
/usr/include/c++/15.2.1/bits/exception_defines.h \
|
||||
/usr/include/c++/15.2.1/bits/cpp_type_traits.h \
|
||||
/usr/include/c++/15.2.1/ext/type_traits.h \
|
||||
/usr/include/c++/15.2.1/ext/numeric_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator_base_types.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator_base_funcs.h \
|
||||
/usr/include/c++/15.2.1/bits/concept_check.h \
|
||||
/usr/include/c++/15.2.1/debug/assertions.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator.h \
|
||||
/usr/include/c++/15.2.1/bits/ptr_traits.h \
|
||||
/usr/include/c++/15.2.1/debug/debug.h \
|
||||
/usr/include/c++/15.2.1/bits/predefined_ops.h \
|
||||
/usr/include/c++/15.2.1/bit /usr/include/c++/15.2.1/concepts \
|
||||
/usr/include/c++/15.2.1/bits/stl_algo.h \
|
||||
/usr/include/c++/15.2.1/bits/algorithmfwd.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_heap.h \
|
||||
/usr/include/c++/15.2.1/bits/uniform_int_dist.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_tempbuf.h /usr/include/c++/15.2.1/new \
|
||||
/usr/include/c++/15.2.1/bits/exception.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_construct.h \
|
||||
/usr/include/c++/15.2.1/cstdlib /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
|
||||
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||
/usr/include/sys/types.h /usr/include/bits/types/clock_t.h \
|
||||
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \
|
||||
/usr/include/bits/types/timer_t.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/endianness.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
|
||||
/usr/include/bits/types/struct_timeval.h \
|
||||
/usr/include/bits/types/struct_timespec.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||
/usr/include/bits/pthreadtypes-arch.h \
|
||||
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib-float.h /usr/include/c++/15.2.1/bits/std_abs.h \
|
||||
/usr/include/c++/15.2.1/pstl/glue_algorithm_defs.h \
|
||||
/usr/include/c++/15.2.1/pstl/execution_defs.h \
|
||||
/usr/include/qt6/QtCore/qatomic.h /usr/include/qt6/QtCore/qbasicatomic.h \
|
||||
/usr/include/qt6/QtCore/qatomic_cxx11.h \
|
||||
/usr/include/qt6/QtCore/qgenericatomic.h \
|
||||
/usr/include/qt6/QtCore/qyieldcpu.h /usr/include/c++/15.2.1/atomic \
|
||||
/usr/include/c++/15.2.1/bits/atomic_base.h \
|
||||
/usr/include/c++/15.2.1/bits/atomic_lockfree_defines.h \
|
||||
/usr/include/qt6/QtCore/qconstructormacros.h \
|
||||
/usr/include/qt6/QtCore/qdarwinhelpers.h \
|
||||
/usr/include/qt6/QtCore/qexceptionhandling.h \
|
||||
/usr/include/qt6/QtCore/qforeach.h \
|
||||
/usr/include/qt6/QtCore/qttypetraits.h /usr/include/c++/15.2.1/optional \
|
||||
/usr/include/c++/15.2.1/exception \
|
||||
/usr/include/c++/15.2.1/bits/exception_ptr.h \
|
||||
/usr/include/c++/15.2.1/bits/cxxabi_init_exception.h \
|
||||
/usr/include/c++/15.2.1/typeinfo \
|
||||
/usr/include/c++/15.2.1/bits/hash_bytes.h \
|
||||
/usr/include/c++/15.2.1/bits/nested_exception.h \
|
||||
/usr/include/c++/15.2.1/bits/enable_special_members.h \
|
||||
/usr/include/c++/15.2.1/bits/functional_hash.h \
|
||||
/usr/include/c++/15.2.1/tuple \
|
||||
/usr/include/c++/15.2.1/bits/uses_allocator.h \
|
||||
/usr/include/c++/15.2.1/bits/invoke.h /usr/include/c++/15.2.1/variant \
|
||||
/usr/include/c++/15.2.1/bits/monostate.h \
|
||||
/usr/include/c++/15.2.1/bits/parse_numbers.h \
|
||||
/usr/include/c++/15.2.1/ext/aligned_buffer.h \
|
||||
/usr/include/qt6/QtCore/qfunctionpointer.h \
|
||||
/usr/include/qt6/QtCore/qglobalstatic.h \
|
||||
/usr/include/qt6/QtCore/qmalloc.h /usr/include/qt6/QtCore/qminmax.h \
|
||||
/usr/include/qt6/QtCore/qnumeric.h /usr/include/c++/15.2.1/cmath \
|
||||
/usr/include/c++/15.2.1/bits/requires_hosted.h /usr/include/math.h \
|
||||
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
|
||||
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
|
||||
/usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \
|
||||
/usr/include/bits/mathcalls-helper-functions.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \
|
||||
/usr/include/bits/iscanonical.h /usr/include/c++/15.2.1/bits/specfun.h \
|
||||
/usr/include/c++/15.2.1/tr1/gamma.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/special_function_util.h \
|
||||
/usr/include/c++/15.2.1/tr1/bessel_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/beta_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/ell_integral.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/exp_integral.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/hypergeometric.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/legendre_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/modified_bessel_func.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/poly_hermite.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/poly_laguerre.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/riemann_zeta.tcc \
|
||||
/usr/include/qt6/QtCore/qoverload.h /usr/include/qt6/QtCore/qswap.h \
|
||||
/usr/include/qt6/QtCore/qtenvironmentvariables.h \
|
||||
/usr/include/qt6/QtCore/qtresource.h \
|
||||
/usr/include/qt6/QtCore/qttranslation.h \
|
||||
/usr/include/qt6/QtCore/qversiontagging.h \
|
||||
/usr/include/qt6/QtGui/qtgui-config.h \
|
||||
/usr/include/qt6/QtGui/qtguiexports.h \
|
||||
/usr/include/qt6/QtWidgets/qtwidgets-config.h \
|
||||
/usr/include/qt6/QtWidgets/qtwidgetsexports.h \
|
||||
/usr/include/qt6/QtWidgets/qwidget.h \
|
||||
/usr/include/qt6/QtGui/qwindowdefs.h \
|
||||
/usr/include/qt6/QtCore/qobjectdefs.h \
|
||||
/usr/include/qt6/QtCore/qnamespace.h /usr/include/qt6/QtCore/qcompare.h \
|
||||
/usr/include/qt6/QtCore/qstdlibdetection.h \
|
||||
/usr/include/qt6/QtCore/qcomparehelpers.h \
|
||||
/usr/include/qt6/QtCore/q20type_traits.h \
|
||||
/usr/include/c++/15.2.1/functional \
|
||||
/usr/include/c++/15.2.1/bits/stl_function.h \
|
||||
/usr/include/c++/15.2.1/backward/binders.h \
|
||||
/usr/include/c++/15.2.1/bits/refwrap.h \
|
||||
/usr/include/c++/15.2.1/bits/std_function.h \
|
||||
/usr/include/c++/15.2.1/unordered_map \
|
||||
/usr/include/c++/15.2.1/bits/unordered_map.h \
|
||||
/usr/include/c++/15.2.1/bits/hashtable.h \
|
||||
/usr/include/c++/15.2.1/bits/hashtable_policy.h \
|
||||
/usr/include/c++/15.2.1/ext/alloc_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/alloc_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/memoryfwd.h \
|
||||
/usr/include/c++/15.2.1/bits/allocator.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++allocator.h \
|
||||
/usr/include/c++/15.2.1/bits/new_allocator.h \
|
||||
/usr/include/c++/15.2.1/bits/node_handle.h \
|
||||
/usr/include/c++/15.2.1/bits/range_access.h \
|
||||
/usr/include/c++/15.2.1/bits/erase_if.h \
|
||||
/usr/include/c++/15.2.1/bits/memory_resource.h \
|
||||
/usr/include/c++/15.2.1/bits/uses_allocator_args.h \
|
||||
/usr/include/c++/15.2.1/vector \
|
||||
/usr/include/c++/15.2.1/bits/stl_uninitialized.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_vector.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_bvector.h \
|
||||
/usr/include/c++/15.2.1/bits/vector.tcc /usr/include/c++/15.2.1/array \
|
||||
/usr/include/c++/15.2.1/compare /usr/include/qt6/QtCore/qtmetamacros.h \
|
||||
/usr/include/qt6/QtCore/qobjectdefs_impl.h \
|
||||
/usr/include/qt6/QtCore/qfunctionaltools_impl.h \
|
||||
/usr/include/c++/15.2.1/memory \
|
||||
/usr/include/c++/15.2.1/bits/stl_raw_storage_iter.h \
|
||||
/usr/include/c++/15.2.1/bits/align.h \
|
||||
/usr/include/c++/15.2.1/bits/unique_ptr.h \
|
||||
/usr/include/c++/15.2.1/bits/shared_ptr.h /usr/include/c++/15.2.1/iosfwd \
|
||||
/usr/include/c++/15.2.1/bits/stringfwd.h \
|
||||
/usr/include/c++/15.2.1/bits/postypes.h /usr/include/c++/15.2.1/cwchar \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h \
|
||||
/usr/include/bits/types/wint_t.h /usr/include/bits/types/mbstate_t.h \
|
||||
/usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \
|
||||
/usr/include/bits/types/FILE.h \
|
||||
/usr/include/c++/15.2.1/bits/shared_ptr_base.h \
|
||||
/usr/include/c++/15.2.1/bits/allocated_ptr.h \
|
||||
/usr/include/c++/15.2.1/ext/atomicity.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/gthr.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/gthr-default.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \
|
||||
/usr/include/linux/sched/types.h /usr/include/linux/types.h \
|
||||
/usr/include/asm/types.h /usr/include/asm-generic/types.h \
|
||||
/usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \
|
||||
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/stddef.h /usr/include/asm/posix_types.h \
|
||||
/usr/include/asm/posix_types_64.h /usr/include/asm-generic/posix_types.h \
|
||||
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
|
||||
/usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \
|
||||
/usr/include/bits/types/struct_tm.h \
|
||||
/usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \
|
||||
/usr/include/bits/types/struct___jmp_buf_tag.h \
|
||||
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/atomic_word.h \
|
||||
/usr/include/sys/single_threaded.h \
|
||||
/usr/include/c++/15.2.1/ext/concurrence.h \
|
||||
/usr/include/c++/15.2.1/bits/shared_ptr_atomic.h \
|
||||
/usr/include/c++/15.2.1/backward/auto_ptr.h \
|
||||
/usr/include/c++/15.2.1/pstl/glue_memory_defs.h \
|
||||
/usr/include/qt6/QtCore/qobject.h /usr/include/qt6/QtCore/qstring.h \
|
||||
/usr/include/qt6/QtCore/qchar.h /usr/include/qt6/QtCore/qstringview.h \
|
||||
/usr/include/qt6/QtCore/qbytearray.h /usr/include/qt6/QtCore/qrefcount.h \
|
||||
/usr/include/qt6/QtCore/qarraydata.h /usr/include/qt6/QtCore/qpair.h \
|
||||
/usr/include/string.h /usr/include/strings.h \
|
||||
/usr/include/qt6/QtCore/qarraydatapointer.h \
|
||||
/usr/include/qt6/QtCore/qarraydataops.h \
|
||||
/usr/include/qt6/QtCore/qcontainertools_impl.h \
|
||||
/usr/include/qt6/QtCore/qxptype_traits.h /usr/include/c++/15.2.1/cstring \
|
||||
/usr/include/c++/15.2.1/iterator \
|
||||
/usr/include/c++/15.2.1/bits/stream_iterator.h \
|
||||
/usr/include/c++/15.2.1/bits/streambuf_iterator.h \
|
||||
/usr/include/c++/15.2.1/streambuf \
|
||||
/usr/include/c++/15.2.1/bits/localefwd.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++locale.h \
|
||||
/usr/include/c++/15.2.1/clocale /usr/include/locale.h \
|
||||
/usr/include/bits/locale.h /usr/include/c++/15.2.1/cctype \
|
||||
/usr/include/ctype.h /usr/include/c++/15.2.1/bits/ios_base.h \
|
||||
/usr/include/c++/15.2.1/bits/locale_classes.h \
|
||||
/usr/include/c++/15.2.1/string \
|
||||
/usr/include/c++/15.2.1/bits/char_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/ostream_insert.h \
|
||||
/usr/include/c++/15.2.1/bits/cxxabi_forced.h \
|
||||
/usr/include/c++/15.2.1/bits/basic_string.h \
|
||||
/usr/include/c++/15.2.1/string_view \
|
||||
/usr/include/c++/15.2.1/bits/string_view.tcc \
|
||||
/usr/include/c++/15.2.1/ext/string_conversions.h \
|
||||
/usr/include/c++/15.2.1/cstdio /usr/include/stdio.h \
|
||||
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \
|
||||
/usr/include/bits/types/struct_FILE.h \
|
||||
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/c++/15.2.1/cerrno \
|
||||
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/bits/types/error_t.h \
|
||||
/usr/include/c++/15.2.1/bits/charconv.h \
|
||||
/usr/include/c++/15.2.1/bits/basic_string.tcc \
|
||||
/usr/include/c++/15.2.1/bits/locale_classes.tcc \
|
||||
/usr/include/c++/15.2.1/system_error \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/error_constants.h \
|
||||
/usr/include/c++/15.2.1/stdexcept \
|
||||
/usr/include/c++/15.2.1/bits/streambuf.tcc \
|
||||
/usr/include/qt6/QtCore/q20functional.h \
|
||||
/usr/include/qt6/QtCore/q20memory.h /usr/include/qt6/QtCore/q17memory.h \
|
||||
/usr/include/qt6/QtCore/qbytearrayalgorithms.h \
|
||||
/usr/include/qt6/QtCore/qbytearrayview.h \
|
||||
/usr/include/qt6/QtCore/qstringfwd.h /usr/include/c++/15.2.1/stdlib.h \
|
||||
/usr/include/qt6/QtCore/qstringliteral.h \
|
||||
/usr/include/qt6/QtCore/qstringalgorithms.h \
|
||||
/usr/include/qt6/QtCore/qlatin1stringview.h \
|
||||
/usr/include/qt6/QtCore/qanystringview.h \
|
||||
/usr/include/qt6/QtCore/qutf8stringview.h \
|
||||
/usr/include/qt6/QtCore/qstringtokenizer.h \
|
||||
/usr/include/qt6/QtCore/qstringbuilder.h \
|
||||
/usr/include/qt6/QtCore/qstringconverter.h \
|
||||
/usr/include/qt6/QtCore/qstringconverter_base.h \
|
||||
/usr/include/qt6/QtCore/qlist.h /usr/include/qt6/QtCore/qhashfunctions.h \
|
||||
/usr/include/c++/15.2.1/numeric \
|
||||
/usr/include/c++/15.2.1/bits/stl_numeric.h \
|
||||
/usr/include/c++/15.2.1/pstl/glue_numeric_defs.h \
|
||||
/usr/include/qt6/QtCore/qiterator.h \
|
||||
/usr/include/qt6/QtCore/qbytearraylist.h \
|
||||
/usr/include/qt6/QtCore/qstringlist.h \
|
||||
/usr/include/qt6/QtCore/qalgorithms.h \
|
||||
/usr/include/qt6/QtCore/qstringmatcher.h \
|
||||
/usr/include/qt6/QtCore/qscopedpointer.h \
|
||||
/usr/include/qt6/QtCore/qmetatype.h \
|
||||
/usr/include/qt6/QtCore/qdatastream.h \
|
||||
/usr/include/qt6/QtCore/qiodevicebase.h \
|
||||
/usr/include/qt6/QtCore/qfloat16.h /usr/include/qt6/QtCore/qmath.h \
|
||||
/usr/include/qt6/QtCore/qtformat_impl.h \
|
||||
/usr/include/qt6/QtCore/qiterable.h \
|
||||
/usr/include/qt6/QtCore/qmetacontainer.h \
|
||||
/usr/include/qt6/QtCore/qcontainerinfo.h \
|
||||
/usr/include/qt6/QtCore/qtaggedpointer.h \
|
||||
/usr/include/qt6/QtCore/qscopeguard.h /usr/include/c++/15.2.1/list \
|
||||
/usr/include/c++/15.2.1/bits/stl_list.h \
|
||||
/usr/include/c++/15.2.1/bits/list.tcc /usr/include/c++/15.2.1/map \
|
||||
/usr/include/c++/15.2.1/bits/stl_tree.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_map.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_multimap.h \
|
||||
/usr/include/qt6/QtCore/qobject_impl.h \
|
||||
/usr/include/qt6/QtCore/qbindingstorage.h /usr/include/c++/15.2.1/chrono \
|
||||
/usr/include/c++/15.2.1/bits/chrono.h /usr/include/c++/15.2.1/ratio \
|
||||
/usr/include/c++/15.2.1/ctime /usr/include/qt6/QtCore/qmargins.h \
|
||||
/usr/include/qt6/QtCore/q23utility.h \
|
||||
/usr/include/qt6/QtCore/q20utility.h /usr/include/qt6/QtGui/qaction.h \
|
||||
/usr/include/qt6/QtGui/qkeysequence.h /usr/include/qt6/QtGui/qicon.h \
|
||||
/usr/include/qt6/QtCore/qsize.h /usr/include/qt6/QtGui/qpixmap.h \
|
||||
/usr/include/qt6/QtGui/qpaintdevice.h /usr/include/qt6/QtCore/qrect.h \
|
||||
/usr/include/qt6/QtCore/qpoint.h /usr/include/qt6/QtGui/qcolor.h \
|
||||
/usr/include/qt6/QtGui/qrgb.h /usr/include/qt6/QtGui/qrgba64.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/uio_lim.h /usr/include/qt6/QtCore/qshareddata.h \
|
||||
/usr/include/qt6/QtGui/qimage.h /usr/include/qt6/QtGui/qpixelformat.h \
|
||||
/usr/include/qt6/QtGui/qtransform.h /usr/include/qt6/QtGui/qpolygon.h \
|
||||
/usr/include/qt6/QtGui/qregion.h /usr/include/qt6/QtCore/qspan.h \
|
||||
/usr/include/c++/15.2.1/cassert /usr/include/qt6/QtCore/q20iterator.h \
|
||||
/usr/include/qt6/QtCore/qline.h /usr/include/qt6/QtCore/qvariant.h \
|
||||
/usr/include/qt6/QtCore/qdebug.h /usr/include/qt6/QtCore/qtextstream.h \
|
||||
/usr/include/qt6/QtCore/qcontiguouscache.h \
|
||||
/usr/include/c++/15.2.1/climits /usr/include/qt6/QtCore/qsharedpointer.h \
|
||||
/usr/include/qt6/QtCore/qsharedpointer_impl.h \
|
||||
/usr/include/c++/15.2.1/set /usr/include/c++/15.2.1/bits/stl_set.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_multiset.h \
|
||||
/usr/include/c++/15.2.1/unordered_set \
|
||||
/usr/include/c++/15.2.1/bits/unordered_set.h \
|
||||
/usr/include/qt6/QtCore/qmap.h \
|
||||
/usr/include/qt6/QtCore/qshareddata_impl.h \
|
||||
/usr/include/qt6/QtCore/qset.h /usr/include/qt6/QtCore/qhash.h \
|
||||
/usr/include/qt6/QtCore/qvarlengtharray.h \
|
||||
/usr/include/qt6/QtGui/qpalette.h /usr/include/qt6/QtGui/qbrush.h \
|
||||
/usr/include/qt6/QtGui/qfont.h /usr/include/qt6/QtCore/qendian.h \
|
||||
/usr/include/qt6/QtGui/qfontmetrics.h /usr/include/qt6/QtGui/qfontinfo.h \
|
||||
/usr/include/qt6/QtGui/qfontvariableaxis.h \
|
||||
/usr/include/qt6/QtWidgets/qsizepolicy.h \
|
||||
/usr/include/qt6/QtGui/qcursor.h /usr/include/qt6/QtGui/qbitmap.h \
|
||||
/usr/include/qt6/QtWidgets/qtabwidget.h /usr/include/qt6/QtCore/QString \
|
||||
/usr/include/qt6/QtCore/qstring.h /usr/include/qt6/QtCore/QVector \
|
||||
/usr/include/qt6/QtCore/qvector.h /usr/include/qt6/QtCore/QPair \
|
||||
/usr/include/qt6/QtCore/qpair.h /usr/include/qt6/QtCore/qtmochelpers.h \
|
||||
/usr/include/qt6/QtCore/qtmocconstants.h \
|
||||
/usr/include/qt6/QtCore/q20algorithm.h \
|
||||
/usr/include/qt6/QtCore/q23type_traits.h
|
||||
188
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/build.make
vendored
Normal file
188
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/build.make
vendored
Normal file
|
|
@ -0,0 +1,188 @@
|
|||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||
|
||||
# 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/philipp/programing/QCodeEditor/example
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/philipp/programing/QCodeEditor/example/build
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include CMakeFiles/QCodeEditorExample.dir/depend.make
|
||||
# Include any dependencies generated by the compiler for this target.
|
||||
include CMakeFiles/QCodeEditorExample.dir/compiler_depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include CMakeFiles/QCodeEditorExample.dir/progress.make
|
||||
|
||||
# Include the compile flags for this target's objects.
|
||||
include CMakeFiles/QCodeEditorExample.dir/flags.make
|
||||
|
||||
QCodeEditorExample_autogen/timestamp: /usr/lib/qt6/moc
|
||||
QCodeEditorExample_autogen/timestamp: CMakeFiles/QCodeEditorExample.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/philipp/programing/QCodeEditor/example/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC for target QCodeEditorExample"
|
||||
/usr/bin/cmake -E cmake_autogen /home/philipp/programing/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/AutogenInfo.json ""
|
||||
/usr/bin/cmake -E touch /home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/timestamp
|
||||
|
||||
QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp: /home/philipp/programing/QCodeEditor/example/resources/demo_resources.qrc
|
||||
QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp: CMakeFiles/QCodeEditorExample_autogen.dir/AutoRcc_demo_resources_3YJK5W5UP7_Info.json
|
||||
QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp: /home/philipp/programing/QCodeEditor/example/resources/code_samples/python.py
|
||||
QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp: /home/philipp/programing/QCodeEditor/example/resources/code_samples/cxx.cpp
|
||||
QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp: /home/philipp/programing/QCodeEditor/example/resources/code_samples/xml.xml
|
||||
QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp: /home/philipp/programing/QCodeEditor/example/resources/code_samples/json.json
|
||||
QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp: /home/philipp/programing/QCodeEditor/example/resources/code_samples/lua.lua
|
||||
QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp: /home/philipp/programing/QCodeEditor/example/resources/code_samples/shader.glsl
|
||||
QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp: /home/philipp/programing/QCodeEditor/example/resources/styles/drakula.xml
|
||||
QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp: /usr/lib/qt6/rcc
|
||||
QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp: /usr/lib/qt6/rcc
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/philipp/programing/QCodeEditor/example/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Automatic RCC for resources/demo_resources.qrc"
|
||||
/usr/bin/cmake -E cmake_autorcc /home/philipp/programing/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/AutoRcc_demo_resources_3YJK5W5UP7_Info.json
|
||||
|
||||
CMakeFiles/QCodeEditorExample.dir/codegen:
|
||||
.PHONY : CMakeFiles/QCodeEditorExample.dir/codegen
|
||||
|
||||
CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.o: CMakeFiles/QCodeEditorExample.dir/flags.make
|
||||
CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.o: QCodeEditorExample_autogen/mocs_compilation.cpp
|
||||
CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.o: CMakeFiles/QCodeEditorExample.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/philipp/programing/QCodeEditor/example/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.o"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.o -MF CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.o.d -o CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.o -c /home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/mocs_compilation.cpp
|
||||
|
||||
CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.i"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/mocs_compilation.cpp > CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.i
|
||||
|
||||
CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.s"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/mocs_compilation.cpp -o CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.s
|
||||
|
||||
CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o: CMakeFiles/QCodeEditorExample.dir/flags.make
|
||||
CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o: /home/philipp/programing/QCodeEditor/example/src/main.cpp
|
||||
CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o: CMakeFiles/QCodeEditorExample.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/philipp/programing/QCodeEditor/example/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o -MF CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o.d -o CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o -c /home/philipp/programing/QCodeEditor/example/src/main.cpp
|
||||
|
||||
CMakeFiles/QCodeEditorExample.dir/src/main.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QCodeEditorExample.dir/src/main.cpp.i"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/philipp/programing/QCodeEditor/example/src/main.cpp > CMakeFiles/QCodeEditorExample.dir/src/main.cpp.i
|
||||
|
||||
CMakeFiles/QCodeEditorExample.dir/src/main.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QCodeEditorExample.dir/src/main.cpp.s"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/philipp/programing/QCodeEditor/example/src/main.cpp -o CMakeFiles/QCodeEditorExample.dir/src/main.cpp.s
|
||||
|
||||
CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.o: CMakeFiles/QCodeEditorExample.dir/flags.make
|
||||
CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.o: /home/philipp/programing/QCodeEditor/example/src/MainWindow.cpp
|
||||
CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.o: CMakeFiles/QCodeEditorExample.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/philipp/programing/QCodeEditor/example/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.o"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.o -MF CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.o.d -o CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.o -c /home/philipp/programing/QCodeEditor/example/src/MainWindow.cpp
|
||||
|
||||
CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.i"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/philipp/programing/QCodeEditor/example/src/MainWindow.cpp > CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.i
|
||||
|
||||
CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.s"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/philipp/programing/QCodeEditor/example/src/MainWindow.cpp -o CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.s
|
||||
|
||||
CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o: CMakeFiles/QCodeEditorExample.dir/flags.make
|
||||
CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o: QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp
|
||||
CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o: CMakeFiles/QCodeEditorExample.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/philipp/programing/QCodeEditor/example/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o -MF CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o.d -o CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o -c /home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp
|
||||
|
||||
CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.i"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp > CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.i
|
||||
|
||||
CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.s"
|
||||
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp -o CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.s
|
||||
|
||||
# Object files for target QCodeEditorExample
|
||||
QCodeEditorExample_OBJECTS = \
|
||||
"CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.o" \
|
||||
"CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o" \
|
||||
"CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.o" \
|
||||
"CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o"
|
||||
|
||||
# External object files for target QCodeEditorExample
|
||||
QCodeEditorExample_EXTERNAL_OBJECTS =
|
||||
|
||||
QCodeEditorExample: CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.o
|
||||
QCodeEditorExample: CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o
|
||||
QCodeEditorExample: CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.o
|
||||
QCodeEditorExample: CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o
|
||||
QCodeEditorExample: CMakeFiles/QCodeEditorExample.dir/build.make
|
||||
QCodeEditorExample: CMakeFiles/QCodeEditorExample.dir/compiler_depend.ts
|
||||
QCodeEditorExample: /usr/lib/libQt6Widgets.so.6.9.2
|
||||
QCodeEditorExample: /usr/lib/libQt6Gui.so.6.9.2
|
||||
QCodeEditorExample: /usr/lib/libGLX.so
|
||||
QCodeEditorExample: /usr/lib/libOpenGL.so
|
||||
QCodeEditorExample: /usr/lib/libQt6Core.so.6.9.2
|
||||
QCodeEditorExample: CMakeFiles/QCodeEditorExample.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/philipp/programing/QCodeEditor/example/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Linking CXX executable QCodeEditorExample"
|
||||
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/QCodeEditorExample.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
CMakeFiles/QCodeEditorExample.dir/build: QCodeEditorExample
|
||||
.PHONY : CMakeFiles/QCodeEditorExample.dir/build
|
||||
|
||||
CMakeFiles/QCodeEditorExample.dir/clean:
|
||||
$(CMAKE_COMMAND) -P CMakeFiles/QCodeEditorExample.dir/cmake_clean.cmake
|
||||
.PHONY : CMakeFiles/QCodeEditorExample.dir/clean
|
||||
|
||||
CMakeFiles/QCodeEditorExample.dir/depend: QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp
|
||||
CMakeFiles/QCodeEditorExample.dir/depend: QCodeEditorExample_autogen/timestamp
|
||||
cd /home/philipp/programing/QCodeEditor/example/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/philipp/programing/QCodeEditor/example /home/philipp/programing/QCodeEditor/example /home/philipp/programing/QCodeEditor/example/build /home/philipp/programing/QCodeEditor/example/build /home/philipp/programing/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/DependInfo.cmake "--color=$(COLOR)"
|
||||
.PHONY : CMakeFiles/QCodeEditorExample.dir/depend
|
||||
|
||||
24
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/cmake_clean.cmake
vendored
Normal file
24
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/cmake_clean.cmake
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
file(REMOVE_RECURSE
|
||||
"CMakeFiles/QCodeEditorExample.dir/link.d"
|
||||
"CMakeFiles/QCodeEditorExample_autogen.dir/AutogenUsed.txt"
|
||||
"CMakeFiles/QCodeEditorExample_autogen.dir/ParseCache.txt"
|
||||
"QCodeEditorExample_autogen"
|
||||
"CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o"
|
||||
"CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o.d"
|
||||
"CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.o"
|
||||
"CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.o.d"
|
||||
"CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.o"
|
||||
"CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.o.d"
|
||||
"CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o"
|
||||
"CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o.d"
|
||||
"QCodeEditorExample"
|
||||
"QCodeEditorExample.pdb"
|
||||
"QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp"
|
||||
"QCodeEditorExample_autogen/mocs_compilation.cpp"
|
||||
"QCodeEditorExample_autogen/timestamp"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang CXX)
|
||||
include(CMakeFiles/QCodeEditorExample.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
||||
1764
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/compiler_depend.internal
vendored
Normal file
1764
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/compiler_depend.internal
vendored
Normal file
File diff suppressed because it is too large
Load diff
3450
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/compiler_depend.make
vendored
Normal file
3450
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/compiler_depend.make
vendored
Normal file
File diff suppressed because it is too large
Load diff
2
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/compiler_depend.ts
vendored
Normal file
2
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/compiler_depend.ts
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Timestamp file for compiler generated dependencies management for QCodeEditorExample.
|
||||
2
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/depend.make
vendored
Normal file
2
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/depend.make
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
# Empty dependencies file for QCodeEditorExample.
|
||||
# This may be replaced when dependencies are built.
|
||||
10
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/flags.make
vendored
Normal file
10
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/flags.make
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||
|
||||
# compile CXX with /usr/bin/c++
|
||||
CXX_DEFINES = -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NO_DEBUG -DQT_WIDGETS_LIB
|
||||
|
||||
CXX_INCLUDES = -I/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/include -I/home/philipp/programing/QCodeEditor/example/include -isystem /usr/include/qt6/QtCore -isystem /usr/include/qt6 -isystem /usr/lib/qt6/mkspecs/linux-g++ -isystem /usr/include/qt6/QtWidgets -isystem /usr/include/qt6/QtGui
|
||||
|
||||
CXX_FLAGS = -std=gnu++17 -mno-direct-extern-access
|
||||
|
||||
1
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/link.txt
vendored
Normal file
1
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/link.txt
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/usr/bin/c++ -Wl,--dependency-file=CMakeFiles/QCodeEditorExample.dir/link.d CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.o CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.o CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o -o QCodeEditorExample /usr/lib/libQt6Widgets.so.6.9.2 /usr/lib/libQt6Gui.so.6.9.2 -l.. /usr/lib/libGLX.so /usr/lib/libOpenGL.so /usr/lib/libQt6Core.so.6.9.2
|
||||
8
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/progress.make
vendored
Normal file
8
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/progress.make
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
CMAKE_PROGRESS_1 = 1
|
||||
CMAKE_PROGRESS_2 = 2
|
||||
CMAKE_PROGRESS_3 = 3
|
||||
CMAKE_PROGRESS_4 = 4
|
||||
CMAKE_PROGRESS_5 = 5
|
||||
CMAKE_PROGRESS_6 = 6
|
||||
CMAKE_PROGRESS_7 = 7
|
||||
|
||||
BIN
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o
vendored
Normal file
BIN
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o
vendored
Normal file
Binary file not shown.
362
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o.d
vendored
Normal file
362
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o.d
vendored
Normal file
|
|
@ -0,0 +1,362 @@
|
|||
CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o: \
|
||||
/home/philipp/programing/QCodeEditor/example/src/main.cpp \
|
||||
/usr/include/stdc-predef.h /usr/include/qt6/QtWidgets/QApplication \
|
||||
/usr/include/qt6/QtWidgets/qapplication.h \
|
||||
/usr/include/qt6/QtWidgets/qtwidgetsglobal.h \
|
||||
/usr/include/qt6/QtGui/qtguiglobal.h /usr/include/qt6/QtCore/qglobal.h \
|
||||
/usr/include/c++/15.2.1/type_traits \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||
/usr/include/features.h /usr/include/features-time64.h \
|
||||
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||
/usr/include/c++/15.2.1/pstl/pstl_config.h \
|
||||
/usr/include/c++/15.2.1/bits/version.h /usr/include/c++/15.2.1/cstddef \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \
|
||||
/usr/include/c++/15.2.1/utility \
|
||||
/usr/include/c++/15.2.1/bits/stl_relops.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_pair.h \
|
||||
/usr/include/c++/15.2.1/bits/move.h \
|
||||
/usr/include/c++/15.2.1/bits/utility.h \
|
||||
/usr/include/c++/15.2.1/initializer_list /usr/include/c++/15.2.1/cstdint \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdint.h \
|
||||
/usr/include/stdint.h /usr/include/bits/libc-header-start.h \
|
||||
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/time64.h /usr/include/bits/wchar.h \
|
||||
/usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \
|
||||
/usr/include/bits/stdint-least.h /usr/include/assert.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h \
|
||||
/usr/include/qt6/QtCore/qtcoreglobal.h \
|
||||
/usr/include/qt6/QtCore/qtversionchecks.h \
|
||||
/usr/include/qt6/QtCore/qtconfiginclude.h \
|
||||
/usr/include/c++/15.2.1/version /usr/include/qt6/QtCore/qconfig.h \
|
||||
/usr/include/qt6/QtCore/qtcore-config.h \
|
||||
/usr/include/qt6/QtCore/qtconfigmacros.h \
|
||||
/usr/include/qt6/QtCore/qtdeprecationdefinitions.h \
|
||||
/usr/include/qt6/QtCore/qcompilerdetection.h \
|
||||
/usr/include/qt6/QtCore/qprocessordetection.h \
|
||||
/usr/include/qt6/QtCore/qsystemdetection.h \
|
||||
/usr/include/qt6/QtCore/qtcoreexports.h \
|
||||
/usr/include/qt6/QtCore/qtdeprecationmarkers.h \
|
||||
/usr/include/qt6/QtCore/qtclasshelpermacros.h \
|
||||
/usr/include/qt6/QtCore/qtpreprocessorsupport.h \
|
||||
/usr/include/qt6/QtCore/qassert.h /usr/include/qt6/QtCore/qtnoop.h \
|
||||
/usr/include/qt6/QtCore/qtypes.h /usr/include/qt6/QtCore/qtversion.h \
|
||||
/usr/include/qt6/QtCore/qtypeinfo.h \
|
||||
/usr/include/qt6/QtCore/qcontainerfwd.h /usr/include/c++/15.2.1/limits \
|
||||
/usr/include/qt6/QtCore/qsysinfo.h /usr/include/qt6/QtCore/qlogging.h \
|
||||
/usr/include/qt6/QtCore/qflags.h /usr/include/qt6/QtCore/qcompare_impl.h \
|
||||
/usr/include/c++/15.2.1/algorithm \
|
||||
/usr/include/c++/15.2.1/bits/stl_algobase.h \
|
||||
/usr/include/c++/15.2.1/bits/functexcept.h \
|
||||
/usr/include/c++/15.2.1/bits/exception_defines.h \
|
||||
/usr/include/c++/15.2.1/bits/cpp_type_traits.h \
|
||||
/usr/include/c++/15.2.1/ext/type_traits.h \
|
||||
/usr/include/c++/15.2.1/ext/numeric_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator_base_types.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator_base_funcs.h \
|
||||
/usr/include/c++/15.2.1/bits/concept_check.h \
|
||||
/usr/include/c++/15.2.1/debug/assertions.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator.h \
|
||||
/usr/include/c++/15.2.1/bits/ptr_traits.h \
|
||||
/usr/include/c++/15.2.1/debug/debug.h \
|
||||
/usr/include/c++/15.2.1/bits/predefined_ops.h \
|
||||
/usr/include/c++/15.2.1/bit /usr/include/c++/15.2.1/concepts \
|
||||
/usr/include/c++/15.2.1/bits/stl_algo.h \
|
||||
/usr/include/c++/15.2.1/bits/algorithmfwd.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_heap.h \
|
||||
/usr/include/c++/15.2.1/bits/uniform_int_dist.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_tempbuf.h /usr/include/c++/15.2.1/new \
|
||||
/usr/include/c++/15.2.1/bits/exception.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_construct.h \
|
||||
/usr/include/c++/15.2.1/cstdlib /usr/include/stdlib.h \
|
||||
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
|
||||
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||
/usr/include/sys/types.h /usr/include/bits/types/clock_t.h \
|
||||
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \
|
||||
/usr/include/bits/types/timer_t.h /usr/include/endian.h \
|
||||
/usr/include/bits/endian.h /usr/include/bits/endianness.h \
|
||||
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
|
||||
/usr/include/bits/types/struct_timeval.h \
|
||||
/usr/include/bits/types/struct_timespec.h \
|
||||
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||
/usr/include/bits/pthreadtypes-arch.h \
|
||||
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||
/usr/include/bits/stdlib-float.h /usr/include/c++/15.2.1/bits/std_abs.h \
|
||||
/usr/include/c++/15.2.1/pstl/glue_algorithm_defs.h \
|
||||
/usr/include/c++/15.2.1/pstl/execution_defs.h \
|
||||
/usr/include/qt6/QtCore/qatomic.h /usr/include/qt6/QtCore/qbasicatomic.h \
|
||||
/usr/include/qt6/QtCore/qatomic_cxx11.h \
|
||||
/usr/include/qt6/QtCore/qgenericatomic.h \
|
||||
/usr/include/qt6/QtCore/qyieldcpu.h /usr/include/c++/15.2.1/atomic \
|
||||
/usr/include/c++/15.2.1/bits/atomic_base.h \
|
||||
/usr/include/c++/15.2.1/bits/atomic_lockfree_defines.h \
|
||||
/usr/include/qt6/QtCore/qconstructormacros.h \
|
||||
/usr/include/qt6/QtCore/qdarwinhelpers.h \
|
||||
/usr/include/qt6/QtCore/qexceptionhandling.h \
|
||||
/usr/include/qt6/QtCore/qforeach.h \
|
||||
/usr/include/qt6/QtCore/qttypetraits.h /usr/include/c++/15.2.1/optional \
|
||||
/usr/include/c++/15.2.1/exception \
|
||||
/usr/include/c++/15.2.1/bits/exception_ptr.h \
|
||||
/usr/include/c++/15.2.1/bits/cxxabi_init_exception.h \
|
||||
/usr/include/c++/15.2.1/typeinfo \
|
||||
/usr/include/c++/15.2.1/bits/hash_bytes.h \
|
||||
/usr/include/c++/15.2.1/bits/nested_exception.h \
|
||||
/usr/include/c++/15.2.1/bits/enable_special_members.h \
|
||||
/usr/include/c++/15.2.1/bits/functional_hash.h \
|
||||
/usr/include/c++/15.2.1/tuple \
|
||||
/usr/include/c++/15.2.1/bits/uses_allocator.h \
|
||||
/usr/include/c++/15.2.1/bits/invoke.h /usr/include/c++/15.2.1/variant \
|
||||
/usr/include/c++/15.2.1/bits/monostate.h \
|
||||
/usr/include/c++/15.2.1/bits/parse_numbers.h \
|
||||
/usr/include/c++/15.2.1/ext/aligned_buffer.h \
|
||||
/usr/include/qt6/QtCore/qfunctionpointer.h \
|
||||
/usr/include/qt6/QtCore/qglobalstatic.h \
|
||||
/usr/include/qt6/QtCore/qmalloc.h /usr/include/qt6/QtCore/qminmax.h \
|
||||
/usr/include/qt6/QtCore/qnumeric.h /usr/include/c++/15.2.1/cmath \
|
||||
/usr/include/c++/15.2.1/bits/requires_hosted.h /usr/include/math.h \
|
||||
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
|
||||
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
|
||||
/usr/include/bits/fp-fast.h /usr/include/bits/mathcalls-macros.h \
|
||||
/usr/include/bits/mathcalls-helper-functions.h \
|
||||
/usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \
|
||||
/usr/include/bits/iscanonical.h /usr/include/c++/15.2.1/bits/specfun.h \
|
||||
/usr/include/c++/15.2.1/tr1/gamma.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/special_function_util.h \
|
||||
/usr/include/c++/15.2.1/tr1/bessel_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/beta_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/ell_integral.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/exp_integral.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/hypergeometric.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/legendre_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/modified_bessel_func.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/poly_hermite.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/poly_laguerre.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/riemann_zeta.tcc \
|
||||
/usr/include/qt6/QtCore/qoverload.h /usr/include/qt6/QtCore/qswap.h \
|
||||
/usr/include/qt6/QtCore/qtenvironmentvariables.h \
|
||||
/usr/include/qt6/QtCore/qtresource.h \
|
||||
/usr/include/qt6/QtCore/qttranslation.h \
|
||||
/usr/include/qt6/QtCore/qversiontagging.h \
|
||||
/usr/include/qt6/QtGui/qtgui-config.h \
|
||||
/usr/include/qt6/QtGui/qtguiexports.h \
|
||||
/usr/include/qt6/QtWidgets/qtwidgets-config.h \
|
||||
/usr/include/qt6/QtWidgets/qtwidgetsexports.h \
|
||||
/usr/include/qt6/QtCore/qcoreapplication.h \
|
||||
/usr/include/qt6/QtCore/qstring.h /usr/include/qt6/QtCore/qchar.h \
|
||||
/usr/include/qt6/QtCore/qcompare.h \
|
||||
/usr/include/qt6/QtCore/qstdlibdetection.h \
|
||||
/usr/include/qt6/QtCore/qcomparehelpers.h \
|
||||
/usr/include/qt6/QtCore/q20type_traits.h \
|
||||
/usr/include/c++/15.2.1/functional \
|
||||
/usr/include/c++/15.2.1/bits/stl_function.h \
|
||||
/usr/include/c++/15.2.1/backward/binders.h \
|
||||
/usr/include/c++/15.2.1/bits/refwrap.h \
|
||||
/usr/include/c++/15.2.1/bits/std_function.h \
|
||||
/usr/include/c++/15.2.1/unordered_map \
|
||||
/usr/include/c++/15.2.1/bits/unordered_map.h \
|
||||
/usr/include/c++/15.2.1/bits/hashtable.h \
|
||||
/usr/include/c++/15.2.1/bits/hashtable_policy.h \
|
||||
/usr/include/c++/15.2.1/ext/alloc_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/alloc_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/memoryfwd.h \
|
||||
/usr/include/c++/15.2.1/bits/allocator.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++allocator.h \
|
||||
/usr/include/c++/15.2.1/bits/new_allocator.h \
|
||||
/usr/include/c++/15.2.1/bits/node_handle.h \
|
||||
/usr/include/c++/15.2.1/bits/range_access.h \
|
||||
/usr/include/c++/15.2.1/bits/erase_if.h \
|
||||
/usr/include/c++/15.2.1/bits/memory_resource.h \
|
||||
/usr/include/c++/15.2.1/bits/uses_allocator_args.h \
|
||||
/usr/include/c++/15.2.1/vector \
|
||||
/usr/include/c++/15.2.1/bits/stl_uninitialized.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_vector.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_bvector.h \
|
||||
/usr/include/c++/15.2.1/bits/vector.tcc /usr/include/c++/15.2.1/array \
|
||||
/usr/include/c++/15.2.1/compare /usr/include/qt6/QtCore/qstringview.h \
|
||||
/usr/include/qt6/QtCore/qbytearray.h /usr/include/qt6/QtCore/qrefcount.h \
|
||||
/usr/include/qt6/QtCore/qnamespace.h \
|
||||
/usr/include/qt6/QtCore/qtmetamacros.h \
|
||||
/usr/include/qt6/QtCore/qarraydata.h /usr/include/qt6/QtCore/qpair.h \
|
||||
/usr/include/string.h /usr/include/strings.h \
|
||||
/usr/include/qt6/QtCore/qarraydatapointer.h \
|
||||
/usr/include/qt6/QtCore/qarraydataops.h \
|
||||
/usr/include/qt6/QtCore/qcontainertools_impl.h \
|
||||
/usr/include/qt6/QtCore/qxptype_traits.h /usr/include/c++/15.2.1/cstring \
|
||||
/usr/include/c++/15.2.1/iterator \
|
||||
/usr/include/c++/15.2.1/bits/stream_iterator.h \
|
||||
/usr/include/c++/15.2.1/iosfwd /usr/include/c++/15.2.1/bits/stringfwd.h \
|
||||
/usr/include/c++/15.2.1/bits/postypes.h /usr/include/c++/15.2.1/cwchar \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h \
|
||||
/usr/include/bits/types/wint_t.h /usr/include/bits/types/mbstate_t.h \
|
||||
/usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \
|
||||
/usr/include/bits/types/FILE.h \
|
||||
/usr/include/c++/15.2.1/bits/streambuf_iterator.h \
|
||||
/usr/include/c++/15.2.1/streambuf \
|
||||
/usr/include/c++/15.2.1/bits/localefwd.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++locale.h \
|
||||
/usr/include/c++/15.2.1/clocale /usr/include/locale.h \
|
||||
/usr/include/bits/locale.h /usr/include/c++/15.2.1/cctype \
|
||||
/usr/include/ctype.h /usr/include/c++/15.2.1/bits/ios_base.h \
|
||||
/usr/include/c++/15.2.1/ext/atomicity.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/gthr.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/gthr-default.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h /usr/include/bits/sched.h \
|
||||
/usr/include/linux/sched/types.h /usr/include/linux/types.h \
|
||||
/usr/include/asm/types.h /usr/include/asm-generic/types.h \
|
||||
/usr/include/asm-generic/int-ll64.h /usr/include/asm/bitsperlong.h \
|
||||
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/stddef.h /usr/include/asm/posix_types.h \
|
||||
/usr/include/asm/posix_types_64.h /usr/include/asm-generic/posix_types.h \
|
||||
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
|
||||
/usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \
|
||||
/usr/include/bits/types/struct_tm.h \
|
||||
/usr/include/bits/types/struct_itimerspec.h /usr/include/bits/setjmp.h \
|
||||
/usr/include/bits/types/struct___jmp_buf_tag.h \
|
||||
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/atomic_word.h \
|
||||
/usr/include/sys/single_threaded.h \
|
||||
/usr/include/c++/15.2.1/bits/locale_classes.h \
|
||||
/usr/include/c++/15.2.1/string \
|
||||
/usr/include/c++/15.2.1/bits/char_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/ostream_insert.h \
|
||||
/usr/include/c++/15.2.1/bits/cxxabi_forced.h \
|
||||
/usr/include/c++/15.2.1/bits/basic_string.h \
|
||||
/usr/include/c++/15.2.1/string_view \
|
||||
/usr/include/c++/15.2.1/bits/string_view.tcc \
|
||||
/usr/include/c++/15.2.1/ext/string_conversions.h \
|
||||
/usr/include/c++/15.2.1/cstdio /usr/include/stdio.h \
|
||||
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \
|
||||
/usr/include/bits/types/struct_FILE.h \
|
||||
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/bits/stdio_lim.h /usr/include/c++/15.2.1/cerrno \
|
||||
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/bits/types/error_t.h \
|
||||
/usr/include/c++/15.2.1/bits/charconv.h \
|
||||
/usr/include/c++/15.2.1/bits/basic_string.tcc \
|
||||
/usr/include/c++/15.2.1/bits/locale_classes.tcc \
|
||||
/usr/include/c++/15.2.1/system_error \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/error_constants.h \
|
||||
/usr/include/c++/15.2.1/stdexcept \
|
||||
/usr/include/c++/15.2.1/bits/streambuf.tcc \
|
||||
/usr/include/c++/15.2.1/memory \
|
||||
/usr/include/c++/15.2.1/bits/stl_raw_storage_iter.h \
|
||||
/usr/include/c++/15.2.1/bits/align.h \
|
||||
/usr/include/c++/15.2.1/bits/unique_ptr.h \
|
||||
/usr/include/c++/15.2.1/bits/shared_ptr.h \
|
||||
/usr/include/c++/15.2.1/bits/shared_ptr_base.h \
|
||||
/usr/include/c++/15.2.1/bits/allocated_ptr.h \
|
||||
/usr/include/c++/15.2.1/ext/concurrence.h \
|
||||
/usr/include/c++/15.2.1/bits/shared_ptr_atomic.h \
|
||||
/usr/include/c++/15.2.1/backward/auto_ptr.h \
|
||||
/usr/include/c++/15.2.1/pstl/glue_memory_defs.h \
|
||||
/usr/include/qt6/QtCore/q20functional.h \
|
||||
/usr/include/qt6/QtCore/q20memory.h /usr/include/qt6/QtCore/q17memory.h \
|
||||
/usr/include/qt6/QtCore/qbytearrayalgorithms.h \
|
||||
/usr/include/qt6/QtCore/qbytearrayview.h \
|
||||
/usr/include/qt6/QtCore/qstringfwd.h /usr/include/c++/15.2.1/stdlib.h \
|
||||
/usr/include/qt6/QtCore/qstringliteral.h \
|
||||
/usr/include/qt6/QtCore/qstringalgorithms.h \
|
||||
/usr/include/qt6/QtCore/qlatin1stringview.h \
|
||||
/usr/include/qt6/QtCore/qanystringview.h \
|
||||
/usr/include/qt6/QtCore/qutf8stringview.h \
|
||||
/usr/include/qt6/QtCore/qstringtokenizer.h \
|
||||
/usr/include/qt6/QtCore/qstringbuilder.h \
|
||||
/usr/include/qt6/QtCore/qstringconverter.h \
|
||||
/usr/include/qt6/QtCore/qstringconverter_base.h \
|
||||
/usr/include/qt6/QtCore/qcoreevent.h \
|
||||
/usr/include/qt6/QtCore/qbasictimer.h \
|
||||
/usr/include/qt6/QtCore/qabstracteventdispatcher.h \
|
||||
/usr/include/qt6/QtCore/qobject.h /usr/include/qt6/QtCore/qobjectdefs.h \
|
||||
/usr/include/qt6/QtCore/qobjectdefs_impl.h \
|
||||
/usr/include/qt6/QtCore/qfunctionaltools_impl.h \
|
||||
/usr/include/qt6/QtCore/qlist.h /usr/include/qt6/QtCore/qhashfunctions.h \
|
||||
/usr/include/c++/15.2.1/numeric \
|
||||
/usr/include/c++/15.2.1/bits/stl_numeric.h \
|
||||
/usr/include/c++/15.2.1/pstl/glue_numeric_defs.h \
|
||||
/usr/include/qt6/QtCore/qiterator.h \
|
||||
/usr/include/qt6/QtCore/qbytearraylist.h \
|
||||
/usr/include/qt6/QtCore/qstringlist.h \
|
||||
/usr/include/qt6/QtCore/qalgorithms.h \
|
||||
/usr/include/qt6/QtCore/qstringmatcher.h \
|
||||
/usr/include/qt6/QtCore/qscopedpointer.h \
|
||||
/usr/include/qt6/QtCore/qmetatype.h \
|
||||
/usr/include/qt6/QtCore/qdatastream.h \
|
||||
/usr/include/qt6/QtCore/qiodevicebase.h \
|
||||
/usr/include/qt6/QtCore/qfloat16.h /usr/include/qt6/QtCore/qmath.h \
|
||||
/usr/include/qt6/QtCore/qtformat_impl.h \
|
||||
/usr/include/qt6/QtCore/qiterable.h \
|
||||
/usr/include/qt6/QtCore/qmetacontainer.h \
|
||||
/usr/include/qt6/QtCore/qcontainerinfo.h \
|
||||
/usr/include/qt6/QtCore/qtaggedpointer.h \
|
||||
/usr/include/qt6/QtCore/qscopeguard.h /usr/include/c++/15.2.1/list \
|
||||
/usr/include/c++/15.2.1/bits/stl_list.h \
|
||||
/usr/include/c++/15.2.1/bits/list.tcc /usr/include/c++/15.2.1/map \
|
||||
/usr/include/c++/15.2.1/bits/stl_tree.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_map.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_multimap.h \
|
||||
/usr/include/qt6/QtCore/qobject_impl.h \
|
||||
/usr/include/qt6/QtCore/qbindingstorage.h /usr/include/c++/15.2.1/chrono \
|
||||
/usr/include/c++/15.2.1/bits/chrono.h /usr/include/c++/15.2.1/ratio \
|
||||
/usr/include/c++/15.2.1/ctime /usr/include/qt6/QtCore/qeventloop.h \
|
||||
/usr/include/qt6/QtCore/qdeadlinetimer.h \
|
||||
/usr/include/qt6/QtCore/qelapsedtimer.h \
|
||||
/usr/include/qt6/QtCore/qnativeinterface.h \
|
||||
/usr/include/qt6/QtCore/qcoreapplication_platform.h \
|
||||
/usr/include/qt6/QtGui/qwindowdefs.h /usr/include/qt6/QtCore/qpoint.h \
|
||||
/usr/include/qt6/QtCore/q23utility.h \
|
||||
/usr/include/qt6/QtCore/q20utility.h /usr/include/qt6/QtCore/qsize.h \
|
||||
/usr/include/qt6/QtCore/qmargins.h /usr/include/qt6/QtGui/qcursor.h \
|
||||
/usr/include/qt6/QtGui/qbitmap.h /usr/include/qt6/QtGui/qpixmap.h \
|
||||
/usr/include/qt6/QtGui/qpaintdevice.h /usr/include/qt6/QtCore/qrect.h \
|
||||
/usr/include/qt6/QtGui/qcolor.h /usr/include/qt6/QtGui/qrgb.h \
|
||||
/usr/include/qt6/QtGui/qrgba64.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||
/usr/include/bits/posix2_lim.h /usr/include/bits/xopen_lim.h \
|
||||
/usr/include/bits/uio_lim.h /usr/include/qt6/QtCore/qshareddata.h \
|
||||
/usr/include/qt6/QtGui/qimage.h /usr/include/qt6/QtGui/qpixelformat.h \
|
||||
/usr/include/qt6/QtGui/qtransform.h /usr/include/qt6/QtGui/qpolygon.h \
|
||||
/usr/include/qt6/QtGui/qregion.h /usr/include/qt6/QtCore/qspan.h \
|
||||
/usr/include/c++/15.2.1/cassert /usr/include/qt6/QtCore/q20iterator.h \
|
||||
/usr/include/qt6/QtCore/qline.h /usr/include/qt6/QtGui/qguiapplication.h \
|
||||
/usr/include/qt6/QtGui/qinputmethod.h /usr/include/qt6/QtCore/qlocale.h \
|
||||
/usr/include/qt6/QtCore/qvariant.h /usr/include/qt6/QtCore/qdebug.h \
|
||||
/usr/include/qt6/QtCore/qtextstream.h \
|
||||
/usr/include/qt6/QtCore/qcontiguouscache.h \
|
||||
/usr/include/c++/15.2.1/climits /usr/include/qt6/QtCore/qsharedpointer.h \
|
||||
/usr/include/qt6/QtCore/qsharedpointer_impl.h \
|
||||
/usr/include/c++/15.2.1/set /usr/include/c++/15.2.1/bits/stl_set.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_multiset.h \
|
||||
/usr/include/c++/15.2.1/unordered_set \
|
||||
/usr/include/c++/15.2.1/bits/unordered_set.h \
|
||||
/usr/include/qt6/QtCore/qmap.h \
|
||||
/usr/include/qt6/QtCore/qshareddata_impl.h \
|
||||
/usr/include/qt6/QtCore/qset.h /usr/include/qt6/QtCore/qhash.h \
|
||||
/usr/include/qt6/QtCore/qvarlengtharray.h \
|
||||
/usr/include/qt6/QtGui/qguiapplication_platform.h \
|
||||
/home/philipp/programing/QCodeEditor/example/include/MainWindow.hpp \
|
||||
/usr/include/qt6/QtWidgets/QMainWindow \
|
||||
/usr/include/qt6/QtWidgets/qmainwindow.h \
|
||||
/usr/include/qt6/QtWidgets/qwidget.h /usr/include/qt6/QtGui/qaction.h \
|
||||
/usr/include/qt6/QtGui/qkeysequence.h /usr/include/qt6/QtGui/qicon.h \
|
||||
/usr/include/qt6/QtGui/qpalette.h /usr/include/qt6/QtGui/qbrush.h \
|
||||
/usr/include/qt6/QtGui/qfont.h /usr/include/qt6/QtCore/qendian.h \
|
||||
/usr/include/qt6/QtGui/qfontmetrics.h /usr/include/qt6/QtGui/qfontinfo.h \
|
||||
/usr/include/qt6/QtGui/qfontvariableaxis.h \
|
||||
/usr/include/qt6/QtWidgets/qsizepolicy.h \
|
||||
/usr/include/qt6/QtWidgets/qtabwidget.h /usr/include/qt6/QtCore/QString \
|
||||
/usr/include/qt6/QtCore/qstring.h /usr/include/qt6/QtCore/QVector \
|
||||
/usr/include/qt6/QtCore/qvector.h /usr/include/qt6/QtCore/QPair \
|
||||
/usr/include/qt6/QtCore/qpair.h
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
"BUILD_DIR" : "/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen",
|
||||
"CMAKE_BINARY_DIR" : "/home/philipp/programing/QCodeEditor/example/build",
|
||||
"CMAKE_CURRENT_BINARY_DIR" : "/home/philipp/programing/QCodeEditor/example/build",
|
||||
"CMAKE_CURRENT_SOURCE_DIR" : "/home/philipp/programing/QCodeEditor/example",
|
||||
"CMAKE_SOURCE_DIR" : "/home/philipp/programing/QCodeEditor/example",
|
||||
"CROSS_CONFIG" : false,
|
||||
"GENERATOR" : "Unix Makefiles",
|
||||
"INCLUDE_DIR" : "/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/include",
|
||||
"INPUTS" :
|
||||
[
|
||||
"/home/philipp/programing/QCodeEditor/example/resources/code_samples/python.py",
|
||||
"/home/philipp/programing/QCodeEditor/example/resources/code_samples/cxx.cpp",
|
||||
"/home/philipp/programing/QCodeEditor/example/resources/code_samples/xml.xml",
|
||||
"/home/philipp/programing/QCodeEditor/example/resources/code_samples/json.json",
|
||||
"/home/philipp/programing/QCodeEditor/example/resources/code_samples/lua.lua",
|
||||
"/home/philipp/programing/QCodeEditor/example/resources/code_samples/shader.glsl",
|
||||
"/home/philipp/programing/QCodeEditor/example/resources/styles/drakula.xml"
|
||||
],
|
||||
"LOCK_FILE" : "/home/philipp/programing/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/AutoRcc_demo_resources_3YJK5W5UP7_Lock.lock",
|
||||
"MULTI_CONFIG" : false,
|
||||
"OPTIONS" : [ "-name", "demo_resources" ],
|
||||
"OUTPUT_CHECKSUM" : "3YJK5W5UP7",
|
||||
"OUTPUT_NAME" : "qrc_demo_resources.cpp",
|
||||
"RCC_EXECUTABLE" : "/usr/lib/qt6/rcc",
|
||||
"RCC_LIST_OPTIONS" : [ "--list" ],
|
||||
"SETTINGS_FILE" : "/home/philipp/programing/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/AutoRcc_demo_resources_3YJK5W5UP7_Used.txt",
|
||||
"SOURCE" : "/home/philipp/programing/QCodeEditor/example/resources/demo_resources.qrc",
|
||||
"USE_BETTER_GRAPH" : true,
|
||||
"VERBOSITY" : 0
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
rcc:ed6e6f477df9d39aa1cbfd3cfabbc590d7124fbf83ea7fae924eb9a7c1ceecff
|
||||
598
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/AutogenInfo.json
vendored
Normal file
598
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/AutogenInfo.json
vendored
Normal file
|
|
@ -0,0 +1,598 @@
|
|||
{
|
||||
"BUILD_DIR" : "/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen",
|
||||
"CMAKE_BINARY_DIR" : "/home/philipp/programing/QCodeEditor/example/build",
|
||||
"CMAKE_CURRENT_BINARY_DIR" : "/home/philipp/programing/QCodeEditor/example/build",
|
||||
"CMAKE_CURRENT_SOURCE_DIR" : "/home/philipp/programing/QCodeEditor/example",
|
||||
"CMAKE_EXECUTABLE" : "/usr/bin/cmake",
|
||||
"CMAKE_LIST_FILES" :
|
||||
[
|
||||
"/home/philipp/programing/QCodeEditor/example/CMakeLists.txt",
|
||||
"/home/philipp/programing/QCodeEditor/example/build/CMakeFiles/4.1.2/CMakeSystem.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake",
|
||||
"/usr/share/cmake/Modules/Platform/Linux-Initialize.cmake",
|
||||
"/home/philipp/programing/QCodeEditor/example/build/CMakeFiles/4.1.2/CMakeCCompiler.cmake",
|
||||
"/home/philipp/programing/QCodeEditor/example/build/CMakeFiles/4.1.2/CMakeCXXCompiler.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeGenericSystem.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake",
|
||||
"/usr/share/cmake/Modules/Platform/Linux.cmake",
|
||||
"/usr/share/cmake/Modules/Platform/UnixPaths.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeCInformation.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeLanguageInformation.cmake",
|
||||
"/usr/share/cmake/Modules/Compiler/GNU-C.cmake",
|
||||
"/usr/share/cmake/Modules/Compiler/GNU.cmake",
|
||||
"/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake",
|
||||
"/usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake",
|
||||
"/usr/share/cmake/Modules/Platform/Linux-GNU.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake",
|
||||
"/usr/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake",
|
||||
"/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake",
|
||||
"/usr/share/cmake/Modules/Linker/GNU-C.cmake",
|
||||
"/usr/share/cmake/Modules/Linker/GNU.cmake",
|
||||
"/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-C.cmake",
|
||||
"/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake",
|
||||
"/usr/share/cmake/Modules/Platform/Linker/GNU.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeCXXInformation.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeLanguageInformation.cmake",
|
||||
"/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake",
|
||||
"/usr/share/cmake/Modules/Compiler/GNU.cmake",
|
||||
"/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake",
|
||||
"/usr/share/cmake/Modules/Platform/Linux-GNU.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake",
|
||||
"/usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake",
|
||||
"/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake",
|
||||
"/usr/share/cmake/Modules/Linker/GNU-CXX.cmake",
|
||||
"/usr/share/cmake/Modules/Linker/GNU.cmake",
|
||||
"/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake",
|
||||
"/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake",
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6/Qt6ConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6/Qt6Config.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicCMakeEarlyPolicyHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/Qt6ConfigExtras.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtInstallPaths.cmake",
|
||||
"/usr/lib/cmake/Qt6/Qt6Targets.cmake",
|
||||
"/usr/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtFeature.cmake",
|
||||
"/usr/share/cmake/Modules/CheckCXXCompilerFlag.cmake",
|
||||
"/usr/share/cmake/Modules/Internal/CheckCompilerFlag.cmake",
|
||||
"/usr/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake",
|
||||
"/usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake",
|
||||
"/usr/share/cmake/Modules/CheckCXXSourceCompiles.cmake",
|
||||
"/usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtFeatureCommon.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicAndroidHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicAppleHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicGitHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicPluginHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicPluginHelpers_v2.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomAttributionHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomCpeHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomDepHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomFileHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomLicenseHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomOpsHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomPurlHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomPythonHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomQtEntityHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicSbomSystemDepHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicTargetHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicTestHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicToolHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake",
|
||||
"/usr/lib/cmake/Qt6/QtPublicWindowsHelpers.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6/Qt6Dependencies.cmake",
|
||||
"/usr/share/cmake/Modules/FindThreads.cmake",
|
||||
"/usr/share/cmake/Modules/CheckLibraryExists.cmake",
|
||||
"/usr/share/cmake/Modules/CheckIncludeFile.cmake",
|
||||
"/usr/share/cmake/Modules/CheckCSourceCompiles.cmake",
|
||||
"/usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake",
|
||||
"/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake",
|
||||
"/usr/share/cmake/Modules/FindPackageMessage.cmake",
|
||||
"/usr/lib/cmake/Qt6/FindWrapAtomic.cmake",
|
||||
"/usr/share/cmake/Modules/CheckCXXSourceCompiles.cmake",
|
||||
"/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake",
|
||||
"/usr/share/cmake/Modules/FindPackageMessage.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateVersionlessAliasTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreMacros.cmake",
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake",
|
||||
"/usr/share/cmake/Modules/GNUInstallDirs.cmake",
|
||||
"/usr/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6/FindWrapOpenGL.cmake",
|
||||
"/usr/share/cmake/Modules/FindOpenGL.cmake",
|
||||
"/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake",
|
||||
"/usr/share/cmake/Modules/FindPackageMessage.cmake",
|
||||
"/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake",
|
||||
"/usr/share/cmake/Modules/FindPackageMessage.cmake",
|
||||
"/usr/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake",
|
||||
"/usr/share/cmake/Modules/FindVulkan.cmake",
|
||||
"/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake",
|
||||
"/usr/share/cmake/Modules/FindPackageMessage.cmake",
|
||||
"/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake",
|
||||
"/usr/share/cmake/Modules/FindPackageMessage.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6DBus/Qt6DBusTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateVersionlessAliasTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake",
|
||||
"/usr/share/cmake/Modules/MacroAddFileDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6DBus/Qt6DBusVersionlessAliasTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6/3rdparty/kwin/FindXKB.cmake",
|
||||
"/usr/share/cmake/Modules/FindPkgConfig.cmake",
|
||||
"/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake",
|
||||
"/usr/share/cmake/Modules/FindPackageMessage.cmake",
|
||||
"/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake",
|
||||
"/usr/share/cmake/Modules/FindPackageMessage.cmake",
|
||||
"/usr/share/cmake/Modules/FeatureSummary.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateVersionlessAliasTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateVersionlessAliasTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake",
|
||||
"/usr/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake",
|
||||
"/usr/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake",
|
||||
"/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake",
|
||||
"/usr/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake",
|
||||
"/home/philipp/programing/QCodeEditor/example/resources/demo_resources.qrc"
|
||||
],
|
||||
"CMAKE_SOURCE_DIR" : "/home/philipp/programing/QCodeEditor/example",
|
||||
"CROSS_CONFIG" : false,
|
||||
"DEP_FILE" : "/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/deps",
|
||||
"DEP_FILE_RULE_NAME" : "QCodeEditorExample_autogen/timestamp",
|
||||
"HEADERS" :
|
||||
[
|
||||
[
|
||||
"/home/philipp/programing/QCodeEditor/example/include/MainWindow.hpp",
|
||||
"Mu",
|
||||
"6YEA5652QU/moc_MainWindow.cpp",
|
||||
null
|
||||
]
|
||||
],
|
||||
"HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ],
|
||||
"INCLUDE_DIR" : "/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/include",
|
||||
"MOC_COMPILATION_FILE" : "/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/mocs_compilation.cpp",
|
||||
"MOC_DEFINITIONS" : [ "QT_CORE_LIB", "QT_GUI_LIB", "QT_NO_DEBUG", "QT_WIDGETS_LIB" ],
|
||||
"MOC_DEPEND_FILTERS" :
|
||||
[
|
||||
[
|
||||
"Q_PLUGIN_METADATA",
|
||||
"[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\""
|
||||
]
|
||||
],
|
||||
"MOC_INCLUDES" :
|
||||
[
|
||||
"/home/philipp/programing/QCodeEditor/example/include",
|
||||
"/usr/include/qt6/QtCore",
|
||||
"/usr/include/qt6",
|
||||
"/usr/lib/qt6/mkspecs/linux-g++",
|
||||
"/usr/include/qt6/QtWidgets",
|
||||
"/usr/include/qt6/QtGui",
|
||||
"/usr/include",
|
||||
"/usr/include/c++/15.2.1",
|
||||
"/usr/include/c++/15.2.1/x86_64-pc-linux-gnu",
|
||||
"/usr/include/c++/15.2.1/backward",
|
||||
"/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include",
|
||||
"/usr/local/include",
|
||||
"/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include-fixed"
|
||||
],
|
||||
"MOC_MACRO_NAMES" :
|
||||
[
|
||||
"Q_OBJECT",
|
||||
"Q_GADGET",
|
||||
"Q_NAMESPACE",
|
||||
"Q_NAMESPACE_EXPORT",
|
||||
"Q_GADGET_EXPORT",
|
||||
"Q_ENUM_NS"
|
||||
],
|
||||
"MOC_OPTIONS" : [],
|
||||
"MOC_PATH_PREFIX" : false,
|
||||
"MOC_PREDEFS_CMD" :
|
||||
[
|
||||
"/usr/bin/c++",
|
||||
"-std=gnu++17",
|
||||
"-w",
|
||||
"-dM",
|
||||
"-E",
|
||||
"/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp"
|
||||
],
|
||||
"MOC_PREDEFS_FILE" : "/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/moc_predefs.h",
|
||||
"MOC_RELAXED_MODE" : false,
|
||||
"MOC_SKIP" : [],
|
||||
"MULTI_CONFIG" : false,
|
||||
"PARALLEL" : 8,
|
||||
"PARSE_CACHE_FILE" : "/home/philipp/programing/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/ParseCache.txt",
|
||||
"QT_MOC_EXECUTABLE" : "/usr/lib/qt6/moc",
|
||||
"QT_UIC_EXECUTABLE" : "",
|
||||
"QT_VERSION_MAJOR" : 6,
|
||||
"QT_VERSION_MINOR" : 9,
|
||||
"SETTINGS_FILE" : "/home/philipp/programing/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/AutogenUsed.txt",
|
||||
"SOURCES" :
|
||||
[
|
||||
[
|
||||
"/home/philipp/programing/QCodeEditor/example/src/MainWindow.cpp",
|
||||
"Mu",
|
||||
null
|
||||
],
|
||||
[
|
||||
"/home/philipp/programing/QCodeEditor/example/src/main.cpp",
|
||||
"Mu",
|
||||
null
|
||||
]
|
||||
],
|
||||
"USE_BETTER_GRAPH" : true,
|
||||
"VERBOSITY" : 0
|
||||
}
|
||||
1
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/AutogenUsed.txt
vendored
Normal file
1
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/AutogenUsed.txt
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
moc:5cf69a70f7ba11482defcf3c93c5e024c6141b90a3c2b01482f86bc0489669af
|
||||
23
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/DependInfo.cmake
vendored
Normal file
23
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/DependInfo.cmake
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
|
||||
# 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
|
||||
"" "QCodeEditorExample_autogen/timestamp" "custom" "QCodeEditorExample_autogen/deps"
|
||||
)
|
||||
|
||||
# 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 "")
|
||||
450
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/ParseCache.txt
vendored
Normal file
450
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/ParseCache.txt
vendored
Normal file
|
|
@ -0,0 +1,450 @@
|
|||
# Generated by CMake. Changes will be overwritten.
|
||||
/home/philipp/programing/QCodeEditor/example/src/MainWindow.cpp
|
||||
/home/philipp/programing/QCodeEditor/example/src/main.cpp
|
||||
/home/philipp/programing/QCodeEditor/example/include/MainWindow.hpp
|
||||
mmc:Q_OBJECT
|
||||
mdp:/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/moc_predefs.h
|
||||
mdp:/home/philipp/programing/QCodeEditor/example/include/MainWindow.hpp
|
||||
mdp:/usr/include/alloca.h
|
||||
mdp:/usr/include/asm-generic/bitsperlong.h
|
||||
mdp:/usr/include/asm-generic/errno-base.h
|
||||
mdp:/usr/include/asm-generic/errno.h
|
||||
mdp:/usr/include/asm-generic/int-ll64.h
|
||||
mdp:/usr/include/asm-generic/posix_types.h
|
||||
mdp:/usr/include/asm-generic/types.h
|
||||
mdp:/usr/include/asm/bitsperlong.h
|
||||
mdp:/usr/include/asm/errno.h
|
||||
mdp:/usr/include/asm/posix_types.h
|
||||
mdp:/usr/include/asm/posix_types_64.h
|
||||
mdp:/usr/include/asm/types.h
|
||||
mdp:/usr/include/assert.h
|
||||
mdp:/usr/include/bits/atomic_wide_counter.h
|
||||
mdp:/usr/include/bits/byteswap.h
|
||||
mdp:/usr/include/bits/cpu-set.h
|
||||
mdp:/usr/include/bits/endian.h
|
||||
mdp:/usr/include/bits/endianness.h
|
||||
mdp:/usr/include/bits/errno.h
|
||||
mdp:/usr/include/bits/floatn-common.h
|
||||
mdp:/usr/include/bits/floatn.h
|
||||
mdp:/usr/include/bits/libc-header-start.h
|
||||
mdp:/usr/include/bits/local_lim.h
|
||||
mdp:/usr/include/bits/locale.h
|
||||
mdp:/usr/include/bits/long-double.h
|
||||
mdp:/usr/include/bits/posix1_lim.h
|
||||
mdp:/usr/include/bits/posix2_lim.h
|
||||
mdp:/usr/include/bits/pthread_stack_min-dynamic.h
|
||||
mdp:/usr/include/bits/pthreadtypes-arch.h
|
||||
mdp:/usr/include/bits/pthreadtypes.h
|
||||
mdp:/usr/include/bits/sched.h
|
||||
mdp:/usr/include/bits/select.h
|
||||
mdp:/usr/include/bits/setjmp.h
|
||||
mdp:/usr/include/bits/stdint-intn.h
|
||||
mdp:/usr/include/bits/stdint-least.h
|
||||
mdp:/usr/include/bits/stdint-uintn.h
|
||||
mdp:/usr/include/bits/stdio_lim.h
|
||||
mdp:/usr/include/bits/stdlib-float.h
|
||||
mdp:/usr/include/bits/struct_mutex.h
|
||||
mdp:/usr/include/bits/struct_rwlock.h
|
||||
mdp:/usr/include/bits/thread-shared-types.h
|
||||
mdp:/usr/include/bits/time.h
|
||||
mdp:/usr/include/bits/time64.h
|
||||
mdp:/usr/include/bits/timesize.h
|
||||
mdp:/usr/include/bits/timex.h
|
||||
mdp:/usr/include/bits/types.h
|
||||
mdp:/usr/include/bits/types/FILE.h
|
||||
mdp:/usr/include/bits/types/__FILE.h
|
||||
mdp:/usr/include/bits/types/__fpos64_t.h
|
||||
mdp:/usr/include/bits/types/__fpos_t.h
|
||||
mdp:/usr/include/bits/types/__locale_t.h
|
||||
mdp:/usr/include/bits/types/__mbstate_t.h
|
||||
mdp:/usr/include/bits/types/__sigset_t.h
|
||||
mdp:/usr/include/bits/types/clock_t.h
|
||||
mdp:/usr/include/bits/types/clockid_t.h
|
||||
mdp:/usr/include/bits/types/cookie_io_functions_t.h
|
||||
mdp:/usr/include/bits/types/error_t.h
|
||||
mdp:/usr/include/bits/types/locale_t.h
|
||||
mdp:/usr/include/bits/types/mbstate_t.h
|
||||
mdp:/usr/include/bits/types/sigset_t.h
|
||||
mdp:/usr/include/bits/types/struct_FILE.h
|
||||
mdp:/usr/include/bits/types/struct___jmp_buf_tag.h
|
||||
mdp:/usr/include/bits/types/struct_itimerspec.h
|
||||
mdp:/usr/include/bits/types/struct_sched_param.h
|
||||
mdp:/usr/include/bits/types/struct_timespec.h
|
||||
mdp:/usr/include/bits/types/struct_timeval.h
|
||||
mdp:/usr/include/bits/types/struct_tm.h
|
||||
mdp:/usr/include/bits/types/time_t.h
|
||||
mdp:/usr/include/bits/types/timer_t.h
|
||||
mdp:/usr/include/bits/types/wint_t.h
|
||||
mdp:/usr/include/bits/typesizes.h
|
||||
mdp:/usr/include/bits/uintn-identity.h
|
||||
mdp:/usr/include/bits/uio_lim.h
|
||||
mdp:/usr/include/bits/waitflags.h
|
||||
mdp:/usr/include/bits/waitstatus.h
|
||||
mdp:/usr/include/bits/wchar.h
|
||||
mdp:/usr/include/bits/wordsize.h
|
||||
mdp:/usr/include/bits/xopen_lim.h
|
||||
mdp:/usr/include/c++/15.2.1/algorithm
|
||||
mdp:/usr/include/c++/15.2.1/array
|
||||
mdp:/usr/include/c++/15.2.1/atomic
|
||||
mdp:/usr/include/c++/15.2.1/backward/auto_ptr.h
|
||||
mdp:/usr/include/c++/15.2.1/backward/binders.h
|
||||
mdp:/usr/include/c++/15.2.1/bit
|
||||
mdp:/usr/include/c++/15.2.1/bits/algorithmfwd.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/align.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/alloc_traits.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/allocated_ptr.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/allocator.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/atomic_base.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/atomic_lockfree_defines.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/basic_string.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/basic_string.tcc
|
||||
mdp:/usr/include/c++/15.2.1/bits/char_traits.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/charconv.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/chrono.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/concept_check.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/cpp_type_traits.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/cxxabi_forced.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/cxxabi_init_exception.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/enable_special_members.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/erase_if.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/exception.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/exception_defines.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/exception_ptr.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/functexcept.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/functional_hash.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/hash_bytes.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/hashtable.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/hashtable_policy.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/invoke.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/ios_base.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/list.tcc
|
||||
mdp:/usr/include/c++/15.2.1/bits/locale_classes.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/locale_classes.tcc
|
||||
mdp:/usr/include/c++/15.2.1/bits/localefwd.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/memory_resource.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/memoryfwd.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/move.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/nested_exception.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/new_allocator.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/node_handle.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/ostream_insert.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/parse_numbers.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/postypes.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/predefined_ops.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/ptr_traits.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/range_access.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/refwrap.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/requires_hosted.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/shared_ptr.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/shared_ptr_atomic.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/shared_ptr_base.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/specfun.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/std_abs.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/std_function.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_algo.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_algobase.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_bvector.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_construct.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_function.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_heap.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_iterator.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_iterator_base_funcs.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_iterator_base_types.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_list.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_map.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_multimap.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_multiset.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_numeric.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_pair.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_raw_storage_iter.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_relops.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_set.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_tempbuf.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_tree.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_uninitialized.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stl_vector.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/stream_iterator.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/streambuf.tcc
|
||||
mdp:/usr/include/c++/15.2.1/bits/streambuf_iterator.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/string_view.tcc
|
||||
mdp:/usr/include/c++/15.2.1/bits/stringfwd.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/uniform_int_dist.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/unique_ptr.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/unordered_map.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/unordered_set.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/uses_allocator.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/uses_allocator_args.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/utility.h
|
||||
mdp:/usr/include/c++/15.2.1/bits/vector.tcc
|
||||
mdp:/usr/include/c++/15.2.1/bits/version.h
|
||||
mdp:/usr/include/c++/15.2.1/cassert
|
||||
mdp:/usr/include/c++/15.2.1/cctype
|
||||
mdp:/usr/include/c++/15.2.1/cerrno
|
||||
mdp:/usr/include/c++/15.2.1/chrono
|
||||
mdp:/usr/include/c++/15.2.1/climits
|
||||
mdp:/usr/include/c++/15.2.1/clocale
|
||||
mdp:/usr/include/c++/15.2.1/cmath
|
||||
mdp:/usr/include/c++/15.2.1/compare
|
||||
mdp:/usr/include/c++/15.2.1/concepts
|
||||
mdp:/usr/include/c++/15.2.1/cstddef
|
||||
mdp:/usr/include/c++/15.2.1/cstdint
|
||||
mdp:/usr/include/c++/15.2.1/cstdio
|
||||
mdp:/usr/include/c++/15.2.1/cstdlib
|
||||
mdp:/usr/include/c++/15.2.1/cstring
|
||||
mdp:/usr/include/c++/15.2.1/ctime
|
||||
mdp:/usr/include/c++/15.2.1/cwchar
|
||||
mdp:/usr/include/c++/15.2.1/debug/assertions.h
|
||||
mdp:/usr/include/c++/15.2.1/debug/debug.h
|
||||
mdp:/usr/include/c++/15.2.1/exception
|
||||
mdp:/usr/include/c++/15.2.1/ext/aligned_buffer.h
|
||||
mdp:/usr/include/c++/15.2.1/ext/alloc_traits.h
|
||||
mdp:/usr/include/c++/15.2.1/ext/atomicity.h
|
||||
mdp:/usr/include/c++/15.2.1/ext/concurrence.h
|
||||
mdp:/usr/include/c++/15.2.1/ext/numeric_traits.h
|
||||
mdp:/usr/include/c++/15.2.1/ext/string_conversions.h
|
||||
mdp:/usr/include/c++/15.2.1/ext/type_traits.h
|
||||
mdp:/usr/include/c++/15.2.1/functional
|
||||
mdp:/usr/include/c++/15.2.1/initializer_list
|
||||
mdp:/usr/include/c++/15.2.1/iosfwd
|
||||
mdp:/usr/include/c++/15.2.1/iterator
|
||||
mdp:/usr/include/c++/15.2.1/limits
|
||||
mdp:/usr/include/c++/15.2.1/list
|
||||
mdp:/usr/include/c++/15.2.1/map
|
||||
mdp:/usr/include/c++/15.2.1/memory
|
||||
mdp:/usr/include/c++/15.2.1/new
|
||||
mdp:/usr/include/c++/15.2.1/numeric
|
||||
mdp:/usr/include/c++/15.2.1/optional
|
||||
mdp:/usr/include/c++/15.2.1/pstl/execution_defs.h
|
||||
mdp:/usr/include/c++/15.2.1/pstl/glue_numeric_defs.h
|
||||
mdp:/usr/include/c++/15.2.1/pstl/pstl_config.h
|
||||
mdp:/usr/include/c++/15.2.1/ratio
|
||||
mdp:/usr/include/c++/15.2.1/set
|
||||
mdp:/usr/include/c++/15.2.1/stdexcept
|
||||
mdp:/usr/include/c++/15.2.1/streambuf
|
||||
mdp:/usr/include/c++/15.2.1/string
|
||||
mdp:/usr/include/c++/15.2.1/string_view
|
||||
mdp:/usr/include/c++/15.2.1/system_error
|
||||
mdp:/usr/include/c++/15.2.1/tr1/bessel_function.tcc
|
||||
mdp:/usr/include/c++/15.2.1/tr1/beta_function.tcc
|
||||
mdp:/usr/include/c++/15.2.1/tr1/ell_integral.tcc
|
||||
mdp:/usr/include/c++/15.2.1/tr1/exp_integral.tcc
|
||||
mdp:/usr/include/c++/15.2.1/tr1/gamma.tcc
|
||||
mdp:/usr/include/c++/15.2.1/tr1/hypergeometric.tcc
|
||||
mdp:/usr/include/c++/15.2.1/tr1/legendre_function.tcc
|
||||
mdp:/usr/include/c++/15.2.1/tr1/modified_bessel_func.tcc
|
||||
mdp:/usr/include/c++/15.2.1/tr1/poly_hermite.tcc
|
||||
mdp:/usr/include/c++/15.2.1/tr1/poly_laguerre.tcc
|
||||
mdp:/usr/include/c++/15.2.1/tr1/riemann_zeta.tcc
|
||||
mdp:/usr/include/c++/15.2.1/tr1/special_function_util.h
|
||||
mdp:/usr/include/c++/15.2.1/tuple
|
||||
mdp:/usr/include/c++/15.2.1/type_traits
|
||||
mdp:/usr/include/c++/15.2.1/typeinfo
|
||||
mdp:/usr/include/c++/15.2.1/unordered_map
|
||||
mdp:/usr/include/c++/15.2.1/unordered_set
|
||||
mdp:/usr/include/c++/15.2.1/utility
|
||||
mdp:/usr/include/c++/15.2.1/variant
|
||||
mdp:/usr/include/c++/15.2.1/vector
|
||||
mdp:/usr/include/c++/15.2.1/version
|
||||
mdp:/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/atomic_word.h
|
||||
mdp:/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++allocator.h
|
||||
mdp:/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++config.h
|
||||
mdp:/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++locale.h
|
||||
mdp:/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/cpu_defines.h
|
||||
mdp:/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/error_constants.h
|
||||
mdp:/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/gthr-default.h
|
||||
mdp:/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/gthr.h
|
||||
mdp:/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/os_defines.h
|
||||
mdp:/usr/include/ctype.h
|
||||
mdp:/usr/include/endian.h
|
||||
mdp:/usr/include/errno.h
|
||||
mdp:/usr/include/features-time64.h
|
||||
mdp:/usr/include/features.h
|
||||
mdp:/usr/include/gnu/stubs-64.h
|
||||
mdp:/usr/include/gnu/stubs.h
|
||||
mdp:/usr/include/limits.h
|
||||
mdp:/usr/include/linux/errno.h
|
||||
mdp:/usr/include/linux/limits.h
|
||||
mdp:/usr/include/linux/posix_types.h
|
||||
mdp:/usr/include/linux/sched/types.h
|
||||
mdp:/usr/include/linux/stddef.h
|
||||
mdp:/usr/include/linux/types.h
|
||||
mdp:/usr/include/locale.h
|
||||
mdp:/usr/include/pthread.h
|
||||
mdp:/usr/include/qt6/QtCore/QPair
|
||||
mdp:/usr/include/qt6/QtCore/QString
|
||||
mdp:/usr/include/qt6/QtCore/QVector
|
||||
mdp:/usr/include/qt6/QtCore/q17memory.h
|
||||
mdp:/usr/include/qt6/QtCore/q20functional.h
|
||||
mdp:/usr/include/qt6/QtCore/q20iterator.h
|
||||
mdp:/usr/include/qt6/QtCore/q20memory.h
|
||||
mdp:/usr/include/qt6/QtCore/q20type_traits.h
|
||||
mdp:/usr/include/qt6/QtCore/q20utility.h
|
||||
mdp:/usr/include/qt6/QtCore/q23utility.h
|
||||
mdp:/usr/include/qt6/QtCore/qalgorithms.h
|
||||
mdp:/usr/include/qt6/QtCore/qanystringview.h
|
||||
mdp:/usr/include/qt6/QtCore/qarraydata.h
|
||||
mdp:/usr/include/qt6/QtCore/qarraydataops.h
|
||||
mdp:/usr/include/qt6/QtCore/qarraydatapointer.h
|
||||
mdp:/usr/include/qt6/QtCore/qassert.h
|
||||
mdp:/usr/include/qt6/QtCore/qatomic.h
|
||||
mdp:/usr/include/qt6/QtCore/qatomic_cxx11.h
|
||||
mdp:/usr/include/qt6/QtCore/qbasicatomic.h
|
||||
mdp:/usr/include/qt6/QtCore/qbindingstorage.h
|
||||
mdp:/usr/include/qt6/QtCore/qbytearray.h
|
||||
mdp:/usr/include/qt6/QtCore/qbytearrayalgorithms.h
|
||||
mdp:/usr/include/qt6/QtCore/qbytearraylist.h
|
||||
mdp:/usr/include/qt6/QtCore/qbytearrayview.h
|
||||
mdp:/usr/include/qt6/QtCore/qchar.h
|
||||
mdp:/usr/include/qt6/QtCore/qcompare.h
|
||||
mdp:/usr/include/qt6/QtCore/qcompare_impl.h
|
||||
mdp:/usr/include/qt6/QtCore/qcomparehelpers.h
|
||||
mdp:/usr/include/qt6/QtCore/qcompilerdetection.h
|
||||
mdp:/usr/include/qt6/QtCore/qconfig.h
|
||||
mdp:/usr/include/qt6/QtCore/qconstructormacros.h
|
||||
mdp:/usr/include/qt6/QtCore/qcontainerfwd.h
|
||||
mdp:/usr/include/qt6/QtCore/qcontainerinfo.h
|
||||
mdp:/usr/include/qt6/QtCore/qcontainertools_impl.h
|
||||
mdp:/usr/include/qt6/QtCore/qcontiguouscache.h
|
||||
mdp:/usr/include/qt6/QtCore/qdarwinhelpers.h
|
||||
mdp:/usr/include/qt6/QtCore/qdatastream.h
|
||||
mdp:/usr/include/qt6/QtCore/qdebug.h
|
||||
mdp:/usr/include/qt6/QtCore/qendian.h
|
||||
mdp:/usr/include/qt6/QtCore/qexceptionhandling.h
|
||||
mdp:/usr/include/qt6/QtCore/qflags.h
|
||||
mdp:/usr/include/qt6/QtCore/qfloat16.h
|
||||
mdp:/usr/include/qt6/QtCore/qforeach.h
|
||||
mdp:/usr/include/qt6/QtCore/qfunctionaltools_impl.h
|
||||
mdp:/usr/include/qt6/QtCore/qfunctionpointer.h
|
||||
mdp:/usr/include/qt6/QtCore/qgenericatomic.h
|
||||
mdp:/usr/include/qt6/QtCore/qglobal.h
|
||||
mdp:/usr/include/qt6/QtCore/qglobalstatic.h
|
||||
mdp:/usr/include/qt6/QtCore/qhash.h
|
||||
mdp:/usr/include/qt6/QtCore/qhashfunctions.h
|
||||
mdp:/usr/include/qt6/QtCore/qiodevicebase.h
|
||||
mdp:/usr/include/qt6/QtCore/qiterable.h
|
||||
mdp:/usr/include/qt6/QtCore/qiterator.h
|
||||
mdp:/usr/include/qt6/QtCore/qlatin1stringview.h
|
||||
mdp:/usr/include/qt6/QtCore/qline.h
|
||||
mdp:/usr/include/qt6/QtCore/qlist.h
|
||||
mdp:/usr/include/qt6/QtCore/qlogging.h
|
||||
mdp:/usr/include/qt6/QtCore/qmalloc.h
|
||||
mdp:/usr/include/qt6/QtCore/qmap.h
|
||||
mdp:/usr/include/qt6/QtCore/qmargins.h
|
||||
mdp:/usr/include/qt6/QtCore/qmath.h
|
||||
mdp:/usr/include/qt6/QtCore/qmetacontainer.h
|
||||
mdp:/usr/include/qt6/QtCore/qmetatype.h
|
||||
mdp:/usr/include/qt6/QtCore/qminmax.h
|
||||
mdp:/usr/include/qt6/QtCore/qnamespace.h
|
||||
mdp:/usr/include/qt6/QtCore/qnumeric.h
|
||||
mdp:/usr/include/qt6/QtCore/qobject.h
|
||||
mdp:/usr/include/qt6/QtCore/qobject_impl.h
|
||||
mdp:/usr/include/qt6/QtCore/qobjectdefs.h
|
||||
mdp:/usr/include/qt6/QtCore/qobjectdefs_impl.h
|
||||
mdp:/usr/include/qt6/QtCore/qoverload.h
|
||||
mdp:/usr/include/qt6/QtCore/qpair.h
|
||||
mdp:/usr/include/qt6/QtCore/qpoint.h
|
||||
mdp:/usr/include/qt6/QtCore/qprocessordetection.h
|
||||
mdp:/usr/include/qt6/QtCore/qrect.h
|
||||
mdp:/usr/include/qt6/QtCore/qrefcount.h
|
||||
mdp:/usr/include/qt6/QtCore/qscopedpointer.h
|
||||
mdp:/usr/include/qt6/QtCore/qscopeguard.h
|
||||
mdp:/usr/include/qt6/QtCore/qset.h
|
||||
mdp:/usr/include/qt6/QtCore/qshareddata.h
|
||||
mdp:/usr/include/qt6/QtCore/qshareddata_impl.h
|
||||
mdp:/usr/include/qt6/QtCore/qsharedpointer.h
|
||||
mdp:/usr/include/qt6/QtCore/qsharedpointer_impl.h
|
||||
mdp:/usr/include/qt6/QtCore/qsize.h
|
||||
mdp:/usr/include/qt6/QtCore/qspan.h
|
||||
mdp:/usr/include/qt6/QtCore/qstdlibdetection.h
|
||||
mdp:/usr/include/qt6/QtCore/qstring.h
|
||||
mdp:/usr/include/qt6/QtCore/qstringalgorithms.h
|
||||
mdp:/usr/include/qt6/QtCore/qstringbuilder.h
|
||||
mdp:/usr/include/qt6/QtCore/qstringconverter.h
|
||||
mdp:/usr/include/qt6/QtCore/qstringconverter_base.h
|
||||
mdp:/usr/include/qt6/QtCore/qstringfwd.h
|
||||
mdp:/usr/include/qt6/QtCore/qstringlist.h
|
||||
mdp:/usr/include/qt6/QtCore/qstringliteral.h
|
||||
mdp:/usr/include/qt6/QtCore/qstringmatcher.h
|
||||
mdp:/usr/include/qt6/QtCore/qstringtokenizer.h
|
||||
mdp:/usr/include/qt6/QtCore/qstringview.h
|
||||
mdp:/usr/include/qt6/QtCore/qswap.h
|
||||
mdp:/usr/include/qt6/QtCore/qsysinfo.h
|
||||
mdp:/usr/include/qt6/QtCore/qsystemdetection.h
|
||||
mdp:/usr/include/qt6/QtCore/qtaggedpointer.h
|
||||
mdp:/usr/include/qt6/QtCore/qtclasshelpermacros.h
|
||||
mdp:/usr/include/qt6/QtCore/qtconfiginclude.h
|
||||
mdp:/usr/include/qt6/QtCore/qtconfigmacros.h
|
||||
mdp:/usr/include/qt6/QtCore/qtcore-config.h
|
||||
mdp:/usr/include/qt6/QtCore/qtcoreexports.h
|
||||
mdp:/usr/include/qt6/QtCore/qtcoreglobal.h
|
||||
mdp:/usr/include/qt6/QtCore/qtdeprecationdefinitions.h
|
||||
mdp:/usr/include/qt6/QtCore/qtdeprecationmarkers.h
|
||||
mdp:/usr/include/qt6/QtCore/qtenvironmentvariables.h
|
||||
mdp:/usr/include/qt6/QtCore/qtextstream.h
|
||||
mdp:/usr/include/qt6/QtCore/qtformat_impl.h
|
||||
mdp:/usr/include/qt6/QtCore/qtmetamacros.h
|
||||
mdp:/usr/include/qt6/QtCore/qtnoop.h
|
||||
mdp:/usr/include/qt6/QtCore/qtpreprocessorsupport.h
|
||||
mdp:/usr/include/qt6/QtCore/qtresource.h
|
||||
mdp:/usr/include/qt6/QtCore/qttranslation.h
|
||||
mdp:/usr/include/qt6/QtCore/qttypetraits.h
|
||||
mdp:/usr/include/qt6/QtCore/qtversion.h
|
||||
mdp:/usr/include/qt6/QtCore/qtversionchecks.h
|
||||
mdp:/usr/include/qt6/QtCore/qtypeinfo.h
|
||||
mdp:/usr/include/qt6/QtCore/qtypes.h
|
||||
mdp:/usr/include/qt6/QtCore/qutf8stringview.h
|
||||
mdp:/usr/include/qt6/QtCore/qvariant.h
|
||||
mdp:/usr/include/qt6/QtCore/qvarlengtharray.h
|
||||
mdp:/usr/include/qt6/QtCore/qvector.h
|
||||
mdp:/usr/include/qt6/QtCore/qversiontagging.h
|
||||
mdp:/usr/include/qt6/QtCore/qxptype_traits.h
|
||||
mdp:/usr/include/qt6/QtCore/qyieldcpu.h
|
||||
mdp:/usr/include/qt6/QtGui/qaction.h
|
||||
mdp:/usr/include/qt6/QtGui/qbitmap.h
|
||||
mdp:/usr/include/qt6/QtGui/qbrush.h
|
||||
mdp:/usr/include/qt6/QtGui/qcolor.h
|
||||
mdp:/usr/include/qt6/QtGui/qcursor.h
|
||||
mdp:/usr/include/qt6/QtGui/qfont.h
|
||||
mdp:/usr/include/qt6/QtGui/qfontinfo.h
|
||||
mdp:/usr/include/qt6/QtGui/qfontmetrics.h
|
||||
mdp:/usr/include/qt6/QtGui/qfontvariableaxis.h
|
||||
mdp:/usr/include/qt6/QtGui/qicon.h
|
||||
mdp:/usr/include/qt6/QtGui/qimage.h
|
||||
mdp:/usr/include/qt6/QtGui/qkeysequence.h
|
||||
mdp:/usr/include/qt6/QtGui/qpaintdevice.h
|
||||
mdp:/usr/include/qt6/QtGui/qpalette.h
|
||||
mdp:/usr/include/qt6/QtGui/qpixelformat.h
|
||||
mdp:/usr/include/qt6/QtGui/qpixmap.h
|
||||
mdp:/usr/include/qt6/QtGui/qpolygon.h
|
||||
mdp:/usr/include/qt6/QtGui/qregion.h
|
||||
mdp:/usr/include/qt6/QtGui/qrgb.h
|
||||
mdp:/usr/include/qt6/QtGui/qrgba64.h
|
||||
mdp:/usr/include/qt6/QtGui/qtgui-config.h
|
||||
mdp:/usr/include/qt6/QtGui/qtguiexports.h
|
||||
mdp:/usr/include/qt6/QtGui/qtguiglobal.h
|
||||
mdp:/usr/include/qt6/QtGui/qtransform.h
|
||||
mdp:/usr/include/qt6/QtGui/qwindowdefs.h
|
||||
mdp:/usr/include/qt6/QtWidgets/QMainWindow
|
||||
mdp:/usr/include/qt6/QtWidgets/qmainwindow.h
|
||||
mdp:/usr/include/qt6/QtWidgets/qsizepolicy.h
|
||||
mdp:/usr/include/qt6/QtWidgets/qtabwidget.h
|
||||
mdp:/usr/include/qt6/QtWidgets/qtwidgets-config.h
|
||||
mdp:/usr/include/qt6/QtWidgets/qtwidgetsexports.h
|
||||
mdp:/usr/include/qt6/QtWidgets/qtwidgetsglobal.h
|
||||
mdp:/usr/include/qt6/QtWidgets/qwidget.h
|
||||
mdp:/usr/include/sched.h
|
||||
mdp:/usr/include/stdc-predef.h
|
||||
mdp:/usr/include/stdint.h
|
||||
mdp:/usr/include/stdio.h
|
||||
mdp:/usr/include/stdlib.h
|
||||
mdp:/usr/include/string.h
|
||||
mdp:/usr/include/strings.h
|
||||
mdp:/usr/include/sys/cdefs.h
|
||||
mdp:/usr/include/sys/select.h
|
||||
mdp:/usr/include/sys/single_threaded.h
|
||||
mdp:/usr/include/sys/types.h
|
||||
mdp:/usr/include/time.h
|
||||
mdp:/usr/include/wchar.h
|
||||
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h
|
||||
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h
|
||||
mdp:/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h
|
||||
96
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/build.make
vendored
Normal file
96
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/build.make
vendored
Normal file
|
|
@ -0,0 +1,96 @@
|
|||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||
|
||||
# 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/philipp/programing/QCodeEditor/example
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/philipp/programing/QCodeEditor/example/build
|
||||
|
||||
# Utility rule file for QCodeEditorExample_autogen.
|
||||
|
||||
# Include any custom commands dependencies for this target.
|
||||
include CMakeFiles/QCodeEditorExample_autogen.dir/compiler_depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include CMakeFiles/QCodeEditorExample_autogen.dir/progress.make
|
||||
|
||||
CMakeFiles/QCodeEditorExample_autogen: QCodeEditorExample_autogen/timestamp
|
||||
|
||||
QCodeEditorExample_autogen/timestamp: /usr/lib/qt6/moc
|
||||
QCodeEditorExample_autogen/timestamp: CMakeFiles/QCodeEditorExample_autogen.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/philipp/programing/QCodeEditor/example/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Automatic MOC for target QCodeEditorExample"
|
||||
/usr/bin/cmake -E cmake_autogen /home/philipp/programing/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/AutogenInfo.json ""
|
||||
/usr/bin/cmake -E touch /home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/timestamp
|
||||
|
||||
CMakeFiles/QCodeEditorExample_autogen.dir/codegen:
|
||||
.PHONY : CMakeFiles/QCodeEditorExample_autogen.dir/codegen
|
||||
|
||||
QCodeEditorExample_autogen: CMakeFiles/QCodeEditorExample_autogen
|
||||
QCodeEditorExample_autogen: QCodeEditorExample_autogen/timestamp
|
||||
QCodeEditorExample_autogen: CMakeFiles/QCodeEditorExample_autogen.dir/build.make
|
||||
.PHONY : QCodeEditorExample_autogen
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
CMakeFiles/QCodeEditorExample_autogen.dir/build: QCodeEditorExample_autogen
|
||||
.PHONY : CMakeFiles/QCodeEditorExample_autogen.dir/build
|
||||
|
||||
CMakeFiles/QCodeEditorExample_autogen.dir/clean:
|
||||
$(CMAKE_COMMAND) -P CMakeFiles/QCodeEditorExample_autogen.dir/cmake_clean.cmake
|
||||
.PHONY : CMakeFiles/QCodeEditorExample_autogen.dir/clean
|
||||
|
||||
CMakeFiles/QCodeEditorExample_autogen.dir/depend:
|
||||
cd /home/philipp/programing/QCodeEditor/example/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/philipp/programing/QCodeEditor/example /home/philipp/programing/QCodeEditor/example /home/philipp/programing/QCodeEditor/example/build /home/philipp/programing/QCodeEditor/example/build /home/philipp/programing/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/DependInfo.cmake "--color=$(COLOR)"
|
||||
.PHONY : CMakeFiles/QCodeEditorExample_autogen.dir/depend
|
||||
|
||||
10
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/cmake_clean.cmake
vendored
Normal file
10
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/cmake_clean.cmake
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
file(REMOVE_RECURSE
|
||||
"CMakeFiles/QCodeEditorExample_autogen"
|
||||
"QCodeEditorExample_autogen/mocs_compilation.cpp"
|
||||
"QCodeEditorExample_autogen/timestamp"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang )
|
||||
include(CMakeFiles/QCodeEditorExample_autogen.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
||||
|
|
@ -0,0 +1,892 @@
|
|||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||
|
||||
/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/timestamp
|
||||
/home/philipp/programing/QCodeEditor/example/CMakeLists.txt
|
||||
/home/philipp/programing/QCodeEditor/example/build/CMakeFiles/4.1.2/CMakeCCompiler.cmake
|
||||
/home/philipp/programing/QCodeEditor/example/build/CMakeFiles/4.1.2/CMakeCXXCompiler.cmake
|
||||
/home/philipp/programing/QCodeEditor/example/build/CMakeFiles/4.1.2/CMakeSystem.cmake
|
||||
/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/moc_predefs.h
|
||||
/home/philipp/programing/QCodeEditor/example/include/MainWindow.hpp
|
||||
/home/philipp/programing/QCodeEditor/example/resources/demo_resources.qrc
|
||||
/home/philipp/programing/QCodeEditor/example/src/MainWindow.cpp
|
||||
/home/philipp/programing/QCodeEditor/example/src/main.cpp
|
||||
/usr/bin/cmake
|
||||
/usr/include/alloca.h
|
||||
/usr/include/asm-generic/bitsperlong.h
|
||||
/usr/include/asm-generic/errno-base.h
|
||||
/usr/include/asm-generic/errno.h
|
||||
/usr/include/asm-generic/int-ll64.h
|
||||
/usr/include/asm-generic/posix_types.h
|
||||
/usr/include/asm-generic/types.h
|
||||
/usr/include/asm/bitsperlong.h
|
||||
/usr/include/asm/errno.h
|
||||
/usr/include/asm/posix_types.h
|
||||
/usr/include/asm/posix_types_64.h
|
||||
/usr/include/asm/types.h
|
||||
/usr/include/assert.h
|
||||
/usr/include/bits/atomic_wide_counter.h
|
||||
/usr/include/bits/byteswap.h
|
||||
/usr/include/bits/cpu-set.h
|
||||
/usr/include/bits/endian.h
|
||||
/usr/include/bits/endianness.h
|
||||
/usr/include/bits/errno.h
|
||||
/usr/include/bits/floatn-common.h
|
||||
/usr/include/bits/floatn.h
|
||||
/usr/include/bits/libc-header-start.h
|
||||
/usr/include/bits/local_lim.h
|
||||
/usr/include/bits/locale.h
|
||||
/usr/include/bits/long-double.h
|
||||
/usr/include/bits/posix1_lim.h
|
||||
/usr/include/bits/posix2_lim.h
|
||||
/usr/include/bits/pthread_stack_min-dynamic.h
|
||||
/usr/include/bits/pthreadtypes-arch.h
|
||||
/usr/include/bits/pthreadtypes.h
|
||||
/usr/include/bits/sched.h
|
||||
/usr/include/bits/select.h
|
||||
/usr/include/bits/setjmp.h
|
||||
/usr/include/bits/stdint-intn.h
|
||||
/usr/include/bits/stdint-least.h
|
||||
/usr/include/bits/stdint-uintn.h
|
||||
/usr/include/bits/stdio_lim.h
|
||||
/usr/include/bits/stdlib-float.h
|
||||
/usr/include/bits/struct_mutex.h
|
||||
/usr/include/bits/struct_rwlock.h
|
||||
/usr/include/bits/thread-shared-types.h
|
||||
/usr/include/bits/time.h
|
||||
/usr/include/bits/time64.h
|
||||
/usr/include/bits/timesize.h
|
||||
/usr/include/bits/timex.h
|
||||
/usr/include/bits/types.h
|
||||
/usr/include/bits/types/FILE.h
|
||||
/usr/include/bits/types/__FILE.h
|
||||
/usr/include/bits/types/__fpos64_t.h
|
||||
/usr/include/bits/types/__fpos_t.h
|
||||
/usr/include/bits/types/__locale_t.h
|
||||
/usr/include/bits/types/__mbstate_t.h
|
||||
/usr/include/bits/types/__sigset_t.h
|
||||
/usr/include/bits/types/clock_t.h
|
||||
/usr/include/bits/types/clockid_t.h
|
||||
/usr/include/bits/types/cookie_io_functions_t.h
|
||||
/usr/include/bits/types/error_t.h
|
||||
/usr/include/bits/types/locale_t.h
|
||||
/usr/include/bits/types/mbstate_t.h
|
||||
/usr/include/bits/types/sigset_t.h
|
||||
/usr/include/bits/types/struct_FILE.h
|
||||
/usr/include/bits/types/struct___jmp_buf_tag.h
|
||||
/usr/include/bits/types/struct_itimerspec.h
|
||||
/usr/include/bits/types/struct_sched_param.h
|
||||
/usr/include/bits/types/struct_timespec.h
|
||||
/usr/include/bits/types/struct_timeval.h
|
||||
/usr/include/bits/types/struct_tm.h
|
||||
/usr/include/bits/types/time_t.h
|
||||
/usr/include/bits/types/timer_t.h
|
||||
/usr/include/bits/types/wint_t.h
|
||||
/usr/include/bits/typesizes.h
|
||||
/usr/include/bits/uintn-identity.h
|
||||
/usr/include/bits/uio_lim.h
|
||||
/usr/include/bits/waitflags.h
|
||||
/usr/include/bits/waitstatus.h
|
||||
/usr/include/bits/wchar.h
|
||||
/usr/include/bits/wordsize.h
|
||||
/usr/include/bits/xopen_lim.h
|
||||
/usr/include/c++/15.2.1/algorithm
|
||||
/usr/include/c++/15.2.1/array
|
||||
/usr/include/c++/15.2.1/atomic
|
||||
/usr/include/c++/15.2.1/backward/auto_ptr.h
|
||||
/usr/include/c++/15.2.1/backward/binders.h
|
||||
/usr/include/c++/15.2.1/bit
|
||||
/usr/include/c++/15.2.1/bits/algorithmfwd.h
|
||||
/usr/include/c++/15.2.1/bits/align.h
|
||||
/usr/include/c++/15.2.1/bits/alloc_traits.h
|
||||
/usr/include/c++/15.2.1/bits/allocated_ptr.h
|
||||
/usr/include/c++/15.2.1/bits/allocator.h
|
||||
/usr/include/c++/15.2.1/bits/atomic_base.h
|
||||
/usr/include/c++/15.2.1/bits/atomic_lockfree_defines.h
|
||||
/usr/include/c++/15.2.1/bits/basic_string.h
|
||||
/usr/include/c++/15.2.1/bits/basic_string.tcc
|
||||
/usr/include/c++/15.2.1/bits/char_traits.h
|
||||
/usr/include/c++/15.2.1/bits/charconv.h
|
||||
/usr/include/c++/15.2.1/bits/chrono.h
|
||||
/usr/include/c++/15.2.1/bits/concept_check.h
|
||||
/usr/include/c++/15.2.1/bits/cpp_type_traits.h
|
||||
/usr/include/c++/15.2.1/bits/cxxabi_forced.h
|
||||
/usr/include/c++/15.2.1/bits/cxxabi_init_exception.h
|
||||
/usr/include/c++/15.2.1/bits/enable_special_members.h
|
||||
/usr/include/c++/15.2.1/bits/erase_if.h
|
||||
/usr/include/c++/15.2.1/bits/exception.h
|
||||
/usr/include/c++/15.2.1/bits/exception_defines.h
|
||||
/usr/include/c++/15.2.1/bits/exception_ptr.h
|
||||
/usr/include/c++/15.2.1/bits/functexcept.h
|
||||
/usr/include/c++/15.2.1/bits/functional_hash.h
|
||||
/usr/include/c++/15.2.1/bits/hash_bytes.h
|
||||
/usr/include/c++/15.2.1/bits/hashtable.h
|
||||
/usr/include/c++/15.2.1/bits/hashtable_policy.h
|
||||
/usr/include/c++/15.2.1/bits/invoke.h
|
||||
/usr/include/c++/15.2.1/bits/ios_base.h
|
||||
/usr/include/c++/15.2.1/bits/list.tcc
|
||||
/usr/include/c++/15.2.1/bits/locale_classes.h
|
||||
/usr/include/c++/15.2.1/bits/locale_classes.tcc
|
||||
/usr/include/c++/15.2.1/bits/localefwd.h
|
||||
/usr/include/c++/15.2.1/bits/memory_resource.h
|
||||
/usr/include/c++/15.2.1/bits/memoryfwd.h
|
||||
/usr/include/c++/15.2.1/bits/move.h
|
||||
/usr/include/c++/15.2.1/bits/nested_exception.h
|
||||
/usr/include/c++/15.2.1/bits/new_allocator.h
|
||||
/usr/include/c++/15.2.1/bits/node_handle.h
|
||||
/usr/include/c++/15.2.1/bits/ostream_insert.h
|
||||
/usr/include/c++/15.2.1/bits/parse_numbers.h
|
||||
/usr/include/c++/15.2.1/bits/postypes.h
|
||||
/usr/include/c++/15.2.1/bits/predefined_ops.h
|
||||
/usr/include/c++/15.2.1/bits/ptr_traits.h
|
||||
/usr/include/c++/15.2.1/bits/range_access.h
|
||||
/usr/include/c++/15.2.1/bits/refwrap.h
|
||||
/usr/include/c++/15.2.1/bits/requires_hosted.h
|
||||
/usr/include/c++/15.2.1/bits/shared_ptr.h
|
||||
/usr/include/c++/15.2.1/bits/shared_ptr_atomic.h
|
||||
/usr/include/c++/15.2.1/bits/shared_ptr_base.h
|
||||
/usr/include/c++/15.2.1/bits/specfun.h
|
||||
/usr/include/c++/15.2.1/bits/std_abs.h
|
||||
/usr/include/c++/15.2.1/bits/std_function.h
|
||||
/usr/include/c++/15.2.1/bits/stl_algo.h
|
||||
/usr/include/c++/15.2.1/bits/stl_algobase.h
|
||||
/usr/include/c++/15.2.1/bits/stl_bvector.h
|
||||
/usr/include/c++/15.2.1/bits/stl_construct.h
|
||||
/usr/include/c++/15.2.1/bits/stl_function.h
|
||||
/usr/include/c++/15.2.1/bits/stl_heap.h
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator.h
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator_base_funcs.h
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator_base_types.h
|
||||
/usr/include/c++/15.2.1/bits/stl_list.h
|
||||
/usr/include/c++/15.2.1/bits/stl_map.h
|
||||
/usr/include/c++/15.2.1/bits/stl_multimap.h
|
||||
/usr/include/c++/15.2.1/bits/stl_multiset.h
|
||||
/usr/include/c++/15.2.1/bits/stl_numeric.h
|
||||
/usr/include/c++/15.2.1/bits/stl_pair.h
|
||||
/usr/include/c++/15.2.1/bits/stl_raw_storage_iter.h
|
||||
/usr/include/c++/15.2.1/bits/stl_relops.h
|
||||
/usr/include/c++/15.2.1/bits/stl_set.h
|
||||
/usr/include/c++/15.2.1/bits/stl_tempbuf.h
|
||||
/usr/include/c++/15.2.1/bits/stl_tree.h
|
||||
/usr/include/c++/15.2.1/bits/stl_uninitialized.h
|
||||
/usr/include/c++/15.2.1/bits/stl_vector.h
|
||||
/usr/include/c++/15.2.1/bits/stream_iterator.h
|
||||
/usr/include/c++/15.2.1/bits/streambuf.tcc
|
||||
/usr/include/c++/15.2.1/bits/streambuf_iterator.h
|
||||
/usr/include/c++/15.2.1/bits/string_view.tcc
|
||||
/usr/include/c++/15.2.1/bits/stringfwd.h
|
||||
/usr/include/c++/15.2.1/bits/uniform_int_dist.h
|
||||
/usr/include/c++/15.2.1/bits/unique_ptr.h
|
||||
/usr/include/c++/15.2.1/bits/unordered_map.h
|
||||
/usr/include/c++/15.2.1/bits/unordered_set.h
|
||||
/usr/include/c++/15.2.1/bits/uses_allocator.h
|
||||
/usr/include/c++/15.2.1/bits/uses_allocator_args.h
|
||||
/usr/include/c++/15.2.1/bits/utility.h
|
||||
/usr/include/c++/15.2.1/bits/vector.tcc
|
||||
/usr/include/c++/15.2.1/bits/version.h
|
||||
/usr/include/c++/15.2.1/cassert
|
||||
/usr/include/c++/15.2.1/cctype
|
||||
/usr/include/c++/15.2.1/cerrno
|
||||
/usr/include/c++/15.2.1/chrono
|
||||
/usr/include/c++/15.2.1/climits
|
||||
/usr/include/c++/15.2.1/clocale
|
||||
/usr/include/c++/15.2.1/cmath
|
||||
/usr/include/c++/15.2.1/compare
|
||||
/usr/include/c++/15.2.1/concepts
|
||||
/usr/include/c++/15.2.1/cstddef
|
||||
/usr/include/c++/15.2.1/cstdint
|
||||
/usr/include/c++/15.2.1/cstdio
|
||||
/usr/include/c++/15.2.1/cstdlib
|
||||
/usr/include/c++/15.2.1/cstring
|
||||
/usr/include/c++/15.2.1/ctime
|
||||
/usr/include/c++/15.2.1/cwchar
|
||||
/usr/include/c++/15.2.1/debug/assertions.h
|
||||
/usr/include/c++/15.2.1/debug/debug.h
|
||||
/usr/include/c++/15.2.1/exception
|
||||
/usr/include/c++/15.2.1/ext/aligned_buffer.h
|
||||
/usr/include/c++/15.2.1/ext/alloc_traits.h
|
||||
/usr/include/c++/15.2.1/ext/atomicity.h
|
||||
/usr/include/c++/15.2.1/ext/concurrence.h
|
||||
/usr/include/c++/15.2.1/ext/numeric_traits.h
|
||||
/usr/include/c++/15.2.1/ext/string_conversions.h
|
||||
/usr/include/c++/15.2.1/ext/type_traits.h
|
||||
/usr/include/c++/15.2.1/functional
|
||||
/usr/include/c++/15.2.1/initializer_list
|
||||
/usr/include/c++/15.2.1/iosfwd
|
||||
/usr/include/c++/15.2.1/iterator
|
||||
/usr/include/c++/15.2.1/limits
|
||||
/usr/include/c++/15.2.1/list
|
||||
/usr/include/c++/15.2.1/map
|
||||
/usr/include/c++/15.2.1/memory
|
||||
/usr/include/c++/15.2.1/new
|
||||
/usr/include/c++/15.2.1/numeric
|
||||
/usr/include/c++/15.2.1/optional
|
||||
/usr/include/c++/15.2.1/pstl/execution_defs.h
|
||||
/usr/include/c++/15.2.1/pstl/glue_numeric_defs.h
|
||||
/usr/include/c++/15.2.1/pstl/pstl_config.h
|
||||
/usr/include/c++/15.2.1/ratio
|
||||
/usr/include/c++/15.2.1/set
|
||||
/usr/include/c++/15.2.1/stdexcept
|
||||
/usr/include/c++/15.2.1/streambuf
|
||||
/usr/include/c++/15.2.1/string
|
||||
/usr/include/c++/15.2.1/string_view
|
||||
/usr/include/c++/15.2.1/system_error
|
||||
/usr/include/c++/15.2.1/tr1/bessel_function.tcc
|
||||
/usr/include/c++/15.2.1/tr1/beta_function.tcc
|
||||
/usr/include/c++/15.2.1/tr1/ell_integral.tcc
|
||||
/usr/include/c++/15.2.1/tr1/exp_integral.tcc
|
||||
/usr/include/c++/15.2.1/tr1/gamma.tcc
|
||||
/usr/include/c++/15.2.1/tr1/hypergeometric.tcc
|
||||
/usr/include/c++/15.2.1/tr1/legendre_function.tcc
|
||||
/usr/include/c++/15.2.1/tr1/modified_bessel_func.tcc
|
||||
/usr/include/c++/15.2.1/tr1/poly_hermite.tcc
|
||||
/usr/include/c++/15.2.1/tr1/poly_laguerre.tcc
|
||||
/usr/include/c++/15.2.1/tr1/riemann_zeta.tcc
|
||||
/usr/include/c++/15.2.1/tr1/special_function_util.h
|
||||
/usr/include/c++/15.2.1/tuple
|
||||
/usr/include/c++/15.2.1/type_traits
|
||||
/usr/include/c++/15.2.1/typeinfo
|
||||
/usr/include/c++/15.2.1/unordered_map
|
||||
/usr/include/c++/15.2.1/unordered_set
|
||||
/usr/include/c++/15.2.1/utility
|
||||
/usr/include/c++/15.2.1/variant
|
||||
/usr/include/c++/15.2.1/vector
|
||||
/usr/include/c++/15.2.1/version
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/atomic_word.h
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++allocator.h
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++config.h
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++locale.h
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/cpu_defines.h
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/error_constants.h
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/gthr-default.h
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/gthr.h
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/os_defines.h
|
||||
/usr/include/ctype.h
|
||||
/usr/include/endian.h
|
||||
/usr/include/errno.h
|
||||
/usr/include/features-time64.h
|
||||
/usr/include/features.h
|
||||
/usr/include/gnu/stubs-64.h
|
||||
/usr/include/gnu/stubs.h
|
||||
/usr/include/limits.h
|
||||
/usr/include/linux/errno.h
|
||||
/usr/include/linux/limits.h
|
||||
/usr/include/linux/posix_types.h
|
||||
/usr/include/linux/sched/types.h
|
||||
/usr/include/linux/stddef.h
|
||||
/usr/include/linux/types.h
|
||||
/usr/include/locale.h
|
||||
/usr/include/pthread.h
|
||||
/usr/include/qt6/QtCore/QPair
|
||||
/usr/include/qt6/QtCore/QString
|
||||
/usr/include/qt6/QtCore/QVector
|
||||
/usr/include/qt6/QtCore/q17memory.h
|
||||
/usr/include/qt6/QtCore/q20functional.h
|
||||
/usr/include/qt6/QtCore/q20iterator.h
|
||||
/usr/include/qt6/QtCore/q20memory.h
|
||||
/usr/include/qt6/QtCore/q20type_traits.h
|
||||
/usr/include/qt6/QtCore/q20utility.h
|
||||
/usr/include/qt6/QtCore/q23utility.h
|
||||
/usr/include/qt6/QtCore/qalgorithms.h
|
||||
/usr/include/qt6/QtCore/qanystringview.h
|
||||
/usr/include/qt6/QtCore/qarraydata.h
|
||||
/usr/include/qt6/QtCore/qarraydataops.h
|
||||
/usr/include/qt6/QtCore/qarraydatapointer.h
|
||||
/usr/include/qt6/QtCore/qassert.h
|
||||
/usr/include/qt6/QtCore/qatomic.h
|
||||
/usr/include/qt6/QtCore/qatomic_cxx11.h
|
||||
/usr/include/qt6/QtCore/qbasicatomic.h
|
||||
/usr/include/qt6/QtCore/qbindingstorage.h
|
||||
/usr/include/qt6/QtCore/qbytearray.h
|
||||
/usr/include/qt6/QtCore/qbytearrayalgorithms.h
|
||||
/usr/include/qt6/QtCore/qbytearraylist.h
|
||||
/usr/include/qt6/QtCore/qbytearrayview.h
|
||||
/usr/include/qt6/QtCore/qchar.h
|
||||
/usr/include/qt6/QtCore/qcompare.h
|
||||
/usr/include/qt6/QtCore/qcompare_impl.h
|
||||
/usr/include/qt6/QtCore/qcomparehelpers.h
|
||||
/usr/include/qt6/QtCore/qcompilerdetection.h
|
||||
/usr/include/qt6/QtCore/qconfig.h
|
||||
/usr/include/qt6/QtCore/qconstructormacros.h
|
||||
/usr/include/qt6/QtCore/qcontainerfwd.h
|
||||
/usr/include/qt6/QtCore/qcontainerinfo.h
|
||||
/usr/include/qt6/QtCore/qcontainertools_impl.h
|
||||
/usr/include/qt6/QtCore/qcontiguouscache.h
|
||||
/usr/include/qt6/QtCore/qdarwinhelpers.h
|
||||
/usr/include/qt6/QtCore/qdatastream.h
|
||||
/usr/include/qt6/QtCore/qdebug.h
|
||||
/usr/include/qt6/QtCore/qendian.h
|
||||
/usr/include/qt6/QtCore/qexceptionhandling.h
|
||||
/usr/include/qt6/QtCore/qflags.h
|
||||
/usr/include/qt6/QtCore/qfloat16.h
|
||||
/usr/include/qt6/QtCore/qforeach.h
|
||||
/usr/include/qt6/QtCore/qfunctionaltools_impl.h
|
||||
/usr/include/qt6/QtCore/qfunctionpointer.h
|
||||
/usr/include/qt6/QtCore/qgenericatomic.h
|
||||
/usr/include/qt6/QtCore/qglobal.h
|
||||
/usr/include/qt6/QtCore/qglobalstatic.h
|
||||
/usr/include/qt6/QtCore/qhash.h
|
||||
/usr/include/qt6/QtCore/qhashfunctions.h
|
||||
/usr/include/qt6/QtCore/qiodevicebase.h
|
||||
/usr/include/qt6/QtCore/qiterable.h
|
||||
/usr/include/qt6/QtCore/qiterator.h
|
||||
/usr/include/qt6/QtCore/qlatin1stringview.h
|
||||
/usr/include/qt6/QtCore/qline.h
|
||||
/usr/include/qt6/QtCore/qlist.h
|
||||
/usr/include/qt6/QtCore/qlogging.h
|
||||
/usr/include/qt6/QtCore/qmalloc.h
|
||||
/usr/include/qt6/QtCore/qmap.h
|
||||
/usr/include/qt6/QtCore/qmargins.h
|
||||
/usr/include/qt6/QtCore/qmath.h
|
||||
/usr/include/qt6/QtCore/qmetacontainer.h
|
||||
/usr/include/qt6/QtCore/qmetatype.h
|
||||
/usr/include/qt6/QtCore/qminmax.h
|
||||
/usr/include/qt6/QtCore/qnamespace.h
|
||||
/usr/include/qt6/QtCore/qnumeric.h
|
||||
/usr/include/qt6/QtCore/qobject.h
|
||||
/usr/include/qt6/QtCore/qobject_impl.h
|
||||
/usr/include/qt6/QtCore/qobjectdefs.h
|
||||
/usr/include/qt6/QtCore/qobjectdefs_impl.h
|
||||
/usr/include/qt6/QtCore/qoverload.h
|
||||
/usr/include/qt6/QtCore/qpair.h
|
||||
/usr/include/qt6/QtCore/qpoint.h
|
||||
/usr/include/qt6/QtCore/qprocessordetection.h
|
||||
/usr/include/qt6/QtCore/qrect.h
|
||||
/usr/include/qt6/QtCore/qrefcount.h
|
||||
/usr/include/qt6/QtCore/qscopedpointer.h
|
||||
/usr/include/qt6/QtCore/qscopeguard.h
|
||||
/usr/include/qt6/QtCore/qset.h
|
||||
/usr/include/qt6/QtCore/qshareddata.h
|
||||
/usr/include/qt6/QtCore/qshareddata_impl.h
|
||||
/usr/include/qt6/QtCore/qsharedpointer.h
|
||||
/usr/include/qt6/QtCore/qsharedpointer_impl.h
|
||||
/usr/include/qt6/QtCore/qsize.h
|
||||
/usr/include/qt6/QtCore/qspan.h
|
||||
/usr/include/qt6/QtCore/qstdlibdetection.h
|
||||
/usr/include/qt6/QtCore/qstring.h
|
||||
/usr/include/qt6/QtCore/qstringalgorithms.h
|
||||
/usr/include/qt6/QtCore/qstringbuilder.h
|
||||
/usr/include/qt6/QtCore/qstringconverter.h
|
||||
/usr/include/qt6/QtCore/qstringconverter_base.h
|
||||
/usr/include/qt6/QtCore/qstringfwd.h
|
||||
/usr/include/qt6/QtCore/qstringlist.h
|
||||
/usr/include/qt6/QtCore/qstringliteral.h
|
||||
/usr/include/qt6/QtCore/qstringmatcher.h
|
||||
/usr/include/qt6/QtCore/qstringtokenizer.h
|
||||
/usr/include/qt6/QtCore/qstringview.h
|
||||
/usr/include/qt6/QtCore/qswap.h
|
||||
/usr/include/qt6/QtCore/qsysinfo.h
|
||||
/usr/include/qt6/QtCore/qsystemdetection.h
|
||||
/usr/include/qt6/QtCore/qtaggedpointer.h
|
||||
/usr/include/qt6/QtCore/qtclasshelpermacros.h
|
||||
/usr/include/qt6/QtCore/qtconfiginclude.h
|
||||
/usr/include/qt6/QtCore/qtconfigmacros.h
|
||||
/usr/include/qt6/QtCore/qtcore-config.h
|
||||
/usr/include/qt6/QtCore/qtcoreexports.h
|
||||
/usr/include/qt6/QtCore/qtcoreglobal.h
|
||||
/usr/include/qt6/QtCore/qtdeprecationdefinitions.h
|
||||
/usr/include/qt6/QtCore/qtdeprecationmarkers.h
|
||||
/usr/include/qt6/QtCore/qtenvironmentvariables.h
|
||||
/usr/include/qt6/QtCore/qtextstream.h
|
||||
/usr/include/qt6/QtCore/qtformat_impl.h
|
||||
/usr/include/qt6/QtCore/qtmetamacros.h
|
||||
/usr/include/qt6/QtCore/qtnoop.h
|
||||
/usr/include/qt6/QtCore/qtpreprocessorsupport.h
|
||||
/usr/include/qt6/QtCore/qtresource.h
|
||||
/usr/include/qt6/QtCore/qttranslation.h
|
||||
/usr/include/qt6/QtCore/qttypetraits.h
|
||||
/usr/include/qt6/QtCore/qtversion.h
|
||||
/usr/include/qt6/QtCore/qtversionchecks.h
|
||||
/usr/include/qt6/QtCore/qtypeinfo.h
|
||||
/usr/include/qt6/QtCore/qtypes.h
|
||||
/usr/include/qt6/QtCore/qutf8stringview.h
|
||||
/usr/include/qt6/QtCore/qvariant.h
|
||||
/usr/include/qt6/QtCore/qvarlengtharray.h
|
||||
/usr/include/qt6/QtCore/qvector.h
|
||||
/usr/include/qt6/QtCore/qversiontagging.h
|
||||
/usr/include/qt6/QtCore/qxptype_traits.h
|
||||
/usr/include/qt6/QtCore/qyieldcpu.h
|
||||
/usr/include/qt6/QtGui/qaction.h
|
||||
/usr/include/qt6/QtGui/qbitmap.h
|
||||
/usr/include/qt6/QtGui/qbrush.h
|
||||
/usr/include/qt6/QtGui/qcolor.h
|
||||
/usr/include/qt6/QtGui/qcursor.h
|
||||
/usr/include/qt6/QtGui/qfont.h
|
||||
/usr/include/qt6/QtGui/qfontinfo.h
|
||||
/usr/include/qt6/QtGui/qfontmetrics.h
|
||||
/usr/include/qt6/QtGui/qfontvariableaxis.h
|
||||
/usr/include/qt6/QtGui/qicon.h
|
||||
/usr/include/qt6/QtGui/qimage.h
|
||||
/usr/include/qt6/QtGui/qkeysequence.h
|
||||
/usr/include/qt6/QtGui/qpaintdevice.h
|
||||
/usr/include/qt6/QtGui/qpalette.h
|
||||
/usr/include/qt6/QtGui/qpixelformat.h
|
||||
/usr/include/qt6/QtGui/qpixmap.h
|
||||
/usr/include/qt6/QtGui/qpolygon.h
|
||||
/usr/include/qt6/QtGui/qregion.h
|
||||
/usr/include/qt6/QtGui/qrgb.h
|
||||
/usr/include/qt6/QtGui/qrgba64.h
|
||||
/usr/include/qt6/QtGui/qtgui-config.h
|
||||
/usr/include/qt6/QtGui/qtguiexports.h
|
||||
/usr/include/qt6/QtGui/qtguiglobal.h
|
||||
/usr/include/qt6/QtGui/qtransform.h
|
||||
/usr/include/qt6/QtGui/qwindowdefs.h
|
||||
/usr/include/qt6/QtWidgets/QMainWindow
|
||||
/usr/include/qt6/QtWidgets/qmainwindow.h
|
||||
/usr/include/qt6/QtWidgets/qsizepolicy.h
|
||||
/usr/include/qt6/QtWidgets/qtabwidget.h
|
||||
/usr/include/qt6/QtWidgets/qtwidgets-config.h
|
||||
/usr/include/qt6/QtWidgets/qtwidgetsexports.h
|
||||
/usr/include/qt6/QtWidgets/qtwidgetsglobal.h
|
||||
/usr/include/qt6/QtWidgets/qwidget.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/sys/cdefs.h
|
||||
/usr/include/sys/select.h
|
||||
/usr/include/sys/single_threaded.h
|
||||
/usr/include/sys/types.h
|
||||
/usr/include/time.h
|
||||
/usr/include/wchar.h
|
||||
/usr/lib/cmake/Qt6/3rdparty/kwin/FindXKB.cmake
|
||||
/usr/lib/cmake/Qt6/FindWrapAtomic.cmake
|
||||
/usr/lib/cmake/Qt6/FindWrapOpenGL.cmake
|
||||
/usr/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake
|
||||
/usr/lib/cmake/Qt6/Qt6Config.cmake
|
||||
/usr/lib/cmake/Qt6/Qt6ConfigExtras.cmake
|
||||
/usr/lib/cmake/Qt6/Qt6ConfigVersion.cmake
|
||||
/usr/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake
|
||||
/usr/lib/cmake/Qt6/Qt6Dependencies.cmake
|
||||
/usr/lib/cmake/Qt6/Qt6Targets.cmake
|
||||
/usr/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake
|
||||
/usr/lib/cmake/Qt6/QtFeature.cmake
|
||||
/usr/lib/cmake/Qt6/QtFeatureCommon.cmake
|
||||
/usr/lib/cmake/Qt6/QtInstallPaths.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicAndroidHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicAppleHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicCMakeEarlyPolicyHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicGitHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicPluginHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicPluginHelpers_v2.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomAttributionHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomCpeHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomDepHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomFileHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomLicenseHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomOpsHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomPurlHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomPythonHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomQtEntityHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomSystemDepHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicTargetHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicTestHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicToolHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake
|
||||
/usr/lib/cmake/Qt6/QtPublicWindowsHelpers.cmake
|
||||
/usr/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Core/Qt6CoreConfig.cmake
|
||||
/usr/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake
|
||||
/usr/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake
|
||||
/usr/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake
|
||||
/usr/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake
|
||||
/usr/lib/cmake/Qt6Core/Qt6CoreMacros.cmake
|
||||
/usr/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Core/Qt6CoreTargets.cmake
|
||||
/usr/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake
|
||||
/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateConfig.cmake
|
||||
/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateConfigVersion.cmake
|
||||
/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateConfigVersionImpl.cmake
|
||||
/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateDependencies.cmake
|
||||
/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateTargets.cmake
|
||||
/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateVersionlessAliasTargets.cmake
|
||||
/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake
|
||||
/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake
|
||||
/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake
|
||||
/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake
|
||||
/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake
|
||||
/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake
|
||||
/usr/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake
|
||||
/usr/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake
|
||||
/usr/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake
|
||||
/usr/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake
|
||||
/usr/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake
|
||||
/usr/lib/cmake/Qt6DBus/Qt6DBusTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake
|
||||
/usr/lib/cmake/Qt6DBus/Qt6DBusVersionlessAliasTargets.cmake
|
||||
/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateConfig.cmake
|
||||
/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateConfigVersion.cmake
|
||||
/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateConfigVersionImpl.cmake
|
||||
/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateDependencies.cmake
|
||||
/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateTargets.cmake
|
||||
/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateVersionlessAliasTargets.cmake
|
||||
/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake
|
||||
/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake
|
||||
/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake
|
||||
/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake
|
||||
/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake
|
||||
/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginConfig.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets.cmake
|
||||
/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateConfig.cmake
|
||||
/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateConfigVersion.cmake
|
||||
/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateConfigVersionImpl.cmake
|
||||
/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateDependencies.cmake
|
||||
/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateTargets.cmake
|
||||
/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateVersionlessAliasTargets.cmake
|
||||
/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake
|
||||
/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake
|
||||
/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake
|
||||
/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake
|
||||
/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake
|
||||
/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake
|
||||
/usr/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake
|
||||
/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake
|
||||
/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake
|
||||
/usr/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake
|
||||
/usr/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake
|
||||
/usr/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake
|
||||
/usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake
|
||||
/usr/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake
|
||||
/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateConfig.cmake
|
||||
/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateConfigVersion.cmake
|
||||
/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateConfigVersionImpl.cmake
|
||||
/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateDependencies.cmake
|
||||
/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateTargets.cmake
|
||||
/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateVersionlessAliasTargets.cmake
|
||||
/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake
|
||||
/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake
|
||||
/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake
|
||||
/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake
|
||||
/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake
|
||||
/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake
|
||||
/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake
|
||||
/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h
|
||||
/usr/share/cmake/Modules/CMakeCCompiler.cmake.in
|
||||
/usr/share/cmake/Modules/CMakeCCompilerABI.c
|
||||
/usr/share/cmake/Modules/CMakeCInformation.cmake
|
||||
/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in
|
||||
/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp
|
||||
/usr/share/cmake/Modules/CMakeCXXInformation.cmake
|
||||
/usr/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake
|
||||
/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake
|
||||
/usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake
|
||||
/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake
|
||||
/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake
|
||||
/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake
|
||||
/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake
|
||||
/usr/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake
|
||||
/usr/share/cmake/Modules/CMakeDetermineSystem.cmake
|
||||
/usr/share/cmake/Modules/CMakeFindBinUtils.cmake
|
||||
/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake
|
||||
/usr/share/cmake/Modules/CMakeGenericSystem.cmake
|
||||
/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake
|
||||
/usr/share/cmake/Modules/CMakeLanguageInformation.cmake
|
||||
/usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake
|
||||
/usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake
|
||||
/usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake
|
||||
/usr/share/cmake/Modules/CMakeSystem.cmake.in
|
||||
/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake
|
||||
/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake
|
||||
/usr/share/cmake/Modules/CMakeTestCCompiler.cmake
|
||||
/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake
|
||||
/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake
|
||||
/usr/share/cmake/Modules/CMakeUnixFindMake.cmake
|
||||
/usr/share/cmake/Modules/CheckCSourceCompiles.cmake
|
||||
/usr/share/cmake/Modules/CheckCXXCompilerFlag.cmake
|
||||
/usr/share/cmake/Modules/CheckCXXSourceCompiles.cmake
|
||||
/usr/share/cmake/Modules/CheckIncludeFile.cmake
|
||||
/usr/share/cmake/Modules/CheckLibraryExists.cmake
|
||||
/usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/Bruce-C-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake
|
||||
/usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake
|
||||
/usr/share/cmake/Modules/Compiler/Compaq-C-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/Diab-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/GNU-C-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/GNU-C.cmake
|
||||
/usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake
|
||||
/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake
|
||||
/usr/share/cmake/Modules/Compiler/GNU.cmake
|
||||
/usr/share/cmake/Modules/Compiler/HP-C-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake
|
||||
/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake
|
||||
/usr/share/cmake/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/LCC-C-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/Renesas-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/SDCC-C-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/SunPro-C-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/XL-C-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/XLClang-C-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/zOS-C-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake
|
||||
/usr/share/cmake/Modules/FeatureSummary.cmake
|
||||
/usr/share/cmake/Modules/FindOpenGL.cmake
|
||||
/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake
|
||||
/usr/share/cmake/Modules/FindPackageMessage.cmake
|
||||
/usr/share/cmake/Modules/FindPkgConfig.cmake
|
||||
/usr/share/cmake/Modules/FindThreads.cmake
|
||||
/usr/share/cmake/Modules/FindVulkan.cmake
|
||||
/usr/share/cmake/Modules/GNUInstallDirs.cmake
|
||||
/usr/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake
|
||||
/usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake
|
||||
/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake
|
||||
/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake
|
||||
/usr/share/cmake/Modules/Internal/CMakeInspectCLinker.cmake
|
||||
/usr/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake
|
||||
/usr/share/cmake/Modules/Internal/CheckCompilerFlag.cmake
|
||||
/usr/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake
|
||||
/usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake
|
||||
/usr/share/cmake/Modules/Internal/FeatureTesting.cmake
|
||||
/usr/share/cmake/Modules/Linker/GNU-C.cmake
|
||||
/usr/share/cmake/Modules/Linker/GNU-CXX.cmake
|
||||
/usr/share/cmake/Modules/Linker/GNU.cmake
|
||||
/usr/share/cmake/Modules/MacroAddFileDependencies.cmake
|
||||
/usr/share/cmake/Modules/Platform/Linker/GNU.cmake
|
||||
/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-C.cmake
|
||||
/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake
|
||||
/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake
|
||||
/usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake
|
||||
/usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake
|
||||
/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake
|
||||
/usr/share/cmake/Modules/Platform/Linux-GNU.cmake
|
||||
/usr/share/cmake/Modules/Platform/Linux-Initialize.cmake
|
||||
/usr/share/cmake/Modules/Platform/Linux.cmake
|
||||
/usr/share/cmake/Modules/Platform/UnixPaths.cmake
|
||||
|
||||
2665
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/compiler_depend.make
vendored
Normal file
2665
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/compiler_depend.make
vendored
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,2 @@
|
|||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Timestamp file for custom commands dependencies management for QCodeEditorExample_autogen.
|
||||
2
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/progress.make
vendored
Normal file
2
external/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir/progress.make
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
CMAKE_PROGRESS_1 = 8
|
||||
|
||||
|
|
@ -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 "")
|
||||
|
|
@ -0,0 +1,86 @@
|
|||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||
|
||||
# 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/philipp/programing/QCodeEditor/example
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/philipp/programing/QCodeEditor/example/build
|
||||
|
||||
# Utility rule file for QCodeEditorExample_autogen_timestamp_deps.
|
||||
|
||||
# Include any custom commands dependencies for this target.
|
||||
include CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/compiler_depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/progress.make
|
||||
|
||||
CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/codegen:
|
||||
.PHONY : CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/codegen
|
||||
|
||||
QCodeEditorExample_autogen_timestamp_deps: CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/build.make
|
||||
.PHONY : QCodeEditorExample_autogen_timestamp_deps
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/build: QCodeEditorExample_autogen_timestamp_deps
|
||||
.PHONY : CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/build
|
||||
|
||||
CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/clean:
|
||||
$(CMAKE_COMMAND) -P CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/cmake_clean.cmake
|
||||
.PHONY : CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/clean
|
||||
|
||||
CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/depend:
|
||||
cd /home/philipp/programing/QCodeEditor/example/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/philipp/programing/QCodeEditor/example /home/philipp/programing/QCodeEditor/example /home/philipp/programing/QCodeEditor/example/build /home/philipp/programing/QCodeEditor/example/build /home/philipp/programing/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/DependInfo.cmake "--color=$(COLOR)"
|
||||
.PHONY : CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/depend
|
||||
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang )
|
||||
include(CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
# Empty custom commands generated dependencies file for QCodeEditorExample_autogen_timestamp_deps.
|
||||
# This may be replaced when dependencies are built.
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Timestamp file for custom commands dependencies management for QCodeEditorExample_autogen_timestamp_deps.
|
||||
|
|
@ -0,0 +1 @@
|
|||
|
||||
5
external/QCodeEditor/example/build/CMakeFiles/TargetDirectories.txt
vendored
Normal file
5
external/QCodeEditor/example/build/CMakeFiles/TargetDirectories.txt
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
/home/philipp/programing/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample.dir
|
||||
/home/philipp/programing/QCodeEditor/example/build/CMakeFiles/edit_cache.dir
|
||||
/home/philipp/programing/QCodeEditor/example/build/CMakeFiles/rebuild_cache.dir
|
||||
/home/philipp/programing/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir
|
||||
/home/philipp/programing/QCodeEditor/example/build/CMakeFiles/QCodeEditorExample_autogen.dir
|
||||
1
external/QCodeEditor/example/build/CMakeFiles/cmake.check_cache
vendored
Normal file
1
external/QCodeEditor/example/build/CMakeFiles/cmake.check_cache
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
||||
1
external/QCodeEditor/example/build/CMakeFiles/progress.marks
vendored
Normal file
1
external/QCodeEditor/example/build/CMakeFiles/progress.marks
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
8
|
||||
290
external/QCodeEditor/example/build/Makefile
vendored
Normal file
290
external/QCodeEditor/example/build/Makefile
vendored
Normal file
|
|
@ -0,0 +1,290 @@
|
|||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 4.1
|
||||
|
||||
# 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/philipp/programing/QCodeEditor/example
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/philipp/programing/QCodeEditor/example/build
|
||||
|
||||
#=============================================================================
|
||||
# Targets provided globally by CMake.
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..."
|
||||
/usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : edit_cache
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache/fast: edit_cache
|
||||
.PHONY : edit_cache/fast
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
|
||||
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : rebuild_cache
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache/fast: rebuild_cache
|
||||
.PHONY : rebuild_cache/fast
|
||||
|
||||
# The main all target
|
||||
all: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/philipp/programing/QCodeEditor/example/build/CMakeFiles /home/philipp/programing/QCodeEditor/example/build//CMakeFiles/progress.marks
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/philipp/programing/QCodeEditor/example/build/CMakeFiles 0
|
||||
.PHONY : all
|
||||
|
||||
# The main clean target
|
||||
clean:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean
|
||||
.PHONY : clean
|
||||
|
||||
# The main clean target
|
||||
clean/fast: clean
|
||||
.PHONY : clean/fast
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall: all
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
|
||||
.PHONY : preinstall
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall/fast:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
|
||||
.PHONY : preinstall/fast
|
||||
|
||||
# clear depends
|
||||
depend:
|
||||
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||
.PHONY : depend
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for targets named QCodeEditorExample
|
||||
|
||||
# Build rule for target.
|
||||
QCodeEditorExample: cmake_check_build_system
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QCodeEditorExample
|
||||
.PHONY : QCodeEditorExample
|
||||
|
||||
# fast build rule for target.
|
||||
QCodeEditorExample/fast:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample.dir/build.make CMakeFiles/QCodeEditorExample.dir/build
|
||||
.PHONY : QCodeEditorExample/fast
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for targets named QCodeEditorExample_autogen_timestamp_deps
|
||||
|
||||
# Build rule for target.
|
||||
QCodeEditorExample_autogen_timestamp_deps: cmake_check_build_system
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QCodeEditorExample_autogen_timestamp_deps
|
||||
.PHONY : QCodeEditorExample_autogen_timestamp_deps
|
||||
|
||||
# fast build rule for target.
|
||||
QCodeEditorExample_autogen_timestamp_deps/fast:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/build.make CMakeFiles/QCodeEditorExample_autogen_timestamp_deps.dir/build
|
||||
.PHONY : QCodeEditorExample_autogen_timestamp_deps/fast
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for targets named QCodeEditorExample_autogen
|
||||
|
||||
# Build rule for target.
|
||||
QCodeEditorExample_autogen: cmake_check_build_system
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 QCodeEditorExample_autogen
|
||||
.PHONY : QCodeEditorExample_autogen
|
||||
|
||||
# fast build rule for target.
|
||||
QCodeEditorExample_autogen/fast:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample_autogen.dir/build.make CMakeFiles/QCodeEditorExample_autogen.dir/build
|
||||
.PHONY : QCodeEditorExample_autogen/fast
|
||||
|
||||
QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.o: QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o
|
||||
.PHONY : QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.o
|
||||
|
||||
# target to build an object file
|
||||
QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample.dir/build.make CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o
|
||||
.PHONY : QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o
|
||||
|
||||
QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.i: QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.i
|
||||
.PHONY : QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.i
|
||||
|
||||
# target to preprocess a source file
|
||||
QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample.dir/build.make CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.i
|
||||
.PHONY : QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.i
|
||||
|
||||
QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.s: QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.s
|
||||
.PHONY : QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample.dir/build.make CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.s
|
||||
.PHONY : QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.s
|
||||
|
||||
QCodeEditorExample_autogen/mocs_compilation.o: QCodeEditorExample_autogen/mocs_compilation.cpp.o
|
||||
.PHONY : QCodeEditorExample_autogen/mocs_compilation.o
|
||||
|
||||
# target to build an object file
|
||||
QCodeEditorExample_autogen/mocs_compilation.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample.dir/build.make CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.o
|
||||
.PHONY : QCodeEditorExample_autogen/mocs_compilation.cpp.o
|
||||
|
||||
QCodeEditorExample_autogen/mocs_compilation.i: QCodeEditorExample_autogen/mocs_compilation.cpp.i
|
||||
.PHONY : QCodeEditorExample_autogen/mocs_compilation.i
|
||||
|
||||
# target to preprocess a source file
|
||||
QCodeEditorExample_autogen/mocs_compilation.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample.dir/build.make CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.i
|
||||
.PHONY : QCodeEditorExample_autogen/mocs_compilation.cpp.i
|
||||
|
||||
QCodeEditorExample_autogen/mocs_compilation.s: QCodeEditorExample_autogen/mocs_compilation.cpp.s
|
||||
.PHONY : QCodeEditorExample_autogen/mocs_compilation.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
QCodeEditorExample_autogen/mocs_compilation.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample.dir/build.make CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.s
|
||||
.PHONY : QCodeEditorExample_autogen/mocs_compilation.cpp.s
|
||||
|
||||
src/MainWindow.o: src/MainWindow.cpp.o
|
||||
.PHONY : src/MainWindow.o
|
||||
|
||||
# target to build an object file
|
||||
src/MainWindow.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample.dir/build.make CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.o
|
||||
.PHONY : src/MainWindow.cpp.o
|
||||
|
||||
src/MainWindow.i: src/MainWindow.cpp.i
|
||||
.PHONY : src/MainWindow.i
|
||||
|
||||
# target to preprocess a source file
|
||||
src/MainWindow.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample.dir/build.make CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.i
|
||||
.PHONY : src/MainWindow.cpp.i
|
||||
|
||||
src/MainWindow.s: src/MainWindow.cpp.s
|
||||
.PHONY : src/MainWindow.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
src/MainWindow.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample.dir/build.make CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.s
|
||||
.PHONY : src/MainWindow.cpp.s
|
||||
|
||||
src/main.o: src/main.cpp.o
|
||||
.PHONY : src/main.o
|
||||
|
||||
# target to build an object file
|
||||
src/main.cpp.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample.dir/build.make CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o
|
||||
.PHONY : src/main.cpp.o
|
||||
|
||||
src/main.i: src/main.cpp.i
|
||||
.PHONY : src/main.i
|
||||
|
||||
# target to preprocess a source file
|
||||
src/main.cpp.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample.dir/build.make CMakeFiles/QCodeEditorExample.dir/src/main.cpp.i
|
||||
.PHONY : src/main.cpp.i
|
||||
|
||||
src/main.s: src/main.cpp.s
|
||||
.PHONY : src/main.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
src/main.cpp.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/QCodeEditorExample.dir/build.make CMakeFiles/QCodeEditorExample.dir/src/main.cpp.s
|
||||
.PHONY : src/main.cpp.s
|
||||
|
||||
# Help Target
|
||||
help:
|
||||
@echo "The following are some of the valid targets for this Makefile:"
|
||||
@echo "... all (the default if no target is provided)"
|
||||
@echo "... clean"
|
||||
@echo "... depend"
|
||||
@echo "... edit_cache"
|
||||
@echo "... rebuild_cache"
|
||||
@echo "... QCodeEditorExample_autogen"
|
||||
@echo "... QCodeEditorExample_autogen_timestamp_deps"
|
||||
@echo "... QCodeEditorExample"
|
||||
@echo "... QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.o"
|
||||
@echo "... QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.i"
|
||||
@echo "... QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.s"
|
||||
@echo "... QCodeEditorExample_autogen/mocs_compilation.o"
|
||||
@echo "... QCodeEditorExample_autogen/mocs_compilation.i"
|
||||
@echo "... QCodeEditorExample_autogen/mocs_compilation.s"
|
||||
@echo "... src/MainWindow.o"
|
||||
@echo "... src/MainWindow.i"
|
||||
@echo "... src/MainWindow.s"
|
||||
@echo "... src/main.o"
|
||||
@echo "... src/main.i"
|
||||
@echo "... src/main.s"
|
||||
.PHONY : help
|
||||
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
||||
1259
external/QCodeEditor/example/build/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp
vendored
Normal file
1259
external/QCodeEditor/example/build/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp
vendored
Normal file
File diff suppressed because it is too large
Load diff
90
external/QCodeEditor/example/build/QCodeEditorExample_autogen/6YEA5652QU/moc_MainWindow.cpp
vendored
Normal file
90
external/QCodeEditor/example/build/QCodeEditorExample_autogen/6YEA5652QU/moc_MainWindow.cpp
vendored
Normal file
|
|
@ -0,0 +1,90 @@
|
|||
/****************************************************************************
|
||||
** Meta object code from reading C++ file 'MainWindow.hpp'
|
||||
**
|
||||
** Created by: The Qt Meta Object Compiler version 69 (Qt 6.9.2)
|
||||
**
|
||||
** WARNING! All changes made in this file will be lost!
|
||||
*****************************************************************************/
|
||||
|
||||
#include "../../../include/MainWindow.hpp"
|
||||
#include <QtCore/qmetatype.h>
|
||||
|
||||
#include <QtCore/qtmochelpers.h>
|
||||
|
||||
#include <memory>
|
||||
|
||||
|
||||
#include <QtCore/qxptype_traits.h>
|
||||
#if !defined(Q_MOC_OUTPUT_REVISION)
|
||||
#error "The header file 'MainWindow.hpp' doesn't include <QObject>."
|
||||
#elif Q_MOC_OUTPUT_REVISION != 69
|
||||
#error "This file was generated using the moc from 6.9.2. It"
|
||||
#error "cannot be used with the include files from this version of Qt."
|
||||
#error "(The moc has changed too much.)"
|
||||
#endif
|
||||
|
||||
#ifndef Q_CONSTINIT
|
||||
#define Q_CONSTINIT
|
||||
#endif
|
||||
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
QT_WARNING_DISABLE_GCC("-Wuseless-cast")
|
||||
namespace {
|
||||
struct qt_meta_tag_ZN10MainWindowE_t {};
|
||||
} // unnamed namespace
|
||||
|
||||
template <> constexpr inline auto MainWindow::qt_create_metaobjectdata<qt_meta_tag_ZN10MainWindowE_t>()
|
||||
{
|
||||
namespace QMC = QtMocConstants;
|
||||
QtMocHelpers::StringRefStorage qt_stringData {
|
||||
"MainWindow"
|
||||
};
|
||||
|
||||
QtMocHelpers::UintData qt_methods {
|
||||
};
|
||||
QtMocHelpers::UintData qt_properties {
|
||||
};
|
||||
QtMocHelpers::UintData qt_enums {
|
||||
};
|
||||
return QtMocHelpers::metaObjectData<MainWindow, qt_meta_tag_ZN10MainWindowE_t>(QMC::MetaObjectFlag{}, qt_stringData,
|
||||
qt_methods, qt_properties, qt_enums);
|
||||
}
|
||||
Q_CONSTINIT const QMetaObject MainWindow::staticMetaObject = { {
|
||||
QMetaObject::SuperData::link<QMainWindow::staticMetaObject>(),
|
||||
qt_staticMetaObjectStaticContent<qt_meta_tag_ZN10MainWindowE_t>.stringdata,
|
||||
qt_staticMetaObjectStaticContent<qt_meta_tag_ZN10MainWindowE_t>.data,
|
||||
qt_static_metacall,
|
||||
nullptr,
|
||||
qt_staticMetaObjectRelocatingContent<qt_meta_tag_ZN10MainWindowE_t>.metaTypes,
|
||||
nullptr
|
||||
} };
|
||||
|
||||
void MainWindow::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
||||
{
|
||||
auto *_t = static_cast<MainWindow *>(_o);
|
||||
(void)_t;
|
||||
(void)_c;
|
||||
(void)_id;
|
||||
(void)_a;
|
||||
}
|
||||
|
||||
const QMetaObject *MainWindow::metaObject() const
|
||||
{
|
||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
||||
}
|
||||
|
||||
void *MainWindow::qt_metacast(const char *_clname)
|
||||
{
|
||||
if (!_clname) return nullptr;
|
||||
if (!strcmp(_clname, qt_staticMetaObjectStaticContent<qt_meta_tag_ZN10MainWindowE_t>.strings))
|
||||
return static_cast<void*>(this);
|
||||
return QMainWindow::qt_metacast(_clname);
|
||||
}
|
||||
|
||||
int MainWindow::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
||||
{
|
||||
_id = QMainWindow::qt_metacall(_c, _id, _a);
|
||||
return _id;
|
||||
}
|
||||
QT_WARNING_POP
|
||||
445
external/QCodeEditor/example/build/QCodeEditorExample_autogen/6YEA5652QU/moc_MainWindow.cpp.d
vendored
Normal file
445
external/QCodeEditor/example/build/QCodeEditorExample_autogen/6YEA5652QU/moc_MainWindow.cpp.d
vendored
Normal file
|
|
@ -0,0 +1,445 @@
|
|||
/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/6YEA5652QU/moc_MainWindow.cpp: /home/philipp/programing/QCodeEditor/example/include/MainWindow.hpp \
|
||||
/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/moc_predefs.h \
|
||||
/usr/include/alloca.h \
|
||||
/usr/include/asm-generic/bitsperlong.h \
|
||||
/usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/asm-generic/posix_types.h \
|
||||
/usr/include/asm-generic/types.h \
|
||||
/usr/include/asm/bitsperlong.h \
|
||||
/usr/include/asm/errno.h \
|
||||
/usr/include/asm/posix_types.h \
|
||||
/usr/include/asm/posix_types_64.h \
|
||||
/usr/include/asm/types.h \
|
||||
/usr/include/assert.h \
|
||||
/usr/include/bits/atomic_wide_counter.h \
|
||||
/usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/cpu-set.h \
|
||||
/usr/include/bits/endian.h \
|
||||
/usr/include/bits/endianness.h \
|
||||
/usr/include/bits/errno.h \
|
||||
/usr/include/bits/floatn-common.h \
|
||||
/usr/include/bits/floatn.h \
|
||||
/usr/include/bits/libc-header-start.h \
|
||||
/usr/include/bits/local_lim.h \
|
||||
/usr/include/bits/locale.h \
|
||||
/usr/include/bits/long-double.h \
|
||||
/usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/posix2_lim.h \
|
||||
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||
/usr/include/bits/pthreadtypes-arch.h \
|
||||
/usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/sched.h \
|
||||
/usr/include/bits/select.h \
|
||||
/usr/include/bits/setjmp.h \
|
||||
/usr/include/bits/stdint-intn.h \
|
||||
/usr/include/bits/stdint-least.h \
|
||||
/usr/include/bits/stdint-uintn.h \
|
||||
/usr/include/bits/stdio_lim.h \
|
||||
/usr/include/bits/stdlib-float.h \
|
||||
/usr/include/bits/struct_mutex.h \
|
||||
/usr/include/bits/struct_rwlock.h \
|
||||
/usr/include/bits/thread-shared-types.h \
|
||||
/usr/include/bits/time.h \
|
||||
/usr/include/bits/time64.h \
|
||||
/usr/include/bits/timesize.h \
|
||||
/usr/include/bits/timex.h \
|
||||
/usr/include/bits/types.h \
|
||||
/usr/include/bits/types/FILE.h \
|
||||
/usr/include/bits/types/__FILE.h \
|
||||
/usr/include/bits/types/__fpos64_t.h \
|
||||
/usr/include/bits/types/__fpos_t.h \
|
||||
/usr/include/bits/types/__locale_t.h \
|
||||
/usr/include/bits/types/__mbstate_t.h \
|
||||
/usr/include/bits/types/__sigset_t.h \
|
||||
/usr/include/bits/types/clock_t.h \
|
||||
/usr/include/bits/types/clockid_t.h \
|
||||
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/bits/types/error_t.h \
|
||||
/usr/include/bits/types/locale_t.h \
|
||||
/usr/include/bits/types/mbstate_t.h \
|
||||
/usr/include/bits/types/sigset_t.h \
|
||||
/usr/include/bits/types/struct_FILE.h \
|
||||
/usr/include/bits/types/struct___jmp_buf_tag.h \
|
||||
/usr/include/bits/types/struct_itimerspec.h \
|
||||
/usr/include/bits/types/struct_sched_param.h \
|
||||
/usr/include/bits/types/struct_timespec.h \
|
||||
/usr/include/bits/types/struct_timeval.h \
|
||||
/usr/include/bits/types/struct_tm.h \
|
||||
/usr/include/bits/types/time_t.h \
|
||||
/usr/include/bits/types/timer_t.h \
|
||||
/usr/include/bits/types/wint_t.h \
|
||||
/usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/uintn-identity.h \
|
||||
/usr/include/bits/uio_lim.h \
|
||||
/usr/include/bits/waitflags.h \
|
||||
/usr/include/bits/waitstatus.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/include/bits/wordsize.h \
|
||||
/usr/include/bits/xopen_lim.h \
|
||||
/usr/include/c++/15.2.1/algorithm \
|
||||
/usr/include/c++/15.2.1/array \
|
||||
/usr/include/c++/15.2.1/atomic \
|
||||
/usr/include/c++/15.2.1/backward/auto_ptr.h \
|
||||
/usr/include/c++/15.2.1/backward/binders.h \
|
||||
/usr/include/c++/15.2.1/bit \
|
||||
/usr/include/c++/15.2.1/bits/algorithmfwd.h \
|
||||
/usr/include/c++/15.2.1/bits/align.h \
|
||||
/usr/include/c++/15.2.1/bits/alloc_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/allocated_ptr.h \
|
||||
/usr/include/c++/15.2.1/bits/allocator.h \
|
||||
/usr/include/c++/15.2.1/bits/atomic_base.h \
|
||||
/usr/include/c++/15.2.1/bits/atomic_lockfree_defines.h \
|
||||
/usr/include/c++/15.2.1/bits/basic_string.h \
|
||||
/usr/include/c++/15.2.1/bits/basic_string.tcc \
|
||||
/usr/include/c++/15.2.1/bits/char_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/charconv.h \
|
||||
/usr/include/c++/15.2.1/bits/chrono.h \
|
||||
/usr/include/c++/15.2.1/bits/concept_check.h \
|
||||
/usr/include/c++/15.2.1/bits/cpp_type_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/cxxabi_forced.h \
|
||||
/usr/include/c++/15.2.1/bits/cxxabi_init_exception.h \
|
||||
/usr/include/c++/15.2.1/bits/enable_special_members.h \
|
||||
/usr/include/c++/15.2.1/bits/erase_if.h \
|
||||
/usr/include/c++/15.2.1/bits/exception.h \
|
||||
/usr/include/c++/15.2.1/bits/exception_defines.h \
|
||||
/usr/include/c++/15.2.1/bits/exception_ptr.h \
|
||||
/usr/include/c++/15.2.1/bits/functexcept.h \
|
||||
/usr/include/c++/15.2.1/bits/functional_hash.h \
|
||||
/usr/include/c++/15.2.1/bits/hash_bytes.h \
|
||||
/usr/include/c++/15.2.1/bits/hashtable.h \
|
||||
/usr/include/c++/15.2.1/bits/hashtable_policy.h \
|
||||
/usr/include/c++/15.2.1/bits/invoke.h \
|
||||
/usr/include/c++/15.2.1/bits/ios_base.h \
|
||||
/usr/include/c++/15.2.1/bits/list.tcc \
|
||||
/usr/include/c++/15.2.1/bits/locale_classes.h \
|
||||
/usr/include/c++/15.2.1/bits/locale_classes.tcc \
|
||||
/usr/include/c++/15.2.1/bits/localefwd.h \
|
||||
/usr/include/c++/15.2.1/bits/memory_resource.h \
|
||||
/usr/include/c++/15.2.1/bits/memoryfwd.h \
|
||||
/usr/include/c++/15.2.1/bits/move.h \
|
||||
/usr/include/c++/15.2.1/bits/nested_exception.h \
|
||||
/usr/include/c++/15.2.1/bits/new_allocator.h \
|
||||
/usr/include/c++/15.2.1/bits/node_handle.h \
|
||||
/usr/include/c++/15.2.1/bits/ostream_insert.h \
|
||||
/usr/include/c++/15.2.1/bits/parse_numbers.h \
|
||||
/usr/include/c++/15.2.1/bits/postypes.h \
|
||||
/usr/include/c++/15.2.1/bits/predefined_ops.h \
|
||||
/usr/include/c++/15.2.1/bits/ptr_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/range_access.h \
|
||||
/usr/include/c++/15.2.1/bits/refwrap.h \
|
||||
/usr/include/c++/15.2.1/bits/requires_hosted.h \
|
||||
/usr/include/c++/15.2.1/bits/shared_ptr.h \
|
||||
/usr/include/c++/15.2.1/bits/shared_ptr_atomic.h \
|
||||
/usr/include/c++/15.2.1/bits/shared_ptr_base.h \
|
||||
/usr/include/c++/15.2.1/bits/specfun.h \
|
||||
/usr/include/c++/15.2.1/bits/std_abs.h \
|
||||
/usr/include/c++/15.2.1/bits/std_function.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_algo.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_algobase.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_bvector.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_construct.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_function.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_heap.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator_base_funcs.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator_base_types.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_list.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_map.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_multimap.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_multiset.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_numeric.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_pair.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_raw_storage_iter.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_relops.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_set.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_tempbuf.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_tree.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_uninitialized.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_vector.h \
|
||||
/usr/include/c++/15.2.1/bits/stream_iterator.h \
|
||||
/usr/include/c++/15.2.1/bits/streambuf.tcc \
|
||||
/usr/include/c++/15.2.1/bits/streambuf_iterator.h \
|
||||
/usr/include/c++/15.2.1/bits/string_view.tcc \
|
||||
/usr/include/c++/15.2.1/bits/stringfwd.h \
|
||||
/usr/include/c++/15.2.1/bits/uniform_int_dist.h \
|
||||
/usr/include/c++/15.2.1/bits/unique_ptr.h \
|
||||
/usr/include/c++/15.2.1/bits/unordered_map.h \
|
||||
/usr/include/c++/15.2.1/bits/unordered_set.h \
|
||||
/usr/include/c++/15.2.1/bits/uses_allocator.h \
|
||||
/usr/include/c++/15.2.1/bits/uses_allocator_args.h \
|
||||
/usr/include/c++/15.2.1/bits/utility.h \
|
||||
/usr/include/c++/15.2.1/bits/vector.tcc \
|
||||
/usr/include/c++/15.2.1/bits/version.h \
|
||||
/usr/include/c++/15.2.1/cassert \
|
||||
/usr/include/c++/15.2.1/cctype \
|
||||
/usr/include/c++/15.2.1/cerrno \
|
||||
/usr/include/c++/15.2.1/chrono \
|
||||
/usr/include/c++/15.2.1/climits \
|
||||
/usr/include/c++/15.2.1/clocale \
|
||||
/usr/include/c++/15.2.1/cmath \
|
||||
/usr/include/c++/15.2.1/compare \
|
||||
/usr/include/c++/15.2.1/concepts \
|
||||
/usr/include/c++/15.2.1/cstddef \
|
||||
/usr/include/c++/15.2.1/cstdint \
|
||||
/usr/include/c++/15.2.1/cstdio \
|
||||
/usr/include/c++/15.2.1/cstdlib \
|
||||
/usr/include/c++/15.2.1/cstring \
|
||||
/usr/include/c++/15.2.1/ctime \
|
||||
/usr/include/c++/15.2.1/cwchar \
|
||||
/usr/include/c++/15.2.1/debug/assertions.h \
|
||||
/usr/include/c++/15.2.1/debug/debug.h \
|
||||
/usr/include/c++/15.2.1/exception \
|
||||
/usr/include/c++/15.2.1/ext/aligned_buffer.h \
|
||||
/usr/include/c++/15.2.1/ext/alloc_traits.h \
|
||||
/usr/include/c++/15.2.1/ext/atomicity.h \
|
||||
/usr/include/c++/15.2.1/ext/concurrence.h \
|
||||
/usr/include/c++/15.2.1/ext/numeric_traits.h \
|
||||
/usr/include/c++/15.2.1/ext/string_conversions.h \
|
||||
/usr/include/c++/15.2.1/ext/type_traits.h \
|
||||
/usr/include/c++/15.2.1/functional \
|
||||
/usr/include/c++/15.2.1/initializer_list \
|
||||
/usr/include/c++/15.2.1/iosfwd \
|
||||
/usr/include/c++/15.2.1/iterator \
|
||||
/usr/include/c++/15.2.1/limits \
|
||||
/usr/include/c++/15.2.1/list \
|
||||
/usr/include/c++/15.2.1/map \
|
||||
/usr/include/c++/15.2.1/memory \
|
||||
/usr/include/c++/15.2.1/new \
|
||||
/usr/include/c++/15.2.1/numeric \
|
||||
/usr/include/c++/15.2.1/optional \
|
||||
/usr/include/c++/15.2.1/pstl/execution_defs.h \
|
||||
/usr/include/c++/15.2.1/pstl/glue_numeric_defs.h \
|
||||
/usr/include/c++/15.2.1/pstl/pstl_config.h \
|
||||
/usr/include/c++/15.2.1/ratio \
|
||||
/usr/include/c++/15.2.1/set \
|
||||
/usr/include/c++/15.2.1/stdexcept \
|
||||
/usr/include/c++/15.2.1/streambuf \
|
||||
/usr/include/c++/15.2.1/string \
|
||||
/usr/include/c++/15.2.1/string_view \
|
||||
/usr/include/c++/15.2.1/system_error \
|
||||
/usr/include/c++/15.2.1/tr1/bessel_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/beta_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/ell_integral.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/exp_integral.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/gamma.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/hypergeometric.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/legendre_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/modified_bessel_func.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/poly_hermite.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/poly_laguerre.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/riemann_zeta.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/special_function_util.h \
|
||||
/usr/include/c++/15.2.1/tuple \
|
||||
/usr/include/c++/15.2.1/type_traits \
|
||||
/usr/include/c++/15.2.1/typeinfo \
|
||||
/usr/include/c++/15.2.1/unordered_map \
|
||||
/usr/include/c++/15.2.1/unordered_set \
|
||||
/usr/include/c++/15.2.1/utility \
|
||||
/usr/include/c++/15.2.1/variant \
|
||||
/usr/include/c++/15.2.1/vector \
|
||||
/usr/include/c++/15.2.1/version \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/atomic_word.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++allocator.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++locale.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/error_constants.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/gthr-default.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/gthr.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||
/usr/include/ctype.h \
|
||||
/usr/include/endian.h \
|
||||
/usr/include/errno.h \
|
||||
/usr/include/features-time64.h \
|
||||
/usr/include/features.h \
|
||||
/usr/include/gnu/stubs-64.h \
|
||||
/usr/include/gnu/stubs.h \
|
||||
/usr/include/limits.h \
|
||||
/usr/include/linux/errno.h \
|
||||
/usr/include/linux/limits.h \
|
||||
/usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/sched/types.h \
|
||||
/usr/include/linux/stddef.h \
|
||||
/usr/include/linux/types.h \
|
||||
/usr/include/locale.h \
|
||||
/usr/include/pthread.h \
|
||||
/usr/include/qt6/QtCore/QPair \
|
||||
/usr/include/qt6/QtCore/QString \
|
||||
/usr/include/qt6/QtCore/QVector \
|
||||
/usr/include/qt6/QtCore/q17memory.h \
|
||||
/usr/include/qt6/QtCore/q20functional.h \
|
||||
/usr/include/qt6/QtCore/q20iterator.h \
|
||||
/usr/include/qt6/QtCore/q20memory.h \
|
||||
/usr/include/qt6/QtCore/q20type_traits.h \
|
||||
/usr/include/qt6/QtCore/q20utility.h \
|
||||
/usr/include/qt6/QtCore/q23utility.h \
|
||||
/usr/include/qt6/QtCore/qalgorithms.h \
|
||||
/usr/include/qt6/QtCore/qanystringview.h \
|
||||
/usr/include/qt6/QtCore/qarraydata.h \
|
||||
/usr/include/qt6/QtCore/qarraydataops.h \
|
||||
/usr/include/qt6/QtCore/qarraydatapointer.h \
|
||||
/usr/include/qt6/QtCore/qassert.h \
|
||||
/usr/include/qt6/QtCore/qatomic.h \
|
||||
/usr/include/qt6/QtCore/qatomic_cxx11.h \
|
||||
/usr/include/qt6/QtCore/qbasicatomic.h \
|
||||
/usr/include/qt6/QtCore/qbindingstorage.h \
|
||||
/usr/include/qt6/QtCore/qbytearray.h \
|
||||
/usr/include/qt6/QtCore/qbytearrayalgorithms.h \
|
||||
/usr/include/qt6/QtCore/qbytearraylist.h \
|
||||
/usr/include/qt6/QtCore/qbytearrayview.h \
|
||||
/usr/include/qt6/QtCore/qchar.h \
|
||||
/usr/include/qt6/QtCore/qcompare.h \
|
||||
/usr/include/qt6/QtCore/qcompare_impl.h \
|
||||
/usr/include/qt6/QtCore/qcomparehelpers.h \
|
||||
/usr/include/qt6/QtCore/qcompilerdetection.h \
|
||||
/usr/include/qt6/QtCore/qconfig.h \
|
||||
/usr/include/qt6/QtCore/qconstructormacros.h \
|
||||
/usr/include/qt6/QtCore/qcontainerfwd.h \
|
||||
/usr/include/qt6/QtCore/qcontainerinfo.h \
|
||||
/usr/include/qt6/QtCore/qcontainertools_impl.h \
|
||||
/usr/include/qt6/QtCore/qcontiguouscache.h \
|
||||
/usr/include/qt6/QtCore/qdarwinhelpers.h \
|
||||
/usr/include/qt6/QtCore/qdatastream.h \
|
||||
/usr/include/qt6/QtCore/qdebug.h \
|
||||
/usr/include/qt6/QtCore/qendian.h \
|
||||
/usr/include/qt6/QtCore/qexceptionhandling.h \
|
||||
/usr/include/qt6/QtCore/qflags.h \
|
||||
/usr/include/qt6/QtCore/qfloat16.h \
|
||||
/usr/include/qt6/QtCore/qforeach.h \
|
||||
/usr/include/qt6/QtCore/qfunctionaltools_impl.h \
|
||||
/usr/include/qt6/QtCore/qfunctionpointer.h \
|
||||
/usr/include/qt6/QtCore/qgenericatomic.h \
|
||||
/usr/include/qt6/QtCore/qglobal.h \
|
||||
/usr/include/qt6/QtCore/qglobalstatic.h \
|
||||
/usr/include/qt6/QtCore/qhash.h \
|
||||
/usr/include/qt6/QtCore/qhashfunctions.h \
|
||||
/usr/include/qt6/QtCore/qiodevicebase.h \
|
||||
/usr/include/qt6/QtCore/qiterable.h \
|
||||
/usr/include/qt6/QtCore/qiterator.h \
|
||||
/usr/include/qt6/QtCore/qlatin1stringview.h \
|
||||
/usr/include/qt6/QtCore/qline.h \
|
||||
/usr/include/qt6/QtCore/qlist.h \
|
||||
/usr/include/qt6/QtCore/qlogging.h \
|
||||
/usr/include/qt6/QtCore/qmalloc.h \
|
||||
/usr/include/qt6/QtCore/qmap.h \
|
||||
/usr/include/qt6/QtCore/qmargins.h \
|
||||
/usr/include/qt6/QtCore/qmath.h \
|
||||
/usr/include/qt6/QtCore/qmetacontainer.h \
|
||||
/usr/include/qt6/QtCore/qmetatype.h \
|
||||
/usr/include/qt6/QtCore/qminmax.h \
|
||||
/usr/include/qt6/QtCore/qnamespace.h \
|
||||
/usr/include/qt6/QtCore/qnumeric.h \
|
||||
/usr/include/qt6/QtCore/qobject.h \
|
||||
/usr/include/qt6/QtCore/qobject_impl.h \
|
||||
/usr/include/qt6/QtCore/qobjectdefs.h \
|
||||
/usr/include/qt6/QtCore/qobjectdefs_impl.h \
|
||||
/usr/include/qt6/QtCore/qoverload.h \
|
||||
/usr/include/qt6/QtCore/qpair.h \
|
||||
/usr/include/qt6/QtCore/qpoint.h \
|
||||
/usr/include/qt6/QtCore/qprocessordetection.h \
|
||||
/usr/include/qt6/QtCore/qrect.h \
|
||||
/usr/include/qt6/QtCore/qrefcount.h \
|
||||
/usr/include/qt6/QtCore/qscopedpointer.h \
|
||||
/usr/include/qt6/QtCore/qscopeguard.h \
|
||||
/usr/include/qt6/QtCore/qset.h \
|
||||
/usr/include/qt6/QtCore/qshareddata.h \
|
||||
/usr/include/qt6/QtCore/qshareddata_impl.h \
|
||||
/usr/include/qt6/QtCore/qsharedpointer.h \
|
||||
/usr/include/qt6/QtCore/qsharedpointer_impl.h \
|
||||
/usr/include/qt6/QtCore/qsize.h \
|
||||
/usr/include/qt6/QtCore/qspan.h \
|
||||
/usr/include/qt6/QtCore/qstdlibdetection.h \
|
||||
/usr/include/qt6/QtCore/qstring.h \
|
||||
/usr/include/qt6/QtCore/qstringalgorithms.h \
|
||||
/usr/include/qt6/QtCore/qstringbuilder.h \
|
||||
/usr/include/qt6/QtCore/qstringconverter.h \
|
||||
/usr/include/qt6/QtCore/qstringconverter_base.h \
|
||||
/usr/include/qt6/QtCore/qstringfwd.h \
|
||||
/usr/include/qt6/QtCore/qstringlist.h \
|
||||
/usr/include/qt6/QtCore/qstringliteral.h \
|
||||
/usr/include/qt6/QtCore/qstringmatcher.h \
|
||||
/usr/include/qt6/QtCore/qstringtokenizer.h \
|
||||
/usr/include/qt6/QtCore/qstringview.h \
|
||||
/usr/include/qt6/QtCore/qswap.h \
|
||||
/usr/include/qt6/QtCore/qsysinfo.h \
|
||||
/usr/include/qt6/QtCore/qsystemdetection.h \
|
||||
/usr/include/qt6/QtCore/qtaggedpointer.h \
|
||||
/usr/include/qt6/QtCore/qtclasshelpermacros.h \
|
||||
/usr/include/qt6/QtCore/qtconfiginclude.h \
|
||||
/usr/include/qt6/QtCore/qtconfigmacros.h \
|
||||
/usr/include/qt6/QtCore/qtcore-config.h \
|
||||
/usr/include/qt6/QtCore/qtcoreexports.h \
|
||||
/usr/include/qt6/QtCore/qtcoreglobal.h \
|
||||
/usr/include/qt6/QtCore/qtdeprecationdefinitions.h \
|
||||
/usr/include/qt6/QtCore/qtdeprecationmarkers.h \
|
||||
/usr/include/qt6/QtCore/qtenvironmentvariables.h \
|
||||
/usr/include/qt6/QtCore/qtextstream.h \
|
||||
/usr/include/qt6/QtCore/qtformat_impl.h \
|
||||
/usr/include/qt6/QtCore/qtmetamacros.h \
|
||||
/usr/include/qt6/QtCore/qtnoop.h \
|
||||
/usr/include/qt6/QtCore/qtpreprocessorsupport.h \
|
||||
/usr/include/qt6/QtCore/qtresource.h \
|
||||
/usr/include/qt6/QtCore/qttranslation.h \
|
||||
/usr/include/qt6/QtCore/qttypetraits.h \
|
||||
/usr/include/qt6/QtCore/qtversion.h \
|
||||
/usr/include/qt6/QtCore/qtversionchecks.h \
|
||||
/usr/include/qt6/QtCore/qtypeinfo.h \
|
||||
/usr/include/qt6/QtCore/qtypes.h \
|
||||
/usr/include/qt6/QtCore/qutf8stringview.h \
|
||||
/usr/include/qt6/QtCore/qvariant.h \
|
||||
/usr/include/qt6/QtCore/qvarlengtharray.h \
|
||||
/usr/include/qt6/QtCore/qvector.h \
|
||||
/usr/include/qt6/QtCore/qversiontagging.h \
|
||||
/usr/include/qt6/QtCore/qxptype_traits.h \
|
||||
/usr/include/qt6/QtCore/qyieldcpu.h \
|
||||
/usr/include/qt6/QtGui/qaction.h \
|
||||
/usr/include/qt6/QtGui/qbitmap.h \
|
||||
/usr/include/qt6/QtGui/qbrush.h \
|
||||
/usr/include/qt6/QtGui/qcolor.h \
|
||||
/usr/include/qt6/QtGui/qcursor.h \
|
||||
/usr/include/qt6/QtGui/qfont.h \
|
||||
/usr/include/qt6/QtGui/qfontinfo.h \
|
||||
/usr/include/qt6/QtGui/qfontmetrics.h \
|
||||
/usr/include/qt6/QtGui/qfontvariableaxis.h \
|
||||
/usr/include/qt6/QtGui/qicon.h \
|
||||
/usr/include/qt6/QtGui/qimage.h \
|
||||
/usr/include/qt6/QtGui/qkeysequence.h \
|
||||
/usr/include/qt6/QtGui/qpaintdevice.h \
|
||||
/usr/include/qt6/QtGui/qpalette.h \
|
||||
/usr/include/qt6/QtGui/qpixelformat.h \
|
||||
/usr/include/qt6/QtGui/qpixmap.h \
|
||||
/usr/include/qt6/QtGui/qpolygon.h \
|
||||
/usr/include/qt6/QtGui/qregion.h \
|
||||
/usr/include/qt6/QtGui/qrgb.h \
|
||||
/usr/include/qt6/QtGui/qrgba64.h \
|
||||
/usr/include/qt6/QtGui/qtgui-config.h \
|
||||
/usr/include/qt6/QtGui/qtguiexports.h \
|
||||
/usr/include/qt6/QtGui/qtguiglobal.h \
|
||||
/usr/include/qt6/QtGui/qtransform.h \
|
||||
/usr/include/qt6/QtGui/qwindowdefs.h \
|
||||
/usr/include/qt6/QtWidgets/QMainWindow \
|
||||
/usr/include/qt6/QtWidgets/qmainwindow.h \
|
||||
/usr/include/qt6/QtWidgets/qsizepolicy.h \
|
||||
/usr/include/qt6/QtWidgets/qtabwidget.h \
|
||||
/usr/include/qt6/QtWidgets/qtwidgets-config.h \
|
||||
/usr/include/qt6/QtWidgets/qtwidgetsexports.h \
|
||||
/usr/include/qt6/QtWidgets/qtwidgetsglobal.h \
|
||||
/usr/include/qt6/QtWidgets/qwidget.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/sys/cdefs.h \
|
||||
/usr/include/sys/select.h \
|
||||
/usr/include/sys/single_threaded.h \
|
||||
/usr/include/sys/types.h \
|
||||
/usr/include/time.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h
|
||||
806
external/QCodeEditor/example/build/QCodeEditorExample_autogen/deps
vendored
Normal file
806
external/QCodeEditor/example/build/QCodeEditorExample_autogen/deps
vendored
Normal file
|
|
@ -0,0 +1,806 @@
|
|||
QCodeEditorExample_autogen/timestamp: \
|
||||
/home/philipp/programing/QCodeEditor/example/CMakeLists.txt \
|
||||
/home/philipp/programing/QCodeEditor/example/build/CMakeFiles/4.1.2/CMakeCCompiler.cmake \
|
||||
/home/philipp/programing/QCodeEditor/example/build/CMakeFiles/4.1.2/CMakeCXXCompiler.cmake \
|
||||
/home/philipp/programing/QCodeEditor/example/build/CMakeFiles/4.1.2/CMakeSystem.cmake \
|
||||
/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/moc_predefs.h \
|
||||
/home/philipp/programing/QCodeEditor/example/include/MainWindow.hpp \
|
||||
/home/philipp/programing/QCodeEditor/example/resources/demo_resources.qrc \
|
||||
/home/philipp/programing/QCodeEditor/example/src/MainWindow.cpp \
|
||||
/home/philipp/programing/QCodeEditor/example/src/main.cpp \
|
||||
/usr/include/alloca.h \
|
||||
/usr/include/asm-generic/bitsperlong.h \
|
||||
/usr/include/asm-generic/errno-base.h \
|
||||
/usr/include/asm-generic/errno.h \
|
||||
/usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/asm-generic/posix_types.h \
|
||||
/usr/include/asm-generic/types.h \
|
||||
/usr/include/asm/bitsperlong.h \
|
||||
/usr/include/asm/errno.h \
|
||||
/usr/include/asm/posix_types.h \
|
||||
/usr/include/asm/posix_types_64.h \
|
||||
/usr/include/asm/types.h \
|
||||
/usr/include/assert.h \
|
||||
/usr/include/bits/atomic_wide_counter.h \
|
||||
/usr/include/bits/byteswap.h \
|
||||
/usr/include/bits/cpu-set.h \
|
||||
/usr/include/bits/endian.h \
|
||||
/usr/include/bits/endianness.h \
|
||||
/usr/include/bits/errno.h \
|
||||
/usr/include/bits/floatn-common.h \
|
||||
/usr/include/bits/floatn.h \
|
||||
/usr/include/bits/libc-header-start.h \
|
||||
/usr/include/bits/local_lim.h \
|
||||
/usr/include/bits/locale.h \
|
||||
/usr/include/bits/long-double.h \
|
||||
/usr/include/bits/posix1_lim.h \
|
||||
/usr/include/bits/posix2_lim.h \
|
||||
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||
/usr/include/bits/pthreadtypes-arch.h \
|
||||
/usr/include/bits/pthreadtypes.h \
|
||||
/usr/include/bits/sched.h \
|
||||
/usr/include/bits/select.h \
|
||||
/usr/include/bits/setjmp.h \
|
||||
/usr/include/bits/stdint-intn.h \
|
||||
/usr/include/bits/stdint-least.h \
|
||||
/usr/include/bits/stdint-uintn.h \
|
||||
/usr/include/bits/stdio_lim.h \
|
||||
/usr/include/bits/stdlib-float.h \
|
||||
/usr/include/bits/struct_mutex.h \
|
||||
/usr/include/bits/struct_rwlock.h \
|
||||
/usr/include/bits/thread-shared-types.h \
|
||||
/usr/include/bits/time.h \
|
||||
/usr/include/bits/time64.h \
|
||||
/usr/include/bits/timesize.h \
|
||||
/usr/include/bits/timex.h \
|
||||
/usr/include/bits/types.h \
|
||||
/usr/include/bits/types/FILE.h \
|
||||
/usr/include/bits/types/__FILE.h \
|
||||
/usr/include/bits/types/__fpos64_t.h \
|
||||
/usr/include/bits/types/__fpos_t.h \
|
||||
/usr/include/bits/types/__locale_t.h \
|
||||
/usr/include/bits/types/__mbstate_t.h \
|
||||
/usr/include/bits/types/__sigset_t.h \
|
||||
/usr/include/bits/types/clock_t.h \
|
||||
/usr/include/bits/types/clockid_t.h \
|
||||
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/bits/types/error_t.h \
|
||||
/usr/include/bits/types/locale_t.h \
|
||||
/usr/include/bits/types/mbstate_t.h \
|
||||
/usr/include/bits/types/sigset_t.h \
|
||||
/usr/include/bits/types/struct_FILE.h \
|
||||
/usr/include/bits/types/struct___jmp_buf_tag.h \
|
||||
/usr/include/bits/types/struct_itimerspec.h \
|
||||
/usr/include/bits/types/struct_sched_param.h \
|
||||
/usr/include/bits/types/struct_timespec.h \
|
||||
/usr/include/bits/types/struct_timeval.h \
|
||||
/usr/include/bits/types/struct_tm.h \
|
||||
/usr/include/bits/types/time_t.h \
|
||||
/usr/include/bits/types/timer_t.h \
|
||||
/usr/include/bits/types/wint_t.h \
|
||||
/usr/include/bits/typesizes.h \
|
||||
/usr/include/bits/uintn-identity.h \
|
||||
/usr/include/bits/uio_lim.h \
|
||||
/usr/include/bits/waitflags.h \
|
||||
/usr/include/bits/waitstatus.h \
|
||||
/usr/include/bits/wchar.h \
|
||||
/usr/include/bits/wordsize.h \
|
||||
/usr/include/bits/xopen_lim.h \
|
||||
/usr/include/c++/15.2.1/algorithm \
|
||||
/usr/include/c++/15.2.1/array \
|
||||
/usr/include/c++/15.2.1/atomic \
|
||||
/usr/include/c++/15.2.1/backward/auto_ptr.h \
|
||||
/usr/include/c++/15.2.1/backward/binders.h \
|
||||
/usr/include/c++/15.2.1/bit \
|
||||
/usr/include/c++/15.2.1/bits/algorithmfwd.h \
|
||||
/usr/include/c++/15.2.1/bits/align.h \
|
||||
/usr/include/c++/15.2.1/bits/alloc_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/allocated_ptr.h \
|
||||
/usr/include/c++/15.2.1/bits/allocator.h \
|
||||
/usr/include/c++/15.2.1/bits/atomic_base.h \
|
||||
/usr/include/c++/15.2.1/bits/atomic_lockfree_defines.h \
|
||||
/usr/include/c++/15.2.1/bits/basic_string.h \
|
||||
/usr/include/c++/15.2.1/bits/basic_string.tcc \
|
||||
/usr/include/c++/15.2.1/bits/char_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/charconv.h \
|
||||
/usr/include/c++/15.2.1/bits/chrono.h \
|
||||
/usr/include/c++/15.2.1/bits/concept_check.h \
|
||||
/usr/include/c++/15.2.1/bits/cpp_type_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/cxxabi_forced.h \
|
||||
/usr/include/c++/15.2.1/bits/cxxabi_init_exception.h \
|
||||
/usr/include/c++/15.2.1/bits/enable_special_members.h \
|
||||
/usr/include/c++/15.2.1/bits/erase_if.h \
|
||||
/usr/include/c++/15.2.1/bits/exception.h \
|
||||
/usr/include/c++/15.2.1/bits/exception_defines.h \
|
||||
/usr/include/c++/15.2.1/bits/exception_ptr.h \
|
||||
/usr/include/c++/15.2.1/bits/functexcept.h \
|
||||
/usr/include/c++/15.2.1/bits/functional_hash.h \
|
||||
/usr/include/c++/15.2.1/bits/hash_bytes.h \
|
||||
/usr/include/c++/15.2.1/bits/hashtable.h \
|
||||
/usr/include/c++/15.2.1/bits/hashtable_policy.h \
|
||||
/usr/include/c++/15.2.1/bits/invoke.h \
|
||||
/usr/include/c++/15.2.1/bits/ios_base.h \
|
||||
/usr/include/c++/15.2.1/bits/list.tcc \
|
||||
/usr/include/c++/15.2.1/bits/locale_classes.h \
|
||||
/usr/include/c++/15.2.1/bits/locale_classes.tcc \
|
||||
/usr/include/c++/15.2.1/bits/localefwd.h \
|
||||
/usr/include/c++/15.2.1/bits/memory_resource.h \
|
||||
/usr/include/c++/15.2.1/bits/memoryfwd.h \
|
||||
/usr/include/c++/15.2.1/bits/move.h \
|
||||
/usr/include/c++/15.2.1/bits/nested_exception.h \
|
||||
/usr/include/c++/15.2.1/bits/new_allocator.h \
|
||||
/usr/include/c++/15.2.1/bits/node_handle.h \
|
||||
/usr/include/c++/15.2.1/bits/ostream_insert.h \
|
||||
/usr/include/c++/15.2.1/bits/parse_numbers.h \
|
||||
/usr/include/c++/15.2.1/bits/postypes.h \
|
||||
/usr/include/c++/15.2.1/bits/predefined_ops.h \
|
||||
/usr/include/c++/15.2.1/bits/ptr_traits.h \
|
||||
/usr/include/c++/15.2.1/bits/range_access.h \
|
||||
/usr/include/c++/15.2.1/bits/refwrap.h \
|
||||
/usr/include/c++/15.2.1/bits/requires_hosted.h \
|
||||
/usr/include/c++/15.2.1/bits/shared_ptr.h \
|
||||
/usr/include/c++/15.2.1/bits/shared_ptr_atomic.h \
|
||||
/usr/include/c++/15.2.1/bits/shared_ptr_base.h \
|
||||
/usr/include/c++/15.2.1/bits/specfun.h \
|
||||
/usr/include/c++/15.2.1/bits/std_abs.h \
|
||||
/usr/include/c++/15.2.1/bits/std_function.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_algo.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_algobase.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_bvector.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_construct.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_function.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_heap.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator_base_funcs.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_iterator_base_types.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_list.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_map.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_multimap.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_multiset.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_numeric.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_pair.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_raw_storage_iter.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_relops.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_set.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_tempbuf.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_tree.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_uninitialized.h \
|
||||
/usr/include/c++/15.2.1/bits/stl_vector.h \
|
||||
/usr/include/c++/15.2.1/bits/stream_iterator.h \
|
||||
/usr/include/c++/15.2.1/bits/streambuf.tcc \
|
||||
/usr/include/c++/15.2.1/bits/streambuf_iterator.h \
|
||||
/usr/include/c++/15.2.1/bits/string_view.tcc \
|
||||
/usr/include/c++/15.2.1/bits/stringfwd.h \
|
||||
/usr/include/c++/15.2.1/bits/uniform_int_dist.h \
|
||||
/usr/include/c++/15.2.1/bits/unique_ptr.h \
|
||||
/usr/include/c++/15.2.1/bits/unordered_map.h \
|
||||
/usr/include/c++/15.2.1/bits/unordered_set.h \
|
||||
/usr/include/c++/15.2.1/bits/uses_allocator.h \
|
||||
/usr/include/c++/15.2.1/bits/uses_allocator_args.h \
|
||||
/usr/include/c++/15.2.1/bits/utility.h \
|
||||
/usr/include/c++/15.2.1/bits/vector.tcc \
|
||||
/usr/include/c++/15.2.1/bits/version.h \
|
||||
/usr/include/c++/15.2.1/cassert \
|
||||
/usr/include/c++/15.2.1/cctype \
|
||||
/usr/include/c++/15.2.1/cerrno \
|
||||
/usr/include/c++/15.2.1/chrono \
|
||||
/usr/include/c++/15.2.1/climits \
|
||||
/usr/include/c++/15.2.1/clocale \
|
||||
/usr/include/c++/15.2.1/cmath \
|
||||
/usr/include/c++/15.2.1/compare \
|
||||
/usr/include/c++/15.2.1/concepts \
|
||||
/usr/include/c++/15.2.1/cstddef \
|
||||
/usr/include/c++/15.2.1/cstdint \
|
||||
/usr/include/c++/15.2.1/cstdio \
|
||||
/usr/include/c++/15.2.1/cstdlib \
|
||||
/usr/include/c++/15.2.1/cstring \
|
||||
/usr/include/c++/15.2.1/ctime \
|
||||
/usr/include/c++/15.2.1/cwchar \
|
||||
/usr/include/c++/15.2.1/debug/assertions.h \
|
||||
/usr/include/c++/15.2.1/debug/debug.h \
|
||||
/usr/include/c++/15.2.1/exception \
|
||||
/usr/include/c++/15.2.1/ext/aligned_buffer.h \
|
||||
/usr/include/c++/15.2.1/ext/alloc_traits.h \
|
||||
/usr/include/c++/15.2.1/ext/atomicity.h \
|
||||
/usr/include/c++/15.2.1/ext/concurrence.h \
|
||||
/usr/include/c++/15.2.1/ext/numeric_traits.h \
|
||||
/usr/include/c++/15.2.1/ext/string_conversions.h \
|
||||
/usr/include/c++/15.2.1/ext/type_traits.h \
|
||||
/usr/include/c++/15.2.1/functional \
|
||||
/usr/include/c++/15.2.1/initializer_list \
|
||||
/usr/include/c++/15.2.1/iosfwd \
|
||||
/usr/include/c++/15.2.1/iterator \
|
||||
/usr/include/c++/15.2.1/limits \
|
||||
/usr/include/c++/15.2.1/list \
|
||||
/usr/include/c++/15.2.1/map \
|
||||
/usr/include/c++/15.2.1/memory \
|
||||
/usr/include/c++/15.2.1/new \
|
||||
/usr/include/c++/15.2.1/numeric \
|
||||
/usr/include/c++/15.2.1/optional \
|
||||
/usr/include/c++/15.2.1/pstl/execution_defs.h \
|
||||
/usr/include/c++/15.2.1/pstl/glue_numeric_defs.h \
|
||||
/usr/include/c++/15.2.1/pstl/pstl_config.h \
|
||||
/usr/include/c++/15.2.1/ratio \
|
||||
/usr/include/c++/15.2.1/set \
|
||||
/usr/include/c++/15.2.1/stdexcept \
|
||||
/usr/include/c++/15.2.1/streambuf \
|
||||
/usr/include/c++/15.2.1/string \
|
||||
/usr/include/c++/15.2.1/string_view \
|
||||
/usr/include/c++/15.2.1/system_error \
|
||||
/usr/include/c++/15.2.1/tr1/bessel_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/beta_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/ell_integral.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/exp_integral.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/gamma.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/hypergeometric.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/legendre_function.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/modified_bessel_func.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/poly_hermite.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/poly_laguerre.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/riemann_zeta.tcc \
|
||||
/usr/include/c++/15.2.1/tr1/special_function_util.h \
|
||||
/usr/include/c++/15.2.1/tuple \
|
||||
/usr/include/c++/15.2.1/type_traits \
|
||||
/usr/include/c++/15.2.1/typeinfo \
|
||||
/usr/include/c++/15.2.1/unordered_map \
|
||||
/usr/include/c++/15.2.1/unordered_set \
|
||||
/usr/include/c++/15.2.1/utility \
|
||||
/usr/include/c++/15.2.1/variant \
|
||||
/usr/include/c++/15.2.1/vector \
|
||||
/usr/include/c++/15.2.1/version \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/atomic_word.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++allocator.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/c++locale.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/error_constants.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/gthr-default.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/gthr.h \
|
||||
/usr/include/c++/15.2.1/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||
/usr/include/ctype.h \
|
||||
/usr/include/endian.h \
|
||||
/usr/include/errno.h \
|
||||
/usr/include/features-time64.h \
|
||||
/usr/include/features.h \
|
||||
/usr/include/gnu/stubs-64.h \
|
||||
/usr/include/gnu/stubs.h \
|
||||
/usr/include/limits.h \
|
||||
/usr/include/linux/errno.h \
|
||||
/usr/include/linux/limits.h \
|
||||
/usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/sched/types.h \
|
||||
/usr/include/linux/stddef.h \
|
||||
/usr/include/linux/types.h \
|
||||
/usr/include/locale.h \
|
||||
/usr/include/pthread.h \
|
||||
/usr/include/qt6/QtCore/QPair \
|
||||
/usr/include/qt6/QtCore/QString \
|
||||
/usr/include/qt6/QtCore/QVector \
|
||||
/usr/include/qt6/QtCore/q17memory.h \
|
||||
/usr/include/qt6/QtCore/q20functional.h \
|
||||
/usr/include/qt6/QtCore/q20iterator.h \
|
||||
/usr/include/qt6/QtCore/q20memory.h \
|
||||
/usr/include/qt6/QtCore/q20type_traits.h \
|
||||
/usr/include/qt6/QtCore/q20utility.h \
|
||||
/usr/include/qt6/QtCore/q23utility.h \
|
||||
/usr/include/qt6/QtCore/qalgorithms.h \
|
||||
/usr/include/qt6/QtCore/qanystringview.h \
|
||||
/usr/include/qt6/QtCore/qarraydata.h \
|
||||
/usr/include/qt6/QtCore/qarraydataops.h \
|
||||
/usr/include/qt6/QtCore/qarraydatapointer.h \
|
||||
/usr/include/qt6/QtCore/qassert.h \
|
||||
/usr/include/qt6/QtCore/qatomic.h \
|
||||
/usr/include/qt6/QtCore/qatomic_cxx11.h \
|
||||
/usr/include/qt6/QtCore/qbasicatomic.h \
|
||||
/usr/include/qt6/QtCore/qbindingstorage.h \
|
||||
/usr/include/qt6/QtCore/qbytearray.h \
|
||||
/usr/include/qt6/QtCore/qbytearrayalgorithms.h \
|
||||
/usr/include/qt6/QtCore/qbytearraylist.h \
|
||||
/usr/include/qt6/QtCore/qbytearrayview.h \
|
||||
/usr/include/qt6/QtCore/qchar.h \
|
||||
/usr/include/qt6/QtCore/qcompare.h \
|
||||
/usr/include/qt6/QtCore/qcompare_impl.h \
|
||||
/usr/include/qt6/QtCore/qcomparehelpers.h \
|
||||
/usr/include/qt6/QtCore/qcompilerdetection.h \
|
||||
/usr/include/qt6/QtCore/qconfig.h \
|
||||
/usr/include/qt6/QtCore/qconstructormacros.h \
|
||||
/usr/include/qt6/QtCore/qcontainerfwd.h \
|
||||
/usr/include/qt6/QtCore/qcontainerinfo.h \
|
||||
/usr/include/qt6/QtCore/qcontainertools_impl.h \
|
||||
/usr/include/qt6/QtCore/qcontiguouscache.h \
|
||||
/usr/include/qt6/QtCore/qdarwinhelpers.h \
|
||||
/usr/include/qt6/QtCore/qdatastream.h \
|
||||
/usr/include/qt6/QtCore/qdebug.h \
|
||||
/usr/include/qt6/QtCore/qendian.h \
|
||||
/usr/include/qt6/QtCore/qexceptionhandling.h \
|
||||
/usr/include/qt6/QtCore/qflags.h \
|
||||
/usr/include/qt6/QtCore/qfloat16.h \
|
||||
/usr/include/qt6/QtCore/qforeach.h \
|
||||
/usr/include/qt6/QtCore/qfunctionaltools_impl.h \
|
||||
/usr/include/qt6/QtCore/qfunctionpointer.h \
|
||||
/usr/include/qt6/QtCore/qgenericatomic.h \
|
||||
/usr/include/qt6/QtCore/qglobal.h \
|
||||
/usr/include/qt6/QtCore/qglobalstatic.h \
|
||||
/usr/include/qt6/QtCore/qhash.h \
|
||||
/usr/include/qt6/QtCore/qhashfunctions.h \
|
||||
/usr/include/qt6/QtCore/qiodevicebase.h \
|
||||
/usr/include/qt6/QtCore/qiterable.h \
|
||||
/usr/include/qt6/QtCore/qiterator.h \
|
||||
/usr/include/qt6/QtCore/qlatin1stringview.h \
|
||||
/usr/include/qt6/QtCore/qline.h \
|
||||
/usr/include/qt6/QtCore/qlist.h \
|
||||
/usr/include/qt6/QtCore/qlogging.h \
|
||||
/usr/include/qt6/QtCore/qmalloc.h \
|
||||
/usr/include/qt6/QtCore/qmap.h \
|
||||
/usr/include/qt6/QtCore/qmargins.h \
|
||||
/usr/include/qt6/QtCore/qmath.h \
|
||||
/usr/include/qt6/QtCore/qmetacontainer.h \
|
||||
/usr/include/qt6/QtCore/qmetatype.h \
|
||||
/usr/include/qt6/QtCore/qminmax.h \
|
||||
/usr/include/qt6/QtCore/qnamespace.h \
|
||||
/usr/include/qt6/QtCore/qnumeric.h \
|
||||
/usr/include/qt6/QtCore/qobject.h \
|
||||
/usr/include/qt6/QtCore/qobject_impl.h \
|
||||
/usr/include/qt6/QtCore/qobjectdefs.h \
|
||||
/usr/include/qt6/QtCore/qobjectdefs_impl.h \
|
||||
/usr/include/qt6/QtCore/qoverload.h \
|
||||
/usr/include/qt6/QtCore/qpair.h \
|
||||
/usr/include/qt6/QtCore/qpoint.h \
|
||||
/usr/include/qt6/QtCore/qprocessordetection.h \
|
||||
/usr/include/qt6/QtCore/qrect.h \
|
||||
/usr/include/qt6/QtCore/qrefcount.h \
|
||||
/usr/include/qt6/QtCore/qscopedpointer.h \
|
||||
/usr/include/qt6/QtCore/qscopeguard.h \
|
||||
/usr/include/qt6/QtCore/qset.h \
|
||||
/usr/include/qt6/QtCore/qshareddata.h \
|
||||
/usr/include/qt6/QtCore/qshareddata_impl.h \
|
||||
/usr/include/qt6/QtCore/qsharedpointer.h \
|
||||
/usr/include/qt6/QtCore/qsharedpointer_impl.h \
|
||||
/usr/include/qt6/QtCore/qsize.h \
|
||||
/usr/include/qt6/QtCore/qspan.h \
|
||||
/usr/include/qt6/QtCore/qstdlibdetection.h \
|
||||
/usr/include/qt6/QtCore/qstring.h \
|
||||
/usr/include/qt6/QtCore/qstringalgorithms.h \
|
||||
/usr/include/qt6/QtCore/qstringbuilder.h \
|
||||
/usr/include/qt6/QtCore/qstringconverter.h \
|
||||
/usr/include/qt6/QtCore/qstringconverter_base.h \
|
||||
/usr/include/qt6/QtCore/qstringfwd.h \
|
||||
/usr/include/qt6/QtCore/qstringlist.h \
|
||||
/usr/include/qt6/QtCore/qstringliteral.h \
|
||||
/usr/include/qt6/QtCore/qstringmatcher.h \
|
||||
/usr/include/qt6/QtCore/qstringtokenizer.h \
|
||||
/usr/include/qt6/QtCore/qstringview.h \
|
||||
/usr/include/qt6/QtCore/qswap.h \
|
||||
/usr/include/qt6/QtCore/qsysinfo.h \
|
||||
/usr/include/qt6/QtCore/qsystemdetection.h \
|
||||
/usr/include/qt6/QtCore/qtaggedpointer.h \
|
||||
/usr/include/qt6/QtCore/qtclasshelpermacros.h \
|
||||
/usr/include/qt6/QtCore/qtconfiginclude.h \
|
||||
/usr/include/qt6/QtCore/qtconfigmacros.h \
|
||||
/usr/include/qt6/QtCore/qtcore-config.h \
|
||||
/usr/include/qt6/QtCore/qtcoreexports.h \
|
||||
/usr/include/qt6/QtCore/qtcoreglobal.h \
|
||||
/usr/include/qt6/QtCore/qtdeprecationdefinitions.h \
|
||||
/usr/include/qt6/QtCore/qtdeprecationmarkers.h \
|
||||
/usr/include/qt6/QtCore/qtenvironmentvariables.h \
|
||||
/usr/include/qt6/QtCore/qtextstream.h \
|
||||
/usr/include/qt6/QtCore/qtformat_impl.h \
|
||||
/usr/include/qt6/QtCore/qtmetamacros.h \
|
||||
/usr/include/qt6/QtCore/qtnoop.h \
|
||||
/usr/include/qt6/QtCore/qtpreprocessorsupport.h \
|
||||
/usr/include/qt6/QtCore/qtresource.h \
|
||||
/usr/include/qt6/QtCore/qttranslation.h \
|
||||
/usr/include/qt6/QtCore/qttypetraits.h \
|
||||
/usr/include/qt6/QtCore/qtversion.h \
|
||||
/usr/include/qt6/QtCore/qtversionchecks.h \
|
||||
/usr/include/qt6/QtCore/qtypeinfo.h \
|
||||
/usr/include/qt6/QtCore/qtypes.h \
|
||||
/usr/include/qt6/QtCore/qutf8stringview.h \
|
||||
/usr/include/qt6/QtCore/qvariant.h \
|
||||
/usr/include/qt6/QtCore/qvarlengtharray.h \
|
||||
/usr/include/qt6/QtCore/qvector.h \
|
||||
/usr/include/qt6/QtCore/qversiontagging.h \
|
||||
/usr/include/qt6/QtCore/qxptype_traits.h \
|
||||
/usr/include/qt6/QtCore/qyieldcpu.h \
|
||||
/usr/include/qt6/QtGui/qaction.h \
|
||||
/usr/include/qt6/QtGui/qbitmap.h \
|
||||
/usr/include/qt6/QtGui/qbrush.h \
|
||||
/usr/include/qt6/QtGui/qcolor.h \
|
||||
/usr/include/qt6/QtGui/qcursor.h \
|
||||
/usr/include/qt6/QtGui/qfont.h \
|
||||
/usr/include/qt6/QtGui/qfontinfo.h \
|
||||
/usr/include/qt6/QtGui/qfontmetrics.h \
|
||||
/usr/include/qt6/QtGui/qfontvariableaxis.h \
|
||||
/usr/include/qt6/QtGui/qicon.h \
|
||||
/usr/include/qt6/QtGui/qimage.h \
|
||||
/usr/include/qt6/QtGui/qkeysequence.h \
|
||||
/usr/include/qt6/QtGui/qpaintdevice.h \
|
||||
/usr/include/qt6/QtGui/qpalette.h \
|
||||
/usr/include/qt6/QtGui/qpixelformat.h \
|
||||
/usr/include/qt6/QtGui/qpixmap.h \
|
||||
/usr/include/qt6/QtGui/qpolygon.h \
|
||||
/usr/include/qt6/QtGui/qregion.h \
|
||||
/usr/include/qt6/QtGui/qrgb.h \
|
||||
/usr/include/qt6/QtGui/qrgba64.h \
|
||||
/usr/include/qt6/QtGui/qtgui-config.h \
|
||||
/usr/include/qt6/QtGui/qtguiexports.h \
|
||||
/usr/include/qt6/QtGui/qtguiglobal.h \
|
||||
/usr/include/qt6/QtGui/qtransform.h \
|
||||
/usr/include/qt6/QtGui/qwindowdefs.h \
|
||||
/usr/include/qt6/QtWidgets/QMainWindow \
|
||||
/usr/include/qt6/QtWidgets/qmainwindow.h \
|
||||
/usr/include/qt6/QtWidgets/qsizepolicy.h \
|
||||
/usr/include/qt6/QtWidgets/qtabwidget.h \
|
||||
/usr/include/qt6/QtWidgets/qtwidgets-config.h \
|
||||
/usr/include/qt6/QtWidgets/qtwidgetsexports.h \
|
||||
/usr/include/qt6/QtWidgets/qtwidgetsglobal.h \
|
||||
/usr/include/qt6/QtWidgets/qwidget.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/sys/cdefs.h \
|
||||
/usr/include/sys/select.h \
|
||||
/usr/include/sys/single_threaded.h \
|
||||
/usr/include/sys/types.h \
|
||||
/usr/include/time.h \
|
||||
/usr/include/wchar.h \
|
||||
/usr/lib/cmake/Qt6/3rdparty/kwin/FindXKB.cmake \
|
||||
/usr/lib/cmake/Qt6/FindWrapAtomic.cmake \
|
||||
/usr/lib/cmake/Qt6/FindWrapOpenGL.cmake \
|
||||
/usr/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake \
|
||||
/usr/lib/cmake/Qt6/Qt6Config.cmake \
|
||||
/usr/lib/cmake/Qt6/Qt6ConfigExtras.cmake \
|
||||
/usr/lib/cmake/Qt6/Qt6ConfigVersion.cmake \
|
||||
/usr/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake \
|
||||
/usr/lib/cmake/Qt6/Qt6Dependencies.cmake \
|
||||
/usr/lib/cmake/Qt6/Qt6Targets.cmake \
|
||||
/usr/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake \
|
||||
/usr/lib/cmake/Qt6/QtFeature.cmake \
|
||||
/usr/lib/cmake/Qt6/QtFeatureCommon.cmake \
|
||||
/usr/lib/cmake/Qt6/QtInstallPaths.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicAndroidHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicAppleHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicCMakeEarlyPolicyHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicGitHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicPluginHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicPluginHelpers_v2.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomAttributionHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomCpeHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomDepHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomFileHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomLicenseHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomOpsHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomPurlHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomPythonHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomQtEntityHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicSbomSystemDepHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicTargetHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicTestHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicToolHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6/QtPublicWindowsHelpers.cmake \
|
||||
/usr/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Core/Qt6CoreConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake \
|
||||
/usr/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake \
|
||||
/usr/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake \
|
||||
/usr/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake \
|
||||
/usr/lib/cmake/Qt6Core/Qt6CoreMacros.cmake \
|
||||
/usr/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Core/Qt6CoreTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake \
|
||||
/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateConfig.cmake \
|
||||
/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateConfigVersion.cmake \
|
||||
/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateConfigVersionImpl.cmake \
|
||||
/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateDependencies.cmake \
|
||||
/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateTargets.cmake \
|
||||
/usr/lib/cmake/Qt6CorePrivate/Qt6CorePrivateVersionlessAliasTargets.cmake \
|
||||
/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake \
|
||||
/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake \
|
||||
/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake \
|
||||
/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake \
|
||||
/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake \
|
||||
/usr/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake \
|
||||
/usr/lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6DBus/Qt6DBusConfig.cmake \
|
||||
/usr/lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake \
|
||||
/usr/lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake \
|
||||
/usr/lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake \
|
||||
/usr/lib/cmake/Qt6DBus/Qt6DBusMacros.cmake \
|
||||
/usr/lib/cmake/Qt6DBus/Qt6DBusTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6DBus/Qt6DBusTargets.cmake \
|
||||
/usr/lib/cmake/Qt6DBus/Qt6DBusVersionlessAliasTargets.cmake \
|
||||
/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateConfig.cmake \
|
||||
/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateConfigVersion.cmake \
|
||||
/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateConfigVersionImpl.cmake \
|
||||
/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateDependencies.cmake \
|
||||
/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateTargets.cmake \
|
||||
/usr/lib/cmake/Qt6DBusPrivate/Qt6DBusPrivateVersionlessAliasTargets.cmake \
|
||||
/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake \
|
||||
/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake \
|
||||
/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake \
|
||||
/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake \
|
||||
/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake \
|
||||
/usr/lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTsLibPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets.cmake \
|
||||
/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateConfig.cmake \
|
||||
/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateConfigVersion.cmake \
|
||||
/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateConfigVersionImpl.cmake \
|
||||
/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateDependencies.cmake \
|
||||
/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateTargets.cmake \
|
||||
/usr/lib/cmake/Qt6GuiPrivate/Qt6GuiPrivateVersionlessAliasTargets.cmake \
|
||||
/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake \
|
||||
/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake \
|
||||
/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake \
|
||||
/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake \
|
||||
/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake \
|
||||
/usr/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake \
|
||||
/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake \
|
||||
/usr/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake \
|
||||
/usr/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake \
|
||||
/usr/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake \
|
||||
/usr/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake \
|
||||
/usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake \
|
||||
/usr/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake \
|
||||
/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateConfig.cmake \
|
||||
/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateConfigVersion.cmake \
|
||||
/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateConfigVersionImpl.cmake \
|
||||
/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateDependencies.cmake \
|
||||
/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateTargets.cmake \
|
||||
/usr/lib/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateVersionlessAliasTargets.cmake \
|
||||
/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake \
|
||||
/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake \
|
||||
/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake \
|
||||
/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake \
|
||||
/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake \
|
||||
/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake \
|
||||
/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake \
|
||||
/usr/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdarg.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stdbool.h \
|
||||
/usr/lib/gcc/x86_64-pc-linux-gnu/15.2.1/include/stddef.h \
|
||||
/usr/share/cmake/Modules/CMakeCInformation.cmake \
|
||||
/usr/share/cmake/Modules/CMakeCXXInformation.cmake \
|
||||
/usr/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake \
|
||||
/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake \
|
||||
/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake \
|
||||
/usr/share/cmake/Modules/CMakeGenericSystem.cmake \
|
||||
/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake \
|
||||
/usr/share/cmake/Modules/CMakeLanguageInformation.cmake \
|
||||
/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake \
|
||||
/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake \
|
||||
/usr/share/cmake/Modules/CheckCSourceCompiles.cmake \
|
||||
/usr/share/cmake/Modules/CheckCXXCompilerFlag.cmake \
|
||||
/usr/share/cmake/Modules/CheckCXXSourceCompiles.cmake \
|
||||
/usr/share/cmake/Modules/CheckIncludeFile.cmake \
|
||||
/usr/share/cmake/Modules/CheckLibraryExists.cmake \
|
||||
/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake \
|
||||
/usr/share/cmake/Modules/Compiler/GNU-C.cmake \
|
||||
/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake \
|
||||
/usr/share/cmake/Modules/Compiler/GNU.cmake \
|
||||
/usr/share/cmake/Modules/FeatureSummary.cmake \
|
||||
/usr/share/cmake/Modules/FindOpenGL.cmake \
|
||||
/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake \
|
||||
/usr/share/cmake/Modules/FindPackageMessage.cmake \
|
||||
/usr/share/cmake/Modules/FindPkgConfig.cmake \
|
||||
/usr/share/cmake/Modules/FindThreads.cmake \
|
||||
/usr/share/cmake/Modules/FindVulkan.cmake \
|
||||
/usr/share/cmake/Modules/GNUInstallDirs.cmake \
|
||||
/usr/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake \
|
||||
/usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake \
|
||||
/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake \
|
||||
/usr/share/cmake/Modules/Internal/CheckCompilerFlag.cmake \
|
||||
/usr/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake \
|
||||
/usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake \
|
||||
/usr/share/cmake/Modules/Linker/GNU-C.cmake \
|
||||
/usr/share/cmake/Modules/Linker/GNU-CXX.cmake \
|
||||
/usr/share/cmake/Modules/Linker/GNU.cmake \
|
||||
/usr/share/cmake/Modules/MacroAddFileDependencies.cmake \
|
||||
/usr/share/cmake/Modules/Platform/Linker/GNU.cmake \
|
||||
/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-C.cmake \
|
||||
/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake \
|
||||
/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake \
|
||||
/usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake \
|
||||
/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake \
|
||||
/usr/share/cmake/Modules/Platform/Linux-GNU.cmake \
|
||||
/usr/share/cmake/Modules/Platform/Linux-Initialize.cmake \
|
||||
/usr/share/cmake/Modules/Platform/Linux.cmake \
|
||||
/usr/share/cmake/Modules/Platform/UnixPaths.cmake \
|
||||
/usr/bin/cmake
|
||||
480
external/QCodeEditor/example/build/QCodeEditorExample_autogen/moc_predefs.h
vendored
Normal file
480
external/QCodeEditor/example/build/QCodeEditorExample_autogen/moc_predefs.h
vendored
Normal file
|
|
@ -0,0 +1,480 @@
|
|||
#define __DBL_MIN_EXP__ (-1021)
|
||||
#define __LDBL_MANT_DIG__ 64
|
||||
#define __cpp_nontype_template_parameter_auto 201606L
|
||||
#define __UINT_LEAST16_MAX__ 0xffff
|
||||
#define __FLT16_HAS_QUIET_NAN__ 1
|
||||
#define __ATOMIC_ACQUIRE 2
|
||||
#define __FLT128_MAX_10_EXP__ 4932
|
||||
#define __FLT_MIN__ 1.17549435082228750796873653722224568e-38F
|
||||
#define __GCC_IEC_559_COMPLEX 2
|
||||
#define __cpp_aggregate_nsdmi 201304L
|
||||
#define __UINT_LEAST8_TYPE__ unsigned char
|
||||
#define __SIZEOF_FLOAT80__ 16
|
||||
#define __BFLT16_DENORM_MIN__ 9.18354961579912115600575419704879436e-41BF16
|
||||
#define __INTMAX_C(c) c ## L
|
||||
#define __CHAR_BIT__ 8
|
||||
#define __UINT8_MAX__ 0xff
|
||||
#define __SCHAR_WIDTH__ 8
|
||||
#define __WINT_MAX__ 0xffffffffU
|
||||
#define __FLT32_MIN_EXP__ (-125)
|
||||
#define __cpp_static_assert 201411L
|
||||
#define __BFLT16_MIN_10_EXP__ (-37)
|
||||
#define __cpp_inheriting_constructors 201511L
|
||||
#define QT_GUI_LIB 1
|
||||
#define __ORDER_LITTLE_ENDIAN__ 1234
|
||||
#define __WCHAR_MAX__ 0x7fffffff
|
||||
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1
|
||||
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1
|
||||
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1
|
||||
#define __GCC_ATOMIC_CHAR_LOCK_FREE 2
|
||||
#define __GCC_IEC_559 2
|
||||
#define __FLT32X_DECIMAL_DIG__ 17
|
||||
#define __FLT_EVAL_METHOD__ 0
|
||||
#define __cpp_binary_literals 201304L
|
||||
#define __FLT64_DECIMAL_DIG__ 17
|
||||
#define __cpp_noexcept_function_type 201510L
|
||||
#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2
|
||||
#define __cpp_variadic_templates 200704L
|
||||
#define __UINT_FAST64_MAX__ 0xffffffffffffffffUL
|
||||
#define __SIG_ATOMIC_TYPE__ int
|
||||
#define __DBL_MIN_10_EXP__ (-307)
|
||||
#define __FINITE_MATH_ONLY__ 0
|
||||
#define __cpp_variable_templates 201304L
|
||||
#define __FLT32X_MAX_EXP__ 1024
|
||||
#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1
|
||||
#define __FLT32_HAS_DENORM__ 1
|
||||
#define __UINT_FAST8_MAX__ 0xff
|
||||
#define __cpp_rvalue_reference 200610L
|
||||
#define __cpp_nested_namespace_definitions 201411L
|
||||
#define __DEC64_MAX_EXP__ 385
|
||||
#define __INT8_C(c) c
|
||||
#define __LDBL_HAS_INFINITY__ 1
|
||||
#define __INT_LEAST8_WIDTH__ 8
|
||||
#define __cpp_variadic_using 201611L
|
||||
#define __UINT_LEAST64_MAX__ 0xffffffffffffffffUL
|
||||
#define __INT_LEAST8_MAX__ 0x7f
|
||||
#define __cpp_attributes 200809L
|
||||
#define __cpp_capture_star_this 201603L
|
||||
#define __SHRT_MAX__ 0x7fff
|
||||
#define __LDBL_MAX__ 1.18973149535723176502126385303097021e+4932L
|
||||
#define __FLT64X_MAX_10_EXP__ 4932
|
||||
#define __cpp_if_constexpr 201606L
|
||||
#define __BFLT16_MAX_10_EXP__ 38
|
||||
#define __BFLT16_MAX_EXP__ 128
|
||||
#define __LDBL_IS_IEC_60559__ 1
|
||||
#define QT_NO_DEBUG 1
|
||||
#define __FLT64X_HAS_QUIET_NAN__ 1
|
||||
#define __UINT_LEAST8_MAX__ 0xff
|
||||
#define __GCC_ATOMIC_BOOL_LOCK_FREE 2
|
||||
#define __FLT128_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966F128
|
||||
#define __UINTMAX_TYPE__ long unsigned int
|
||||
#define __cpp_nsdmi 200809L
|
||||
#define __BFLT16_DECIMAL_DIG__ 4
|
||||
#define __linux 1
|
||||
#define __DEC32_EPSILON__ 1E-6DF
|
||||
#define __FLT_EVAL_METHOD_TS_18661_3__ 0
|
||||
#define __UINT32_MAX__ 0xffffffffU
|
||||
#define __GXX_EXPERIMENTAL_CXX0X__ 1
|
||||
#define __DBL_DENORM_MIN__ double(4.94065645841246544176568792868221372e-324L)
|
||||
#define __FLT128_MIN_EXP__ (-16381)
|
||||
#define __DEC64X_MAX_EXP__ 6145
|
||||
#define __WINT_MIN__ 0U
|
||||
#define __FLT128_MIN_10_EXP__ (-4931)
|
||||
#define __FLT32X_IS_IEC_60559__ 1
|
||||
#define __INT_LEAST16_WIDTH__ 16
|
||||
#define __SCHAR_MAX__ 0x7f
|
||||
#define __FLT128_MANT_DIG__ 113
|
||||
#define __WCHAR_MIN__ (-__WCHAR_MAX__ - 1)
|
||||
#define __INT64_C(c) c ## L
|
||||
#define __SSP_STRONG__ 3
|
||||
#define __GCC_ATOMIC_POINTER_LOCK_FREE 2
|
||||
#define __ATOMIC_SEQ_CST 5
|
||||
#define __unix 1
|
||||
#define __INT_LEAST64_MAX__ 0x7fffffffffffffffL
|
||||
#define __FLT32X_MANT_DIG__ 53
|
||||
#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2
|
||||
#define __cpp_aligned_new 201606L
|
||||
#define __FLT32_MAX_10_EXP__ 38
|
||||
#define __FLT64X_EPSILON__ 1.08420217248550443400745280086994171e-19F64x
|
||||
#define __STDC_HOSTED__ 1
|
||||
#define __DEC64_MIN_EXP__ (-382)
|
||||
#define __cpp_decltype_auto 201304L
|
||||
#define __DBL_DIG__ 15
|
||||
#define __STDC_EMBED_EMPTY__ 2
|
||||
#define __FLT_EPSILON__ 1.19209289550781250000000000000000000e-7F
|
||||
#define __GXX_WEAK__ 1
|
||||
#define __SHRT_WIDTH__ 16
|
||||
#define __FLT32_IS_IEC_60559__ 1
|
||||
#define __LDBL_MIN__ 3.36210314311209350626267781732175260e-4932L
|
||||
#define __DBL_IS_IEC_60559__ 1
|
||||
#define __DEC32_MAX__ 9.999999E96DF
|
||||
#define __cpp_threadsafe_static_init 200806L
|
||||
#define __cpp_enumerator_attributes 201411L
|
||||
#define __FLT64X_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951F64x
|
||||
#define __FLT32X_HAS_INFINITY__ 1
|
||||
#define __unix__ 1
|
||||
#define __INT_WIDTH__ 32
|
||||
#define __STDC_IEC_559__ 1
|
||||
#define __STDC_ISO_10646__ 201706L
|
||||
#define __DECIMAL_DIG__ 21
|
||||
#define __STDC_IEC_559_COMPLEX__ 1
|
||||
#define __FLT64_EPSILON__ 2.22044604925031308084726333618164062e-16F64
|
||||
#define __gnu_linux__ 1
|
||||
#define __INT16_MAX__ 0x7fff
|
||||
#define __FLT64_MIN_EXP__ (-1021)
|
||||
#define __DEC64X_EPSILON__ 1E-33D64x
|
||||
#define __FLT64X_MIN_10_EXP__ (-4931)
|
||||
#define __LDBL_HAS_QUIET_NAN__ 1
|
||||
#define __FLT16_MIN_EXP__ (-13)
|
||||
#define __FLT64_MANT_DIG__ 53
|
||||
#define __FLT64X_MANT_DIG__ 64
|
||||
#define __BFLT16_DIG__ 2
|
||||
#define __GNUC__ 15
|
||||
#define __GXX_RTTI 1
|
||||
#define __pie__ 2
|
||||
#define __MMX__ 1
|
||||
#define __FLT_HAS_DENORM__ 1
|
||||
#define __SIZEOF_LONG_DOUBLE__ 16
|
||||
#define __BIGGEST_ALIGNMENT__ 16
|
||||
#define __STDC_UTF_16__ 1
|
||||
#define __FLT64_MAX_10_EXP__ 308
|
||||
#define __BFLT16_IS_IEC_60559__ 0
|
||||
#define __FLT16_MAX_10_EXP__ 4
|
||||
#define __cpp_delegating_constructors 200604L
|
||||
#define __DBL_MAX__ double(1.79769313486231570814527423731704357e+308L)
|
||||
#define __cpp_raw_strings 200710L
|
||||
#define __INT_FAST32_MAX__ 0x7fffffffffffffffL
|
||||
#define __DBL_HAS_INFINITY__ 1
|
||||
#define __INT64_MAX__ 0x7fffffffffffffffL
|
||||
#define __SIZEOF_FLOAT__ 4
|
||||
#define __HAVE_SPECULATION_SAFE_VALUE 1
|
||||
#define __cpp_fold_expressions 201603L
|
||||
#define __DEC32_MIN_EXP__ (-94)
|
||||
#define __INTPTR_WIDTH__ 64
|
||||
#define __UINT_LEAST32_MAX__ 0xffffffffU
|
||||
#define __FLT32X_HAS_DENORM__ 1
|
||||
#define __INT_FAST16_TYPE__ long int
|
||||
#define __MMX_WITH_SSE__ 1
|
||||
#define __LDBL_HAS_DENORM__ 1
|
||||
#define QT_WIDGETS_LIB 1
|
||||
#define __SEG_GS 1
|
||||
#define __BFLT16_EPSILON__ 7.81250000000000000000000000000000000e-3BF16
|
||||
#define __cplusplus 201703L
|
||||
#define __cpp_ref_qualifiers 200710L
|
||||
#define __DEC32_MIN__ 1E-95DF
|
||||
#define __DEPRECATED 1
|
||||
#define __cpp_rvalue_references 200610L
|
||||
#define __DBL_MAX_EXP__ 1024
|
||||
#define __WCHAR_WIDTH__ 32
|
||||
#define __FLT32_MAX__ 3.40282346638528859811704183484516925e+38F32
|
||||
#define __DEC128_EPSILON__ 1E-33DL
|
||||
#define __FLT16_DECIMAL_DIG__ 5
|
||||
#define __SSE2_MATH__ 1
|
||||
#define __ATOMIC_HLE_RELEASE 131072
|
||||
#define __PTRDIFF_MAX__ 0x7fffffffffffffffL
|
||||
#define __amd64 1
|
||||
#define __DEC64X_MAX__ 9.999999999999999999999999999999999E6144D64x
|
||||
#define __ATOMIC_HLE_ACQUIRE 65536
|
||||
#define __GNUG__ 15
|
||||
#define __LONG_LONG_MAX__ 0x7fffffffffffffffLL
|
||||
#define __SIZEOF_SIZE_T__ 8
|
||||
#define __BFLT16_HAS_INFINITY__ 1
|
||||
#define __FLT64X_MIN_EXP__ (-16381)
|
||||
#define __SIZEOF_WINT_T__ 4
|
||||
#define __FLT32X_DIG__ 15
|
||||
#define __LONG_LONG_WIDTH__ 64
|
||||
#define __cpp_initializer_lists 200806L
|
||||
#define __FLT32_MAX_EXP__ 128
|
||||
#define ABI_ID "ELF"
|
||||
#define __cpp_hex_float 201603L
|
||||
#define __GXX_ABI_VERSION 1020
|
||||
#define __FLT_MIN_EXP__ (-125)
|
||||
#define __GCC_HAVE_DWARF2_CFI_ASM 1
|
||||
#define __x86_64 1
|
||||
#define __cpp_lambdas 200907L
|
||||
#define __INT_FAST64_TYPE__ long int
|
||||
#define __BFLT16_MAX__ 3.38953138925153547590470800371487867e+38BF16
|
||||
#define __FLT64_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F64
|
||||
#define __cpp_template_auto 201606L
|
||||
#define __FLT16_DENORM_MIN__ 5.96046447753906250000000000000000000e-8F16
|
||||
#define __FLT128_EPSILON__ 1.92592994438723585305597794258492732e-34F128
|
||||
#define __FLT64X_NORM_MAX__ 1.18973149535723176502126385303097021e+4932F64x
|
||||
#define __SIZEOF_POINTER__ 8
|
||||
#define __SIZE_TYPE__ long unsigned int
|
||||
#define __LP64__ 1
|
||||
#define __DBL_HAS_QUIET_NAN__ 1
|
||||
#define __FLT32X_EPSILON__ 2.22044604925031308084726333618164062e-16F32x
|
||||
#define __LDBL_MAX_EXP__ 16384
|
||||
#define __DECIMAL_BID_FORMAT__ 1
|
||||
#define __FLT64_MIN_10_EXP__ (-307)
|
||||
#define __FLT16_MIN_10_EXP__ (-4)
|
||||
#define __FLT64X_DECIMAL_DIG__ 21
|
||||
#define __DEC128_MIN__ 1E-6143DL
|
||||
#define __REGISTER_PREFIX__
|
||||
#define __UINT16_MAX__ 0xffff
|
||||
#define __FLT128_HAS_INFINITY__ 1
|
||||
#define __FLT32_MIN__ 1.17549435082228750796873653722224568e-38F32
|
||||
#define __UINT8_TYPE__ unsigned char
|
||||
#define __FLT_DIG__ 6
|
||||
#define __NO_INLINE__ 1
|
||||
#define __DEC_EVAL_METHOD__ 2
|
||||
#define __FLT_MANT_DIG__ 24
|
||||
#define __LDBL_DECIMAL_DIG__ 21
|
||||
#define __VERSION__ "15.2.1 20250813"
|
||||
#define __UINT64_C(c) c ## UL
|
||||
#define __cpp_unicode_characters 201411L
|
||||
#define __DEC64X_MIN__ 1E-6143D64x
|
||||
#define _STDC_PREDEF_H 1
|
||||
#define __INT_LEAST32_MAX__ 0x7fffffff
|
||||
#define __GCC_ATOMIC_INT_LOCK_FREE 2
|
||||
#define __FLT128_MAX_EXP__ 16384
|
||||
#define __FLT32_MANT_DIG__ 24
|
||||
#define __cpp_decltype 200707L
|
||||
#define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__
|
||||
#define SIZEOF_DPTR (sizeof(void*))
|
||||
#define __FLT32X_MIN_EXP__ (-1021)
|
||||
#define __STDC_IEC_60559_COMPLEX__ 201404L
|
||||
#define __cpp_aggregate_bases 201603L
|
||||
#define __BFLT16_MIN__ 1.17549435082228750796873653722224568e-38BF16
|
||||
#define __FLT128_HAS_DENORM__ 1
|
||||
#define __FLT32_DECIMAL_DIG__ 9
|
||||
#define __FLT128_DIG__ 33
|
||||
#define __INT32_C(c) c
|
||||
#define __DEC64_EPSILON__ 1E-15DD
|
||||
#define __ORDER_PDP_ENDIAN__ 3412
|
||||
#define __DEC128_MIN_EXP__ (-6142)
|
||||
#define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL
|
||||
#define __INT_FAST32_TYPE__ long int
|
||||
#define __UINT_LEAST16_TYPE__ short unsigned int
|
||||
#define __DEC64X_MANT_DIG__ 34
|
||||
#define __DEC128_MAX_EXP__ 6145
|
||||
#define unix 1
|
||||
#define __DBL_HAS_DENORM__ 1
|
||||
#define __cpp_rtti 199711L
|
||||
#define __UINT64_MAX__ 0xffffffffffffffffUL
|
||||
#define __FLT_IS_IEC_60559__ 1
|
||||
#define __GNUC_WIDE_EXECUTION_CHARSET_NAME "UTF-32LE"
|
||||
#define __FLT64X_DIG__ 18
|
||||
#define __INT8_TYPE__ signed char
|
||||
#define __cpp_digit_separators 201309L
|
||||
#define __ELF__ 1
|
||||
#define __GCC_ASM_FLAG_OUTPUTS__ 1
|
||||
#define __UINT32_TYPE__ unsigned int
|
||||
#define __BFLT16_HAS_QUIET_NAN__ 1
|
||||
#define __FLT_RADIX__ 2
|
||||
#define __INT_LEAST16_TYPE__ short int
|
||||
#define __LDBL_EPSILON__ 1.08420217248550443400745280086994171e-19L
|
||||
#define __UINTMAX_C(c) c ## UL
|
||||
#define __FLT16_DIG__ 3
|
||||
#define __k8 1
|
||||
#define __FLT32X_MIN__ 2.22507385850720138309023271733240406e-308F32x
|
||||
#define __SIG_ATOMIC_MAX__ 0x7fffffff
|
||||
#define __cpp_constexpr 201603L
|
||||
#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2
|
||||
#define __USER_LABEL_PREFIX__
|
||||
#define __STDC_IEC_60559_BFP__ 201404L
|
||||
#define __SIZEOF_PTRDIFF_T__ 8
|
||||
#define __FLT64X_HAS_INFINITY__ 1
|
||||
#define __SIZEOF_LONG__ 8
|
||||
#define __LDBL_DIG__ 18
|
||||
#define __FLT64_IS_IEC_60559__ 1
|
||||
#define __x86_64__ 1
|
||||
#define __FLT16_IS_IEC_60559__ 1
|
||||
#define __FLT16_MAX_EXP__ 16
|
||||
#define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF
|
||||
#define __STDC_EMBED_FOUND__ 1
|
||||
#define __INT_FAST16_MAX__ 0x7fffffffffffffffL
|
||||
#define __GCC_CONSTRUCTIVE_SIZE 64
|
||||
#define __FLT64_DIG__ 15
|
||||
#define __UINT_FAST32_MAX__ 0xffffffffffffffffUL
|
||||
#define __UINT_LEAST64_TYPE__ long unsigned int
|
||||
#define __FLT16_EPSILON__ 9.76562500000000000000000000000000000e-4F16
|
||||
#define __FLT_HAS_QUIET_NAN__ 1
|
||||
#define __FLT_MAX_10_EXP__ 38
|
||||
#define __FLT64X_HAS_DENORM__ 1
|
||||
#define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL
|
||||
#define __FLT_HAS_INFINITY__ 1
|
||||
#define __GNUC_EXECUTION_CHARSET_NAME "UTF-8"
|
||||
#define __cpp_unicode_literals 200710L
|
||||
#define __UINT_FAST16_TYPE__ long unsigned int
|
||||
#define __DEC64_MAX__ 9.999999999999999E384DD
|
||||
#define __STDC_EMBED_NOT_FOUND__ 0
|
||||
#define __INT_FAST32_WIDTH__ 64
|
||||
#define __CHAR16_TYPE__ short unsigned int
|
||||
#define __PRAGMA_REDEFINE_EXTNAME 1
|
||||
#define __DEC64X_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143D64x
|
||||
#define __SIZE_WIDTH__ 64
|
||||
#define __SEG_FS 1
|
||||
#define __INT_LEAST16_MAX__ 0x7fff
|
||||
#define __FLT16_NORM_MAX__ 6.55040000000000000000000000000000000e+4F16
|
||||
#define __DEC64_MANT_DIG__ 16
|
||||
#define __FLT32_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F32
|
||||
#define __SIG_ATOMIC_WIDTH__ 32
|
||||
#define __GCC_DESTRUCTIVE_SIZE 64
|
||||
#define __INT_LEAST64_TYPE__ long int
|
||||
#define __INT16_TYPE__ short int
|
||||
#define __INT_LEAST8_TYPE__ signed char
|
||||
#define __FLT16_MAX__ 6.55040000000000000000000000000000000e+4F16
|
||||
#define __FLT128_MIN__ 3.36210314311209350626267781732175260e-4932F128
|
||||
#define __cpp_structured_bindings 201606L
|
||||
#define __SIZEOF_INT__ 4
|
||||
#define __DEC32_MAX_EXP__ 97
|
||||
#define __INT_FAST8_MAX__ 0x7f
|
||||
#define __FLT128_MAX__ 1.18973149535723176508575932662800702e+4932F128
|
||||
#define __INTPTR_MAX__ 0x7fffffffffffffffL
|
||||
#define __cpp_sized_deallocation 201309L
|
||||
#define __cpp_guaranteed_copy_elision 201606L
|
||||
#define linux 1
|
||||
#define __FLT64_HAS_QUIET_NAN__ 1
|
||||
#define __FLT32_MIN_10_EXP__ (-37)
|
||||
#define __EXCEPTIONS 1
|
||||
#define __UINT16_C(c) c
|
||||
#define __PTRDIFF_WIDTH__ 64
|
||||
#define __cpp_range_based_for 201603L
|
||||
#define __INT_FAST16_WIDTH__ 64
|
||||
#define __FLT64_HAS_INFINITY__ 1
|
||||
#define __FLT64X_MAX__ 1.18973149535723176502126385303097021e+4932F64x
|
||||
#define __FLT16_HAS_INFINITY__ 1
|
||||
#define __STDCPP_DEFAULT_NEW_ALIGNMENT__ 16
|
||||
#define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1)
|
||||
#define __code_model_small__ 1
|
||||
#define __GCC_ATOMIC_LONG_LOCK_FREE 2
|
||||
#define __cpp_nontype_template_args 201411L
|
||||
#define __DEC32_MANT_DIG__ 7
|
||||
#define __k8__ 1
|
||||
#define __INTPTR_TYPE__ long int
|
||||
#define __UINT16_TYPE__ short unsigned int
|
||||
#define __WCHAR_TYPE__ int
|
||||
#define __pic__ 2
|
||||
#define __UINTPTR_MAX__ 0xffffffffffffffffUL
|
||||
#define __INT_FAST64_WIDTH__ 64
|
||||
#define __INT_FAST64_MAX__ 0x7fffffffffffffffL
|
||||
#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1
|
||||
#define __FLT_NORM_MAX__ 3.40282346638528859811704183484516925e+38F
|
||||
#define __FLT32_HAS_INFINITY__ 1
|
||||
#define __FLT64X_MAX_EXP__ 16384
|
||||
#define __UINT_FAST64_TYPE__ long unsigned int
|
||||
#define __cpp_inline_variables 201606L
|
||||
#define __BFLT16_MIN_EXP__ (-125)
|
||||
#define __INT_MAX__ 0x7fffffff
|
||||
#define __linux__ 1
|
||||
#define __INT64_TYPE__ long int
|
||||
#define __FLT_MAX_EXP__ 128
|
||||
#define __ORDER_BIG_ENDIAN__ 4321
|
||||
#define __DBL_MANT_DIG__ 53
|
||||
#define QT_CORE_LIB 1
|
||||
#define __SIZEOF_FLOAT128__ 16
|
||||
#define __BFLT16_MANT_DIG__ 8
|
||||
#define __DEC64_MIN__ 1E-383DD
|
||||
#define __WINT_TYPE__ unsigned int
|
||||
#define __UINT_LEAST32_TYPE__ unsigned int
|
||||
#define __SIZEOF_SHORT__ 2
|
||||
#define __FLT32_NORM_MAX__ 3.40282346638528859811704183484516925e+38F32
|
||||
#define __SSE__ 1
|
||||
#define __LDBL_MIN_EXP__ (-16381)
|
||||
#define __FLT64_MAX__ 1.79769313486231570814527423731704357e+308F64
|
||||
#define __DEC64X_MIN_EXP__ (-6142)
|
||||
#define __amd64__ 1
|
||||
#define __WINT_WIDTH__ 32
|
||||
#define __INT_LEAST64_WIDTH__ 64
|
||||
#define __FLT32X_MAX_10_EXP__ 308
|
||||
#define __cpp_namespace_attributes 201411L
|
||||
#define __SIZEOF_INT128__ 16
|
||||
#define __FLT16_MIN__ 6.10351562500000000000000000000000000e-5F16
|
||||
#define __FLT64X_IS_IEC_60559__ 1
|
||||
#define __GXX_CONSTEXPR_ASM__ 1
|
||||
#define __LDBL_MAX_10_EXP__ 4932
|
||||
#define __ATOMIC_RELAXED 0
|
||||
#define __DBL_EPSILON__ double(2.22044604925031308084726333618164062e-16L)
|
||||
#define __INT_LEAST32_TYPE__ int
|
||||
#define _LP64 1
|
||||
#define __UINT8_C(c) c
|
||||
#define __FLT64_MAX_EXP__ 1024
|
||||
#define __cpp_return_type_deduction 201304L
|
||||
#define __SIZEOF_WCHAR_T__ 4
|
||||
#define __GNUC_PATCHLEVEL__ 1
|
||||
#define __FLT128_NORM_MAX__ 1.18973149535723176508575932662800702e+4932F128
|
||||
#define __FLT64_NORM_MAX__ 1.79769313486231570814527423731704357e+308F64
|
||||
#define __FLT128_HAS_QUIET_NAN__ 1
|
||||
#define __INTMAX_MAX__ 0x7fffffffffffffffL
|
||||
#define __INT_FAST8_TYPE__ signed char
|
||||
#define __FLT64X_MIN__ 3.36210314311209350626267781732175260e-4932F64x
|
||||
#define __STDCPP_THREADS__ 1
|
||||
#define __BFLT16_HAS_DENORM__ 1
|
||||
#define __GNUC_STDC_INLINE__ 1
|
||||
#define __FLT64_HAS_DENORM__ 1
|
||||
#define __FLT32_EPSILON__ 1.19209289550781250000000000000000000e-7F32
|
||||
#define __FLT16_HAS_DENORM__ 1
|
||||
#define __DBL_DECIMAL_DIG__ 17
|
||||
#define __STDC_UTF_32__ 1
|
||||
#define __INT_FAST8_WIDTH__ 8
|
||||
#define __FXSR__ 1
|
||||
#define __FLT32X_MAX__ 1.79769313486231570814527423731704357e+308F32x
|
||||
#define __DBL_NORM_MAX__ double(1.79769313486231570814527423731704357e+308L)
|
||||
#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__
|
||||
#define __INTMAX_WIDTH__ 64
|
||||
#define __cpp_runtime_arrays 198712L
|
||||
#define __FLT32_DIG__ 6
|
||||
#define __UINT64_TYPE__ long unsigned int
|
||||
#define __UINT32_C(c) c ## U
|
||||
#define ARCHITECTURE_ID "x86_64"
|
||||
#define __cpp_alias_templates 200704L
|
||||
#define __FLT_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F
|
||||
#define __FLT128_IS_IEC_60559__ 1
|
||||
#define __INT8_MAX__ 0x7f
|
||||
#define __LONG_WIDTH__ 64
|
||||
#define __DBL_MIN__ double(2.22507385850720138309023271733240406e-308L)
|
||||
#define __PIC__ 2
|
||||
#define __INT32_MAX__ 0x7fffffff
|
||||
#define __UINT_FAST32_TYPE__ long unsigned int
|
||||
#define __FLT16_MANT_DIG__ 11
|
||||
#define __FLT32X_NORM_MAX__ 1.79769313486231570814527423731704357e+308F32x
|
||||
#define __CHAR32_TYPE__ unsigned int
|
||||
#define __FLT_MAX__ 3.40282346638528859811704183484516925e+38F
|
||||
#define __SSE2__ 1
|
||||
#define __cpp_deduction_guides 201703L
|
||||
#define __BFLT16_NORM_MAX__ 3.38953138925153547590470800371487867e+38BF16
|
||||
#define __INT32_TYPE__ int
|
||||
#define __SIZEOF_DOUBLE__ 8
|
||||
#define __cpp_exceptions 199711L
|
||||
#define __FLT_MIN_10_EXP__ (-37)
|
||||
#define __FLT64_MIN__ 2.22507385850720138309023271733240406e-308F64
|
||||
#define __INT_LEAST32_WIDTH__ 32
|
||||
#define __INTMAX_TYPE__ long int
|
||||
#define __GLIBCXX_BITSIZE_INT_N_0 128
|
||||
#define __FLT32X_HAS_QUIET_NAN__ 1
|
||||
#define __ATOMIC_CONSUME 1
|
||||
#define __GNUC_MINOR__ 2
|
||||
#define __GLIBCXX_TYPE_INT_N_0 __int128
|
||||
#define __UINTMAX_MAX__ 0xffffffffffffffffUL
|
||||
#define __PIE__ 2
|
||||
#define __FLT32X_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F32x
|
||||
#define __cpp_template_template_args 201611L
|
||||
#define __DBL_MAX_10_EXP__ 308
|
||||
#define __LDBL_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951L
|
||||
#define __INT16_C(c) c
|
||||
#define __STDC__ 1
|
||||
#define __PTRDIFF_TYPE__ long int
|
||||
#define __LONG_MAX__ 0x7fffffffffffffffL
|
||||
#define __FLT32X_MIN_10_EXP__ (-307)
|
||||
#define __UINTPTR_TYPE__ long unsigned int
|
||||
#define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD
|
||||
#define __DEC128_MANT_DIG__ 34
|
||||
#define __LDBL_MIN_10_EXP__ (-4931)
|
||||
#define __cpp_generic_lambdas 201304L
|
||||
#define __SSE_MATH__ 1
|
||||
#define __SIZEOF_LONG_LONG__ 8
|
||||
#define __cpp_user_defined_literals 200809L
|
||||
#define __FLT128_DECIMAL_DIG__ 36
|
||||
#define __GCC_ATOMIC_LLONG_LOCK_FREE 2
|
||||
#define __FLT32_HAS_QUIET_NAN__ 1
|
||||
#define __FLT_DECIMAL_DIG__ 9
|
||||
#define __UINT_FAST16_MAX__ 0xffffffffffffffffUL
|
||||
#define __LDBL_NORM_MAX__ 1.18973149535723176502126385303097021e+4932L
|
||||
#define __GCC_ATOMIC_SHORT_LOCK_FREE 2
|
||||
#define __SIZE_MAX__ 0xffffffffffffffffUL
|
||||
#define __UINT_FAST8_TYPE__ unsigned char
|
||||
#define _GNU_SOURCE 1
|
||||
#define __cpp_init_captures 201304L
|
||||
#define __ATOMIC_ACQ_REL 4
|
||||
#define __ATOMIC_RELEASE 3
|
||||
2
external/QCodeEditor/example/build/QCodeEditorExample_autogen/mocs_compilation.cpp
vendored
Normal file
2
external/QCodeEditor/example/build/QCodeEditorExample_autogen/mocs_compilation.cpp
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
// This file is autogenerated. Changes will be overwritten.
|
||||
#include "6YEA5652QU/moc_MainWindow.cpp"
|
||||
0
external/QCodeEditor/example/build/QCodeEditorExample_autogen/timestamp
vendored
Normal file
0
external/QCodeEditor/example/build/QCodeEditorExample_autogen/timestamp
vendored
Normal file
66
external/QCodeEditor/example/build/cmake_install.cmake
vendored
Normal file
66
external/QCodeEditor/example/build/cmake_install.cmake
vendored
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
# Install script for directory: /home/philipp/programing/QCodeEditor/example
|
||||
|
||||
# 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 "")
|
||||
endif()
|
||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||
endif()
|
||||
|
||||
# Set the component getting installed.
|
||||
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||
if(COMPONENT)
|
||||
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_COMPONENT)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Install shared libraries without execute permission?
|
||||
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||
set(CMAKE_INSTALL_SO_NO_EXE "0")
|
||||
endif()
|
||||
|
||||
# Is this installation the result of a crosscompile?
|
||||
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||
endif()
|
||||
|
||||
# Set path to fallback-tool for dependency-resolution.
|
||||
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||
set(CMAKE_OBJDUMP "/usr/bin/objdump")
|
||||
endif()
|
||||
|
||||
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
||||
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
||||
if(CMAKE_INSTALL_LOCAL_ONLY)
|
||||
file(WRITE "/home/philipp/programing/QCodeEditor/example/build/install_local_manifest.txt"
|
||||
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||
endif()
|
||||
if(CMAKE_INSTALL_COMPONENT)
|
||||
if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$")
|
||||
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
|
||||
else()
|
||||
string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}")
|
||||
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt")
|
||||
unset(CMAKE_INST_COMP_HASH)
|
||||
endif()
|
||||
else()
|
||||
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
|
||||
endif()
|
||||
|
||||
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
|
||||
file(WRITE "/home/philipp/programing/QCodeEditor/example/build/${CMAKE_INSTALL_MANIFEST}"
|
||||
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||
endif()
|
||||
26
external/QCodeEditor/example/build/compile_commands.json
vendored
Normal file
26
external/QCodeEditor/example/build/compile_commands.json
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
[
|
||||
{
|
||||
"directory": "/home/philipp/programing/QCodeEditor/example/build",
|
||||
"command": "/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NO_DEBUG -DQT_WIDGETS_LIB -I/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/include -I/home/philipp/programing/QCodeEditor/example/include -isystem /usr/include/qt6/QtCore -isystem /usr/include/qt6 -isystem /usr/lib/qt6/mkspecs/linux-g++ -isystem /usr/include/qt6/QtWidgets -isystem /usr/include/qt6/QtGui -std=gnu++17 -mno-direct-extern-access -o CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.o -c /home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/mocs_compilation.cpp",
|
||||
"file": "/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/mocs_compilation.cpp",
|
||||
"output": "CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/mocs_compilation.cpp.o"
|
||||
},
|
||||
{
|
||||
"directory": "/home/philipp/programing/QCodeEditor/example/build",
|
||||
"command": "/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NO_DEBUG -DQT_WIDGETS_LIB -I/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/include -I/home/philipp/programing/QCodeEditor/example/include -isystem /usr/include/qt6/QtCore -isystem /usr/include/qt6 -isystem /usr/lib/qt6/mkspecs/linux-g++ -isystem /usr/include/qt6/QtWidgets -isystem /usr/include/qt6/QtGui -std=gnu++17 -mno-direct-extern-access -o CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o -c /home/philipp/programing/QCodeEditor/example/src/main.cpp",
|
||||
"file": "/home/philipp/programing/QCodeEditor/example/src/main.cpp",
|
||||
"output": "CMakeFiles/QCodeEditorExample.dir/src/main.cpp.o"
|
||||
},
|
||||
{
|
||||
"directory": "/home/philipp/programing/QCodeEditor/example/build",
|
||||
"command": "/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NO_DEBUG -DQT_WIDGETS_LIB -I/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/include -I/home/philipp/programing/QCodeEditor/example/include -isystem /usr/include/qt6/QtCore -isystem /usr/include/qt6 -isystem /usr/lib/qt6/mkspecs/linux-g++ -isystem /usr/include/qt6/QtWidgets -isystem /usr/include/qt6/QtGui -std=gnu++17 -mno-direct-extern-access -o CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.o -c /home/philipp/programing/QCodeEditor/example/src/MainWindow.cpp",
|
||||
"file": "/home/philipp/programing/QCodeEditor/example/src/MainWindow.cpp",
|
||||
"output": "CMakeFiles/QCodeEditorExample.dir/src/MainWindow.cpp.o"
|
||||
},
|
||||
{
|
||||
"directory": "/home/philipp/programing/QCodeEditor/example/build",
|
||||
"command": "/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NO_DEBUG -DQT_WIDGETS_LIB -I/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/include -I/home/philipp/programing/QCodeEditor/example/include -isystem /usr/include/qt6/QtCore -isystem /usr/include/qt6 -isystem /usr/lib/qt6/mkspecs/linux-g++ -isystem /usr/include/qt6/QtWidgets -isystem /usr/include/qt6/QtGui -std=gnu++17 -mno-direct-extern-access -o CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o -c /home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp",
|
||||
"file": "/home/philipp/programing/QCodeEditor/example/build/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp",
|
||||
"output": "CMakeFiles/QCodeEditorExample.dir/QCodeEditorExample_autogen/3YJK5W5UP7/qrc_demo_resources.cpp.o"
|
||||
}
|
||||
]
|
||||
66
external/QCodeEditor/example/cmake_install.cmake
vendored
Normal file
66
external/QCodeEditor/example/cmake_install.cmake
vendored
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
# Install script for directory: /home/philipp/programing/QCodeEditor
|
||||
|
||||
# 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 "")
|
||||
endif()
|
||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||
endif()
|
||||
|
||||
# Set the component getting installed.
|
||||
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||
if(COMPONENT)
|
||||
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_COMPONENT)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Install shared libraries without execute permission?
|
||||
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||
set(CMAKE_INSTALL_SO_NO_EXE "0")
|
||||
endif()
|
||||
|
||||
# Is this installation the result of a crosscompile?
|
||||
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||
endif()
|
||||
|
||||
# Set path to fallback-tool for dependency-resolution.
|
||||
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||
set(CMAKE_OBJDUMP "/usr/bin/objdump")
|
||||
endif()
|
||||
|
||||
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
||||
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
||||
if(CMAKE_INSTALL_LOCAL_ONLY)
|
||||
file(WRITE "/home/philipp/programing/QCodeEditor/example/install_local_manifest.txt"
|
||||
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||
endif()
|
||||
if(CMAKE_INSTALL_COMPONENT)
|
||||
if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$")
|
||||
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
|
||||
else()
|
||||
string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}")
|
||||
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt")
|
||||
unset(CMAKE_INST_COMP_HASH)
|
||||
endif()
|
||||
else()
|
||||
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
|
||||
endif()
|
||||
|
||||
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
|
||||
file(WRITE "/home/philipp/programing/QCodeEditor/example/${CMAKE_INSTALL_MANIFEST}"
|
||||
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||
endif()
|
||||
BIN
external/QCodeEditor/example/image/preview.png
vendored
Normal file
BIN
external/QCodeEditor/example/image/preview.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 53 KiB |
68
external/QCodeEditor/example/include/MainWindow.hpp
vendored
Normal file
68
external/QCodeEditor/example/include/MainWindow.hpp
vendored
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
#pragma once
|
||||
|
||||
// Qt
|
||||
#include <QMainWindow> // Required for inheritance
|
||||
#include <QString>
|
||||
#include <QVector>
|
||||
#include <QPair>
|
||||
|
||||
class QVBoxLayout;
|
||||
class QSyntaxStyle;
|
||||
class QComboBox;
|
||||
class QCheckBox;
|
||||
class QSpinBox;
|
||||
class QCompleter;
|
||||
class QStyleSyntaxHighlighter;
|
||||
class QCodeEditor;
|
||||
|
||||
/**
|
||||
* @brief Class, that describes demo main window.
|
||||
*/
|
||||
class MainWindow : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
|
||||
/**
|
||||
* @brief Constructor.
|
||||
* @param parent Pointer to parent widget.
|
||||
*/
|
||||
explicit MainWindow(QWidget* parent=nullptr);
|
||||
|
||||
private:
|
||||
|
||||
void loadStyle(QString path);
|
||||
|
||||
QString loadCode(QString path);
|
||||
|
||||
void initData();
|
||||
|
||||
void createWidgets();
|
||||
|
||||
void setupWidgets();
|
||||
|
||||
void performConnections();
|
||||
|
||||
QVBoxLayout* m_setupLayout;
|
||||
|
||||
QComboBox* m_codeSampleCombobox;
|
||||
QComboBox* m_highlighterCombobox;
|
||||
QComboBox* m_completerCombobox;
|
||||
QComboBox* m_styleCombobox;
|
||||
|
||||
QCheckBox* m_readOnlyCheckBox;
|
||||
QCheckBox* m_wordWrapCheckBox;
|
||||
QCheckBox* m_parenthesesEnabledCheckbox;
|
||||
QCheckBox* m_tabReplaceEnabledCheckbox;
|
||||
QSpinBox* m_tabReplaceNumberSpinbox;
|
||||
QCheckBox* m_autoIndentationCheckbox;
|
||||
|
||||
QCodeEditor* m_codeEditor;
|
||||
|
||||
QVector<QPair<QString, QString>> m_codeSamples;
|
||||
QVector<QPair<QString, QCompleter*>> m_completers;
|
||||
QVector<QPair<QString, QStyleSyntaxHighlighter*>> m_highlighters;
|
||||
QVector<QPair<QString, QSyntaxStyle*>> m_styles;
|
||||
};
|
||||
|
||||
17
external/QCodeEditor/example/resources/code_samples/cxx.cpp
vendored
Normal file
17
external/QCodeEditor/example/resources/code_samples/cxx.cpp
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#include <iostream>
|
||||
|
||||
int main()
|
||||
{
|
||||
int n, sum = 0;
|
||||
|
||||
std::cout << "Enter a positive integer: ";
|
||||
std::cin >> n;
|
||||
|
||||
for (int i = 1; i <= n; ++i)
|
||||
{
|
||||
sum += i;
|
||||
}
|
||||
|
||||
std::cout << "Sum = " << sum;
|
||||
return 0;
|
||||
}
|
||||
9
external/QCodeEditor/example/resources/code_samples/json.json
vendored
Normal file
9
external/QCodeEditor/example/resources/code_samples/json.json
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"root": {
|
||||
"some array": [1, 2, 3],
|
||||
"some string": "Hello world",
|
||||
"some dbl": 2.121323,
|
||||
"some bool": true,
|
||||
"some null": null
|
||||
}
|
||||
}
|
||||
414
external/QCodeEditor/example/resources/code_samples/lua.lua
vendored
Normal file
414
external/QCodeEditor/example/resources/code_samples/lua.lua
vendored
Normal file
|
|
@ -0,0 +1,414 @@
|
|||
-- Two dashes start a one-line comment.
|
||||
--[[
|
||||
Adding two ['s and ]'s makes it a
|
||||
multi-line comment.
|
||||
--]]
|
||||
|
||||
----------------------------------------------------
|
||||
-- 1. Variables and flow control.
|
||||
----------------------------------------------------
|
||||
|
||||
num = 42 -- All numbers are doubles.
|
||||
-- Don't freak out, 64-bit doubles have 52 bits for
|
||||
-- storing exact int values; machine precision is
|
||||
-- not a problem for ints that need < 52 bits.
|
||||
|
||||
s = 'walternate' -- Immutable strings like Python.
|
||||
t = "double-quotes are also fine"
|
||||
u = [[ Double brackets
|
||||
start and end
|
||||
multi-line strings.]]
|
||||
t = nil -- Undefines t; Lua has garbage collection.
|
||||
|
||||
-- Blocks are denoted with keywords like do/end:
|
||||
while num < 50 do
|
||||
num = num + 1 -- No ++ or += type operators.
|
||||
end
|
||||
|
||||
-- If clauses:
|
||||
if num > 40 then
|
||||
print('over 40')
|
||||
elseif s ~= 'walternate' then -- ~= is not equals.
|
||||
-- Equality check is == like Python; ok for strs.
|
||||
io.write('not over 40\n') -- Defaults to stdout.
|
||||
else
|
||||
-- Variables are global by default.
|
||||
thisIsGlobal = 5 -- Camel case is common.
|
||||
|
||||
-- How to make a variable local:
|
||||
local line = io.read() -- Reads next stdin line.
|
||||
|
||||
-- String concatenation uses the .. operator:
|
||||
print('Winter is coming, ' .. line)
|
||||
end
|
||||
|
||||
-- Undefined variables return nil.
|
||||
-- This is not an error:
|
||||
foo = anUnknownVariable -- Now foo = nil.
|
||||
|
||||
aBoolValue = false
|
||||
|
||||
-- Only nil and false are falsy; 0 and '' are true!
|
||||
if not aBoolValue then print('twas false') end
|
||||
|
||||
-- 'or' and 'and' are short-circuited.
|
||||
-- This is similar to the a?b:c operator in C/js:
|
||||
ans = aBoolValue and 'yes' or 'no' --> 'no'
|
||||
|
||||
karlSum = 0
|
||||
for i = 1, 100 do -- The range includes both ends.
|
||||
karlSum = karlSum + i
|
||||
end
|
||||
|
||||
-- Use "100, 1, -1" as the range to count down:
|
||||
fredSum = 0
|
||||
for j = 100, 1, -1 do fredSum = fredSum + j end
|
||||
|
||||
-- In general, the range is begin, end[, step].
|
||||
|
||||
-- Another loop construct:
|
||||
repeat
|
||||
print('the way of the future')
|
||||
num = num - 1
|
||||
until num == 0
|
||||
|
||||
|
||||
----------------------------------------------------
|
||||
-- 2. Functions.
|
||||
----------------------------------------------------
|
||||
|
||||
function fib(n)
|
||||
if n < 2 then return 1 end
|
||||
return fib(n - 2) + fib(n - 1)
|
||||
end
|
||||
|
||||
-- Closures and anonymous functions are ok:
|
||||
function adder(x)
|
||||
-- The returned function is created when adder is
|
||||
-- called, and remembers the value of x:
|
||||
return function (y) return x + y end
|
||||
end
|
||||
a1 = adder(9)
|
||||
a2 = adder(36)
|
||||
print(a1(16)) --> 25
|
||||
print(a2(64)) --> 100
|
||||
|
||||
-- Returns, func calls, and assignments all work
|
||||
-- with lists that may be mismatched in length.
|
||||
-- Unmatched receivers are nil;
|
||||
-- unmatched senders are discarded.
|
||||
|
||||
x, y, z = 1, 2, 3, 4
|
||||
-- Now x = 1, y = 2, z = 3, and 4 is thrown away.
|
||||
|
||||
function bar(a, b, c)
|
||||
print(a, b, c)
|
||||
return 4, 8, 15, 16, 23, 42
|
||||
end
|
||||
|
||||
x, y = bar('zaphod') --> print zaphod nil nil
|
||||
-- Now x = 4, y = 8, values 15..42 are discarded.
|
||||
|
||||
-- Functions are first-class, may be local/global.
|
||||
-- These are the same:
|
||||
function f(x) return x * x end
|
||||
f = function (x) return x * x end
|
||||
|
||||
-- And so are these:
|
||||
local function g(x) return math.sin(x) end
|
||||
local g; g = function (x) return math.sin(x) end
|
||||
-- the 'local g' decl makes g-self-references ok.
|
||||
|
||||
-- Trig funcs work in radians, by the way.
|
||||
|
||||
-- Calls with one string param don't need parens:
|
||||
print 'hello' -- Works fine.
|
||||
|
||||
|
||||
----------------------------------------------------
|
||||
-- 3. Tables.
|
||||
----------------------------------------------------
|
||||
|
||||
-- Tables = Lua's only compound data structure;
|
||||
-- they are associative arrays.
|
||||
-- Similar to php arrays or js objects, they are
|
||||
-- hash-lookup dicts that can also be used as lists.
|
||||
|
||||
-- Using tables as dictionaries / maps:
|
||||
|
||||
-- Dict literals have string keys by default:
|
||||
t = {key1 = 'value1', key2 = false}
|
||||
|
||||
-- String keys can use js-like dot notation:
|
||||
print(t.key1) -- Prints 'value1'.
|
||||
t.newKey = {} -- Adds a new key/value pair.
|
||||
t.key2 = nil -- Removes key2 from the table.
|
||||
|
||||
-- Literal notation for any (non-nil) value as key:
|
||||
u = {['@!#'] = 'qbert', [{}] = 1729, [6.28] = 'tau'}
|
||||
print(u[6.28]) -- prints tau
|
||||
|
||||
-- Key matching is basically by value for numbers
|
||||
-- and strings, but by identity for tables.
|
||||
a = u['@!#'] -- Now a = 'qbert'.
|
||||
b = u[{}] -- We might expect 1729, but it's nil:
|
||||
-- b = nil since the lookup fails. It fails
|
||||
-- because the key we used is not the same object
|
||||
-- as the one used to store the original value. So
|
||||
-- strings & numbers are more portable keys.
|
||||
|
||||
-- A one-table-param function call needs no parens:
|
||||
function h(x) print(x.key1) end
|
||||
h{key1 = 'Sonmi~451'} -- Prints 'Sonmi~451'.
|
||||
|
||||
for key, val in pairs(u) do -- Table iteration.
|
||||
print(key, val)
|
||||
end
|
||||
|
||||
-- _G is a special table of all globals.
|
||||
print(_G['_G'] == _G) -- Prints 'true'.
|
||||
|
||||
-- Using tables as lists / arrays:
|
||||
|
||||
-- List literals implicitly set up int keys:
|
||||
v = {'value1', 'value2', 1.21, 'gigawatts'}
|
||||
for i = 1, #v do -- #v is the size of v for lists.
|
||||
print(v[i]) -- Indices start at 1 !! SO CRAZY!
|
||||
end
|
||||
-- A 'list' is not a real type. v is just a table
|
||||
-- with consecutive integer keys, treated as a list.
|
||||
|
||||
----------------------------------------------------
|
||||
-- 3.1 Metatables and metamethods.
|
||||
----------------------------------------------------
|
||||
|
||||
-- A table can have a metatable that gives the table
|
||||
-- operator-overloadish behavior. Later we'll see
|
||||
-- how metatables support js-prototypey behavior.
|
||||
|
||||
f1 = {a = 1, b = 2} -- Represents the fraction a/b.
|
||||
f2 = {a = 2, b = 3}
|
||||
|
||||
-- This would fail:
|
||||
-- s = f1 + f2
|
||||
|
||||
metafraction = {}
|
||||
function metafraction.__add(f1, f2)
|
||||
sum = {}
|
||||
sum.b = f1.b * f2.b
|
||||
sum.a = f1.a * f2.b + f2.a * f1.b
|
||||
return sum
|
||||
end
|
||||
|
||||
setmetatable(f1, metafraction)
|
||||
setmetatable(f2, metafraction)
|
||||
|
||||
s = f1 + f2 -- call __add(f1, f2) on f1's metatable
|
||||
|
||||
-- f1, f2 have no key for their metatable, unlike
|
||||
-- prototypes in js, so you must retrieve it as in
|
||||
-- getmetatable(f1). The metatable is a normal table
|
||||
-- with keys that Lua knows about, like __add.
|
||||
|
||||
-- But the next line fails since s has no metatable:
|
||||
-- t = s + s
|
||||
-- Class-like patterns given below would fix this.
|
||||
|
||||
-- An __index on a metatable overloads dot lookups:
|
||||
defaultFavs = {animal = 'gru', food = 'donuts'}
|
||||
myFavs = {food = 'pizza'}
|
||||
setmetatable(myFavs, {__index = defaultFavs})
|
||||
eatenBy = myFavs.animal -- works! thanks, metatable
|
||||
|
||||
-- Direct table lookups that fail will retry using
|
||||
-- the metatable's __index value, and this recurses.
|
||||
|
||||
-- An __index value can also be a function(tbl, key)
|
||||
-- for more customized lookups.
|
||||
|
||||
-- Values of __index,add, .. are called metamethods.
|
||||
-- Full list. Here a is a table with the metamethod.
|
||||
|
||||
-- __add(a, b) for a + b
|
||||
-- __sub(a, b) for a - b
|
||||
-- __mul(a, b) for a * b
|
||||
-- __div(a, b) for a / b
|
||||
-- __mod(a, b) for a % b
|
||||
-- __pow(a, b) for a ^ b
|
||||
-- __unm(a) for -a
|
||||
-- __concat(a, b) for a .. b
|
||||
-- __len(a) for #a
|
||||
-- __eq(a, b) for a == b
|
||||
-- __lt(a, b) for a < b
|
||||
-- __le(a, b) for a <= b
|
||||
-- __index(a, b) <fn or a table> for a.b
|
||||
-- __newindex(a, b, c) for a.b = c
|
||||
-- __call(a, ...) for a(...)
|
||||
|
||||
----------------------------------------------------
|
||||
-- 3.2 Class-like tables and inheritance.
|
||||
----------------------------------------------------
|
||||
|
||||
-- Classes aren't built in; there are different ways
|
||||
-- to make them using tables and metatables.
|
||||
|
||||
-- Explanation for this example is below it.
|
||||
|
||||
Dog = {} -- 1.
|
||||
|
||||
function Dog:new() -- 2.
|
||||
newObj = {sound = 'woof'} -- 3.
|
||||
self.__index = self -- 4.
|
||||
return setmetatable(newObj, self) -- 5.
|
||||
end
|
||||
|
||||
function Dog:makeSound() -- 6.
|
||||
print('I say ' .. self.sound)
|
||||
end
|
||||
|
||||
mrDog = Dog:new() -- 7.
|
||||
mrDog:makeSound() -- 'I say woof' -- 8.
|
||||
|
||||
-- 1. Dog acts like a class; it's really a table.
|
||||
-- 2. function tablename:fn(...) is the same as
|
||||
-- function tablename.fn(self, ...)
|
||||
-- The : just adds a first arg called self.
|
||||
-- Read 7 & 8 below for how self gets its value.
|
||||
-- 3. newObj will be an instance of class Dog.
|
||||
-- 4. self = the class being instantiated. Often
|
||||
-- self = Dog, but inheritance can change it.
|
||||
-- newObj gets self's functions when we set both
|
||||
-- newObj's metatable and self's __index to self.
|
||||
-- 5. Reminder: setmetatable returns its first arg.
|
||||
-- 6. The : works as in 2, but this time we expect
|
||||
-- self to be an instance instead of a class.
|
||||
-- 7. Same as Dog.new(Dog), so self = Dog in new().
|
||||
-- 8. Same as mrDog.makeSound(mrDog); self = mrDog.
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
-- Inheritance example:
|
||||
|
||||
LoudDog = Dog:new() -- 1.
|
||||
|
||||
function LoudDog:makeSound()
|
||||
s = self.sound .. ' ' -- 2.
|
||||
print(s .. s .. s)
|
||||
end
|
||||
|
||||
seymour = LoudDog:new() -- 3.
|
||||
seymour:makeSound() -- 'woof woof woof' -- 4.
|
||||
|
||||
-- 1. LoudDog gets Dog's methods and variables.
|
||||
-- 2. self has a 'sound' key from new(), see 3.
|
||||
-- 3. Same as LoudDog.new(LoudDog), and converted to
|
||||
-- Dog.new(LoudDog) as LoudDog has no 'new' key,
|
||||
-- but does have __index = Dog on its metatable.
|
||||
-- Result: seymour's metatable is LoudDog, and
|
||||
-- LoudDog.__index = LoudDog. So seymour.key will
|
||||
-- = seymour.key, LoudDog.key, Dog.key, whichever
|
||||
-- table is the first with the given key.
|
||||
-- 4. The 'makeSound' key is found in LoudDog; this
|
||||
-- is the same as LoudDog.makeSound(seymour).
|
||||
|
||||
-- If needed, a subclass's new() is like the base's:
|
||||
function LoudDog:new()
|
||||
newObj = {}
|
||||
-- set up newObj
|
||||
self.__index = self
|
||||
return setmetatable(newObj, self)
|
||||
end
|
||||
|
||||
----------------------------------------------------
|
||||
-- 4. Modules.
|
||||
----------------------------------------------------
|
||||
|
||||
|
||||
--[[ I'm commenting out this section so the rest of
|
||||
-- this script remains runnable.
|
||||
-- Suppose the file mod.lua looks like this:
|
||||
local M = {}
|
||||
|
||||
local function sayMyName()
|
||||
print('Hrunkner')
|
||||
end
|
||||
|
||||
function M.sayHello()
|
||||
print('Why hello there')
|
||||
sayMyName()
|
||||
end
|
||||
|
||||
return M
|
||||
|
||||
-- Another file can use mod.lua's functionality:
|
||||
local mod = require('mod') -- Run the file mod.lua.
|
||||
|
||||
-- require is the standard way to include modules.
|
||||
-- require acts like: (if not cached; see below)
|
||||
local mod = (function ()
|
||||
<contents of mod.lua>
|
||||
end)()
|
||||
-- It's like mod.lua is a function body, so that
|
||||
-- locals inside mod.lua are invisible outside it.
|
||||
|
||||
-- This works because mod here = M in mod.lua:
|
||||
mod.sayHello() -- Says hello to Hrunkner.
|
||||
|
||||
-- This is wrong; sayMyName only exists in mod.lua:
|
||||
mod.sayMyName() -- error
|
||||
|
||||
-- require's return values are cached so a file is
|
||||
-- run at most once, even when require'd many times.
|
||||
|
||||
-- Suppose mod2.lua contains print('Hi!').
|
||||
local a = require('mod2') -- Prints Hi!
|
||||
local b = require('mod2') -- Doesn't print; a=b.
|
||||
|
||||
-- dofile is like require without caching:
|
||||
dofile('mod2.lua') --> Hi!
|
||||
dofile('mod2.lua') --> Hi! (runs it again)
|
||||
|
||||
-- loadfile loads a lua file but doesn't run it yet.
|
||||
f = loadfile('mod2.lua') -- Call f() to run it.
|
||||
|
||||
-- loadstring is loadfile for strings.
|
||||
g = loadstring('print(343)') -- Returns a function.
|
||||
g() -- Prints out 343; nothing printed before now.
|
||||
|
||||
--]]
|
||||
|
||||
----------------------------------------------------
|
||||
-- 5. References.
|
||||
----------------------------------------------------
|
||||
|
||||
--[[
|
||||
|
||||
I was excited to learn Lua so I could make games
|
||||
with the Löve 2D game engine. That's the why.
|
||||
|
||||
I started with BlackBulletIV's Lua for programmers.
|
||||
Next I read the official Programming in Lua book.
|
||||
That's the how.
|
||||
|
||||
It might be helpful to check out the Lua short
|
||||
reference on lua-users.org.
|
||||
|
||||
The main topics not covered are standard libraries:
|
||||
* string library
|
||||
* table library
|
||||
* math library
|
||||
* io library
|
||||
* os library
|
||||
|
||||
By the way, this entire file is valid Lua; save it
|
||||
as learn.lua and run it with "lua learn.lua" !
|
||||
|
||||
This was first written for tylerneylon.com. It's
|
||||
also available as a github gist. Tutorials for other
|
||||
languages, in the same style as this one, are here:
|
||||
|
||||
http://learnxinyminutes.com/
|
||||
|
||||
Have fun with Lua!
|
||||
|
||||
--]]
|
||||
14
external/QCodeEditor/example/resources/code_samples/python.py
vendored
Normal file
14
external/QCodeEditor/example/resources/code_samples/python.py
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import numpy
|
||||
|
||||
def sqr_array(x):
|
||||
'''
|
||||
Documentation for sqr_array.
|
||||
A multi line string!'
|
||||
'''
|
||||
|
||||
return np.array(x)**2
|
||||
|
||||
s = 'this is a string'
|
||||
d = 10
|
||||
x = np.arange(0,d,d/10)
|
||||
y = sqr_array(x)
|
||||
69
external/QCodeEditor/example/resources/code_samples/shader.glsl
vendored
Normal file
69
external/QCodeEditor/example/resources/code_samples/shader.glsl
vendored
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
precision mediump float;
|
||||
|
||||
uniform vec2 resolution;
|
||||
uniform float time;
|
||||
|
||||
vec3 trans(vec3 p)
|
||||
{
|
||||
return mod(p, 8.0)-4.0;
|
||||
}
|
||||
|
||||
float distanceFunction(vec3 pos)
|
||||
{
|
||||
return length(trans(pos)) - 1.5;
|
||||
}
|
||||
|
||||
vec3 getNormal(vec3 p)
|
||||
{
|
||||
const float d = 0.0001;
|
||||
return
|
||||
normalize
|
||||
(
|
||||
vec3
|
||||
(
|
||||
distanceFunction(p+vec3(d, 0.0, 0))-distanceFunction(p+vec3(-d,0.0,0.0)),
|
||||
distanceFunction(p+vec3(0.0, d, 0.0))-distanceFunction(p+vec3(0.0,-d,0.0)),
|
||||
distanceFunction(p+vec3(0.0, 0.0, d))-distanceFunction(p+vec3(0.0,0.0,-d))
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
void main() {
|
||||
vec2 pos = (gl_FragCoord.xy*2.0 -resolution) / resolution.y;
|
||||
|
||||
vec3 camPos = vec3(0.0, 0.0, 3.0);
|
||||
vec3 camDir = vec3(0.0, 0.0, -1.0);
|
||||
vec3 camUp = vec3(0.0, 1.0, 0.0);
|
||||
vec3 camSide = cross(camDir, camUp);
|
||||
float focus = sin(time)*1.5+4.0;
|
||||
|
||||
mat3 lense = mat3(1.,0.,0.,
|
||||
0.,888989898989898989,0.,
|
||||
0.,0.,1.);
|
||||
vec3 pos3 = vec3(pos,camDir.z*10.);
|
||||
camDir = vec3(
|
||||
camDir.x,
|
||||
camDir.y,
|
||||
camDir.z);
|
||||
camDir*=normalize(dot(camDir,pos3));
|
||||
vec3 rayDir = normalize(camSide*pos.x + camUp*pos.y + camDir*focus);
|
||||
|
||||
float t = 0.0, d;
|
||||
vec3 posOnRay = camPos;
|
||||
|
||||
for(int i=0; i<64; ++i)
|
||||
{
|
||||
d = distanceFunction(posOnRay);
|
||||
t += d;
|
||||
posOnRay = camPos + t*rayDir;
|
||||
}
|
||||
|
||||
vec3 normal = getNormal(posOnRay);
|
||||
if(abs(d) < 0.001)
|
||||
{
|
||||
gl_FragColor = vec4(normal, 1.0);
|
||||
}else
|
||||
{
|
||||
gl_FragColor = vec4(0.0);
|
||||
}
|
||||
}
|
||||
57
external/QCodeEditor/example/resources/code_samples/xml.xml
vendored
Normal file
57
external/QCodeEditor/example/resources/code_samples/xml.xml
vendored
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
<?xml version="1.0"?>
|
||||
<?xml-stylesheet type="text/xsl" href="myfile.xsl" ?>
|
||||
<bookstore specialty="novel">
|
||||
<book style="autobiography">
|
||||
<author>
|
||||
<first-name>Joe</first-name>
|
||||
<last-name>Bob</last-name>
|
||||
<award>Trenton Literary Review Honorable Mention</award>
|
||||
</author>
|
||||
<price>12</price>
|
||||
</book>
|
||||
<book style="textbook">
|
||||
<author>
|
||||
<first-name>Mary</first-name>
|
||||
<last-name>Bob</last-name>
|
||||
<publication>Selected Short Stories of
|
||||
<first-name>Mary</first-name>
|
||||
<last-name>Bob</last-name>
|
||||
</publication>
|
||||
</author>
|
||||
<editor>
|
||||
<first-name>Britney</first-name>
|
||||
<last-name>Bob</last-name>
|
||||
</editor>
|
||||
<price>55</price>
|
||||
</book>
|
||||
<magazine style="glossy" frequency="monthly">
|
||||
<price>2.50</price>
|
||||
<subscription price="24" per="year"/>
|
||||
</magazine>
|
||||
<book style="novel" id="myfave">
|
||||
<author>
|
||||
<first-name>Toni</first-name>
|
||||
<last-name>Bob</last-name>
|
||||
<degree from="Trenton U">B.A.</degree>
|
||||
<degree from="Harvard">Ph.D.</degree>
|
||||
<award>Pulitzer</award>
|
||||
<publication>Still in Trenton</publication>
|
||||
<publication>Trenton Forever</publication>
|
||||
</author>
|
||||
<price intl="Canada" exchange="0.7">6.50</price>
|
||||
<excerpt>
|
||||
<p>It was a dark and stormy night.</p>
|
||||
<p>But then all nights in Trenton seem dark and
|
||||
stormy to someone who has gone through what
|
||||
<emph>I</emph> have.</p>
|
||||
<definition-list>
|
||||
<term>Trenton</term>
|
||||
<definition>misery</definition>
|
||||
</definition-list>
|
||||
</excerpt>
|
||||
</book>
|
||||
<my:book xmlns:my="uri:mynamespace" style="leather" price="29.50">
|
||||
<my:title>Who's Who in Trenton</my:title>
|
||||
<my:author>Robert Bob</my:author>
|
||||
</my:book>
|
||||
</bookstore>
|
||||
11
external/QCodeEditor/example/resources/demo_resources.qrc
vendored
Normal file
11
external/QCodeEditor/example/resources/demo_resources.qrc
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file>styles/drakula.xml</file>
|
||||
<file>code_samples/cxx.cpp</file>
|
||||
<file>code_samples/shader.glsl</file>
|
||||
<file>code_samples/xml.xml</file>
|
||||
<file>code_samples/json.json</file>
|
||||
<file>code_samples/lua.lua</file>
|
||||
<file>code_samples/python.py</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
66
external/QCodeEditor/example/resources/styles/drakula.xml
vendored
Normal file
66
external/QCodeEditor/example/resources/styles/drakula.xml
vendored
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<style-scheme version="1.0" name="Dracula">
|
||||
<style name="Text" foreground="#f8f8f2" background="#282a36"/>
|
||||
<style name="Link" foreground="#8be9fd" underlineStyle="SingleUnderline"/>
|
||||
<style name="Selection" background="#44475a"/>
|
||||
<style name="LineNumber" foreground="#6272a4"/>
|
||||
<style name="SearchResult" foreground="#d57544" bold="true"/>
|
||||
<style name="SearchScope" foreground="#000000" background="#f8f8f2"/>
|
||||
<style name="Parentheses" foreground="#f8f8f2" bold="true"/>
|
||||
<style name="ParenthesesMismatch" foreground="#f8f8f2"/>
|
||||
<style name="AutoComplete" foreground="#f8f8f2"/>
|
||||
<style name="CurrentLine" foreground="#000000" background="#383b4c"/>
|
||||
<style name="CurrentLineNumber" foreground="#f8f8f2"/>
|
||||
<style name="Occurrences" foreground="#000000" background="#f8f8f2"/>
|
||||
<style name="Occurrences.Unused" foreground="#f8f8f2"/>
|
||||
<style name="Occurrences.Rename" foreground="#000000" background="#f8f8f2"/>
|
||||
<style name="Number" foreground="#bd93f9"/>
|
||||
<style name="String" foreground="#f1fa8c"/>
|
||||
<style name="Type" foreground="#7ce4fb"/>
|
||||
<style name="Local" foreground="#ffffff"/>
|
||||
<style name="Global" foreground="#ffb86c"/>
|
||||
<style name="Field" foreground="#ffffff"/>
|
||||
<style name="Static" foreground="#ffb86c"/>
|
||||
<style name="VirtualMethod" foreground="#50fa7b" italic="true"/>
|
||||
<style name="Function" foreground="#50fa7b"/>
|
||||
<style name="Keyword" foreground="#ff79c6" bold="true"/>
|
||||
<style name="PrimitiveType" foreground="#7ce4fb" italic="true"/>
|
||||
<style name="Operator" foreground="#ffffff"/>
|
||||
<style name="Overloaded Operator"/>
|
||||
<style name="Preprocessor" foreground="#ff79c6"/>
|
||||
<style name="Label" foreground="#ffb86c"/>
|
||||
<style name="Comment" foreground="#6272a4" bold="true"/>
|
||||
<style name="Doxygen.Comment" foreground="#6272a4"/>
|
||||
<style name="Doxygen.Tag" foreground="#6272a4" bold="true"/>
|
||||
<style name="VisualWhitespace" foreground="#6272a4"/>
|
||||
<style name="QmlLocalId" foreground="#50fa7b" italic="true"/>
|
||||
<style name="QmlExternalId" foreground="#ffb86c" italic="true"/>
|
||||
<style name="QmlTypeId" foreground="#8be9fd"/>
|
||||
<style name="QmlRootObjectProperty" foreground="#50fa7b" italic="true"/>
|
||||
<style name="QmlScopeObjectProperty" foreground="#50fa7b" italic="true"/>
|
||||
<style name="QmlExternalObjectProperty" foreground="#ffb86c" italic="true"/>
|
||||
<style name="JsScopeVar" foreground="#bd93f9" italic="true"/>
|
||||
<style name="JsImportVar" foreground="#8be9fd" italic="true"/>
|
||||
<style name="JsGlobalVar" foreground="#8be9fd" italic="true"/>
|
||||
<style name="QmlStateName" foreground="#50fa7b" italic="true"/>
|
||||
<style name="Binding" foreground="#ff79c6"/>
|
||||
<style name="DisabledCode" foreground="#6272a4"/>
|
||||
<style name="AddedLine" foreground="#50fa7b"/>
|
||||
<style name="RemovedLine" foreground="#ff5555"/>
|
||||
<style name="DiffFile" foreground="#8be9fd"/>
|
||||
<style name="DiffLocation" foreground="#ffb86c"/>
|
||||
<style name="DiffFileLine" foreground="#282a36" background="#f1fa8c"/>
|
||||
<style name="DiffContextLine" foreground="#282a36" background="#8be9fd"/>
|
||||
<style name="DiffSourceLine" background="#ff5555"/>
|
||||
<style name="DiffSourceChar" background="#cc2222"/>
|
||||
<style name="DiffDestLine" foreground="#282a36" background="#50fa7b"/>
|
||||
<style name="DiffDestChar" foreground="#282a36" background="#1dc748"/>
|
||||
<style name="LogChangeLine" foreground="#ff5555"/>
|
||||
<style name="Warning" underlineColor="#ffb86c" underlineStyle="SingleUnderline"/>
|
||||
<style name="WarningContext" underlineColor="#ffb86c" underlineStyle="DotLine"/>
|
||||
<style name="Error" underlineColor="#ff5555" underlineStyle="SingleUnderline"/>
|
||||
<style name="ErrorContext" underlineColor="#ff5555" underlineStyle="DotLine"/>
|
||||
<style name="Declaration" bold="true"/>
|
||||
<style name="FunctionDefinition"/>
|
||||
<style name="OutputArgument" italic="true"/>
|
||||
</style-scheme>
|
||||
306
external/QCodeEditor/example/src/MainWindow.cpp
vendored
Normal file
306
external/QCodeEditor/example/src/MainWindow.cpp
vendored
Normal file
|
|
@ -0,0 +1,306 @@
|
|||
// Demo
|
||||
#include <MainWindow.hpp>
|
||||
|
||||
// QCodeEditor
|
||||
#include <QCodeEditor>
|
||||
#include <QGLSLCompleter>
|
||||
#include <QLuaCompleter>
|
||||
#include <QPythonCompleter>
|
||||
#include <QSyntaxStyle>
|
||||
#include <QCXXHighlighter>
|
||||
#include <QGLSLHighlighter>
|
||||
#include <QXMLHighlighter>
|
||||
#include <QJSONHighlighter>
|
||||
#include <QLuaHighlighter>
|
||||
#include <QPythonHighlighter>
|
||||
|
||||
// Qt
|
||||
#include <QCheckBox>
|
||||
#include <QComboBox>
|
||||
#include <QFile>
|
||||
#include <QGroupBox>
|
||||
#include <QHBoxLayout>
|
||||
#include <QLabel>
|
||||
#include <QSpinBox>
|
||||
#include <QVBoxLayout>
|
||||
|
||||
MainWindow::MainWindow(QWidget* parent) :
|
||||
QMainWindow(parent),
|
||||
m_setupLayout(nullptr),
|
||||
m_codeSampleCombobox(nullptr),
|
||||
m_highlighterCombobox(nullptr),
|
||||
m_completerCombobox(nullptr),
|
||||
m_styleCombobox(nullptr),
|
||||
m_readOnlyCheckBox(nullptr),
|
||||
m_wordWrapCheckBox(nullptr),
|
||||
m_parenthesesEnabledCheckbox(nullptr),
|
||||
m_tabReplaceEnabledCheckbox(nullptr),
|
||||
m_tabReplaceNumberSpinbox(nullptr),
|
||||
m_autoIndentationCheckbox(nullptr),
|
||||
m_codeEditor(nullptr),
|
||||
m_completers(),
|
||||
m_highlighters(),
|
||||
m_styles()
|
||||
{
|
||||
initData();
|
||||
createWidgets();
|
||||
setupWidgets();
|
||||
performConnections();
|
||||
}
|
||||
|
||||
void MainWindow::initData()
|
||||
{
|
||||
m_codeSamples = {
|
||||
{"C++", loadCode(":/code_samples/cxx.cpp")},
|
||||
{"GLSL", loadCode(":/code_samples/shader.glsl")},
|
||||
{"XML", loadCode(":/code_samples/xml.xml")},
|
||||
{"JSON", loadCode(":/code_samples/json.json")},
|
||||
{"LUA", loadCode(":/code_samples/lua.lua")},
|
||||
{"Python", loadCode(":/code_samples/python.py")}
|
||||
};
|
||||
|
||||
m_completers = {
|
||||
{"None", nullptr},
|
||||
{"GLSL", new QGLSLCompleter(this)},
|
||||
{"LUA", new QLuaCompleter(this)},
|
||||
{"Python", new QPythonCompleter(this)},
|
||||
};
|
||||
|
||||
m_highlighters = {
|
||||
{"None", nullptr},
|
||||
{"C++", new QCXXHighlighter},
|
||||
{"GLSL", new QGLSLHighlighter},
|
||||
{"XML", new QXMLHighlighter},
|
||||
{"JSON", new QJSONHighlighter},
|
||||
{"LUA", new QLuaHighlighter},
|
||||
{"Python", new QPythonHighlighter},
|
||||
};
|
||||
|
||||
m_styles = {
|
||||
{"Default", QSyntaxStyle::defaultStyle()}
|
||||
};
|
||||
|
||||
// Loading styles
|
||||
loadStyle(":/styles/drakula.xml");
|
||||
}
|
||||
|
||||
QString MainWindow::loadCode(QString path)
|
||||
{
|
||||
QFile fl(path);
|
||||
|
||||
if (!fl.open(QIODevice::ReadOnly))
|
||||
{
|
||||
return QString();
|
||||
}
|
||||
|
||||
return fl.readAll();
|
||||
}
|
||||
|
||||
void MainWindow::loadStyle(QString path)
|
||||
{
|
||||
QFile fl(path);
|
||||
|
||||
if (!fl.open(QIODevice::ReadOnly))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
auto style = new QSyntaxStyle(this);
|
||||
|
||||
if (!style->load(fl.readAll()))
|
||||
{
|
||||
delete style;
|
||||
return;
|
||||
}
|
||||
|
||||
m_styles.append({style->name(), style});
|
||||
}
|
||||
|
||||
void MainWindow::createWidgets()
|
||||
{
|
||||
// Layout
|
||||
auto container = new QWidget(this);
|
||||
setCentralWidget(container);
|
||||
|
||||
auto hBox = new QHBoxLayout(container);
|
||||
|
||||
auto setupGroup = new QGroupBox("Setup", container);
|
||||
hBox->addWidget(setupGroup);
|
||||
|
||||
m_setupLayout = new QVBoxLayout(setupGroup);
|
||||
setupGroup->setLayout(m_setupLayout);
|
||||
setupGroup->setMaximumWidth(300);
|
||||
|
||||
// CodeEditor
|
||||
m_codeEditor = new QCodeEditor(this);
|
||||
hBox->addWidget(m_codeEditor);
|
||||
|
||||
m_codeSampleCombobox = new QComboBox(setupGroup);
|
||||
m_highlighterCombobox = new QComboBox(setupGroup);
|
||||
m_completerCombobox = new QComboBox(setupGroup);
|
||||
m_styleCombobox = new QComboBox(setupGroup);
|
||||
|
||||
m_readOnlyCheckBox = new QCheckBox("Read Only", setupGroup);
|
||||
m_wordWrapCheckBox = new QCheckBox("Word Wrap", setupGroup);
|
||||
m_parenthesesEnabledCheckbox = new QCheckBox("Auto Parentheses", setupGroup);
|
||||
m_tabReplaceEnabledCheckbox = new QCheckBox("Tab Replace", setupGroup);
|
||||
m_tabReplaceNumberSpinbox = new QSpinBox(setupGroup);
|
||||
m_autoIndentationCheckbox = new QCheckBox("Auto Indentation", setupGroup);
|
||||
|
||||
|
||||
// Adding widgets
|
||||
m_setupLayout->addWidget(new QLabel(tr("Code sample"), setupGroup));
|
||||
m_setupLayout->addWidget(m_codeSampleCombobox);
|
||||
m_setupLayout->addWidget(new QLabel(tr("Completer"), setupGroup));
|
||||
m_setupLayout->addWidget(m_completerCombobox);
|
||||
m_setupLayout->addWidget(new QLabel(tr("Highlighter"), setupGroup));
|
||||
m_setupLayout->addWidget(m_highlighterCombobox);
|
||||
m_setupLayout->addWidget(new QLabel(tr("Style"), setupGroup));
|
||||
m_setupLayout->addWidget(m_styleCombobox);
|
||||
m_setupLayout->addWidget(m_readOnlyCheckBox);
|
||||
m_setupLayout->addWidget(m_wordWrapCheckBox);
|
||||
m_setupLayout->addWidget(m_parenthesesEnabledCheckbox);
|
||||
m_setupLayout->addWidget(m_tabReplaceEnabledCheckbox);
|
||||
m_setupLayout->addWidget(m_tabReplaceNumberSpinbox);
|
||||
m_setupLayout->addWidget(m_autoIndentationCheckbox);
|
||||
m_setupLayout->addSpacerItem(new QSpacerItem(1, 2, QSizePolicy::Minimum, QSizePolicy::Expanding));
|
||||
}
|
||||
|
||||
void MainWindow::setupWidgets()
|
||||
{
|
||||
setWindowTitle("QCodeEditor Demo");
|
||||
|
||||
// CodeEditor
|
||||
m_codeEditor->setPlainText (m_codeSamples[0].second);
|
||||
m_codeEditor->setSyntaxStyle(m_styles[0].second);
|
||||
m_codeEditor->setCompleter (m_completers[0].second);
|
||||
m_codeEditor->setHighlighter(m_highlighters[0].second);
|
||||
|
||||
QStringList list;
|
||||
// Code samples
|
||||
for (auto&& el : m_codeSamples)
|
||||
{
|
||||
list << el.first;
|
||||
}
|
||||
|
||||
m_codeSampleCombobox->addItems(list);
|
||||
list.clear();
|
||||
|
||||
// Highlighter
|
||||
for (auto&& el : m_highlighters)
|
||||
{
|
||||
list << el.first;
|
||||
}
|
||||
|
||||
m_highlighterCombobox->addItems(list);
|
||||
list.clear();
|
||||
|
||||
// Completer
|
||||
for (auto&& el : m_completers)
|
||||
{
|
||||
list << el.first;
|
||||
}
|
||||
|
||||
m_completerCombobox->addItems(list);
|
||||
list.clear();
|
||||
|
||||
// Styles
|
||||
for (auto&& el : m_styles)
|
||||
{
|
||||
list << el.first;
|
||||
}
|
||||
|
||||
m_styleCombobox->addItems(list);
|
||||
list.clear();
|
||||
|
||||
m_parenthesesEnabledCheckbox->setChecked(m_codeEditor->autoParentheses());
|
||||
m_tabReplaceEnabledCheckbox->setChecked(m_codeEditor->tabReplace());
|
||||
m_tabReplaceNumberSpinbox->setValue(m_codeEditor->tabReplaceSize());
|
||||
m_tabReplaceNumberSpinbox->setSuffix(tr(" spaces"));
|
||||
m_autoIndentationCheckbox->setChecked(m_codeEditor->autoIndentation());
|
||||
|
||||
m_wordWrapCheckBox->setChecked(m_codeEditor->wordWrapMode() != QTextOption::NoWrap);
|
||||
|
||||
}
|
||||
|
||||
void MainWindow::performConnections()
|
||||
{
|
||||
connect(
|
||||
m_codeSampleCombobox,
|
||||
QOverload<int>::of(&QComboBox::currentIndexChanged),
|
||||
[this](int index)
|
||||
{ m_codeEditor->setPlainText(m_codeSamples[index].second); }
|
||||
);
|
||||
|
||||
connect(
|
||||
m_highlighterCombobox,
|
||||
QOverload<int>::of(&QComboBox::currentIndexChanged),
|
||||
[this](int index)
|
||||
{ m_codeEditor->setHighlighter(m_highlighters[index].second); }
|
||||
);
|
||||
|
||||
connect(
|
||||
m_completerCombobox,
|
||||
QOverload<int>::of(&QComboBox::currentIndexChanged),
|
||||
[this](int index)
|
||||
{ m_codeEditor->setCompleter(m_completers[index].second); }
|
||||
);
|
||||
|
||||
connect(
|
||||
m_styleCombobox,
|
||||
QOverload<int>::of(&QComboBox::currentIndexChanged),
|
||||
[this](int index)
|
||||
{ m_codeEditor->setSyntaxStyle(m_styles[index].second); }
|
||||
);
|
||||
|
||||
connect(
|
||||
m_readOnlyCheckBox,
|
||||
&QCheckBox::stateChanged,
|
||||
[this](int state)
|
||||
{ m_codeEditor->setReadOnly(state != 0); }
|
||||
);
|
||||
|
||||
connect(
|
||||
m_wordWrapCheckBox,
|
||||
&QCheckBox::stateChanged,
|
||||
[this](int state)
|
||||
{
|
||||
if (state != 0)
|
||||
{
|
||||
m_codeEditor->setWordWrapMode(QTextOption::WordWrap);
|
||||
}
|
||||
else
|
||||
{
|
||||
m_codeEditor->setWordWrapMode(QTextOption::NoWrap);
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
connect(
|
||||
m_parenthesesEnabledCheckbox,
|
||||
&QCheckBox::stateChanged,
|
||||
[this](int state)
|
||||
{ m_codeEditor->setAutoParentheses(state != 0); }
|
||||
);
|
||||
|
||||
connect(
|
||||
m_tabReplaceEnabledCheckbox,
|
||||
&QCheckBox::stateChanged,
|
||||
[this](int state)
|
||||
{ m_codeEditor->setTabReplace(state != 0); }
|
||||
);
|
||||
|
||||
connect(
|
||||
m_tabReplaceNumberSpinbox,
|
||||
QOverload<int>::of(&QSpinBox::valueChanged),
|
||||
[this](int value)
|
||||
{ m_codeEditor->setTabReplaceSize(value); }
|
||||
);
|
||||
|
||||
connect(
|
||||
m_autoIndentationCheckbox,
|
||||
&QCheckBox::stateChanged,
|
||||
[this](int state)
|
||||
{ m_codeEditor->setAutoIndentation(state != 0); }
|
||||
);
|
||||
}
|
||||
104
external/QCodeEditor/example/src/main.cpp
vendored
Normal file
104
external/QCodeEditor/example/src/main.cpp
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
|
||||
// Qt
|
||||
#include <QApplication>
|
||||
|
||||
// Demo
|
||||
#include <MainWindow.hpp>
|
||||
|
||||
const char* codeSample = R"(
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2016 The Qt Company Ltd.
|
||||
** Contact: https://www.qt.io/licensing/
|
||||
**
|
||||
** This file is part of the examples of the Qt Toolkit.
|
||||
**
|
||||
** $QT_BEGIN_LICENSE:BSD$
|
||||
** Commercial License Usage
|
||||
** Licensees holding valid commercial Qt licenses may use this file in
|
||||
** accordance with the commercial license agreement provided with the
|
||||
** Software or, alternatively, in accordance with the terms contained in
|
||||
** a written agreement between you and The Qt Company. For licensing terms
|
||||
** and conditions see https://www.qt.io/terms-conditions. For further
|
||||
** information use the contact form at https://www.qt.io/contact-us.
|
||||
**
|
||||
** BSD License Usage
|
||||
** Alternatively, you may use this file under the terms of the BSD license
|
||||
** as follows:
|
||||
**
|
||||
** "Redistribution and use in source and binary forms, with or without
|
||||
** modification, are permitted provided that the following conditions are
|
||||
** met:
|
||||
** * Redistributions of source code must retain the above copyright
|
||||
** notice, this list of conditions and the following disclaimer.
|
||||
** * Redistributions in binary form must reproduce the above copyright
|
||||
** notice, this list of conditions and the following disclaimer in
|
||||
** the documentation and/or other materials provided with the
|
||||
** distribution.
|
||||
** * Neither the name of The Qt Company Ltd nor the names of its
|
||||
** contributors may be used to endorse or promote products derived
|
||||
** from this software without specific prior written permission.
|
||||
**
|
||||
**
|
||||
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
|
||||
**
|
||||
** $QT_END_LICENSE$
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#include <QCoreApplication>
|
||||
#include <QTextStream>
|
||||
|
||||
#include "game.h"
|
||||
//! [0]
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
)" "\t" R"(QCoreApplication app(argc, argv);
|
||||
QStringList args = QCoreApplication::arguments();
|
||||
bool newGame = true;
|
||||
if (args.length() > 1)
|
||||
newGame = (args[1].toLower() != QStringLiteral("load"));
|
||||
bool json = true;
|
||||
if (args.length() > 2)
|
||||
json = (args[2].toLower() != QStringLiteral("binary"));
|
||||
|
||||
Game game;
|
||||
if (newGame)
|
||||
game.newGame();
|
||||
else if (!game.loadGame(json ? Game::Json : Game::Binary))
|
||||
return 1;
|
||||
// Game is played; changes are made...
|
||||
//! [0]
|
||||
//! [1]
|
||||
QTextStream(stdout) << "Game ended in the following state:\n";
|
||||
game.print();
|
||||
if (!game.saveGame(json ? Game::Json : Game::Binary))
|
||||
return 1;
|
||||
|
||||
return 0;
|
||||
}
|
||||
//! [1]
|
||||
|
||||
)";
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
// Creating application
|
||||
QApplication a(argc, argv);
|
||||
|
||||
// Creating main window
|
||||
MainWindow w;
|
||||
w.show();
|
||||
|
||||
return QApplication::exec();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue