Init commit
This commit is contained in:
+2
-2
@@ -18,7 +18,7 @@ CMakeLocalPath.cmake
|
|||||||
# Compiled Dynamic libraries
|
# Compiled Dynamic libraries
|
||||||
*.so
|
*.so
|
||||||
*.dylib
|
*.dylib
|
||||||
*.dll
|
#*.dll
|
||||||
|
|
||||||
# Fortran module files
|
# Fortran module files
|
||||||
*.mod
|
*.mod
|
||||||
@@ -28,7 +28,7 @@ CMakeLocalPath.cmake
|
|||||||
*.lai
|
*.lai
|
||||||
*.la
|
*.la
|
||||||
*.a
|
*.a
|
||||||
*.lib
|
#*.lib
|
||||||
|
|
||||||
# Executables
|
# Executables
|
||||||
*.exe
|
*.exe
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,69 +0,0 @@
|
|||||||
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 "plugins")
|
|
||||||
endif()
|
|
||||||
if(NOT QT_DEPLOY_QML_DIR)
|
|
||||||
set(QT_DEPLOY_QML_DIR "qml")
|
|
||||||
endif()
|
|
||||||
if(NOT QT_DEPLOY_TRANSLATIONS_DIR)
|
|
||||||
set(QT_DEPLOY_TRANSLATIONS_DIR "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 "")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# These are internal implementation details. They may be removed at any time.
|
|
||||||
set(__QT_DEPLOY_SYSTEM_NAME "Windows")
|
|
||||||
set(__QT_DEPLOY_IS_SHARED_LIBS_BUILD "ON")
|
|
||||||
set(__QT_DEPLOY_TOOL "C:/Qt/6.8.1/msvc2022_64/bin/windeployqt.exe")
|
|
||||||
set(__QT_DEPLOY_IMPL_DIR "I:/source/render/build/.qt")
|
|
||||||
set(__QT_DEPLOY_VERBOSE "")
|
|
||||||
set(__QT_CMAKE_EXPORT_NAMESPACE "Qt6")
|
|
||||||
set(__QT_DEPLOY_GENERATOR_IS_MULTI_CONFIG "1")
|
|
||||||
set(__QT_DEPLOY_ACTIVE_CONFIG "Debug")
|
|
||||||
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 "C:/Qt/6.8.1/msvc2022_64")
|
|
||||||
set(__QT_DEPLOY_QT_INSTALL_BINS "bin")
|
|
||||||
set(__QT_DEPLOY_QT_INSTALL_DATA ".")
|
|
||||||
set(__QT_DEPLOY_QT_INSTALL_LIBEXECS "bin")
|
|
||||||
set(__QT_DEPLOY_QT_INSTALL_PLUGINS "plugins")
|
|
||||||
set(__QT_DEPLOY_QT_INSTALL_TRANSLATIONS "translations")
|
|
||||||
set(__QT_DEPLOY_TARGET_QT_PATHS_PATH "C:/Qt/6.8.1/msvc2022_64/bin/qtpaths6.exe")
|
|
||||||
set(__QT_DEPLOY_PLUGINS "")
|
|
||||||
set(__QT_DEPLOY_MUST_ADJUST_PLUGINS_RPATH "")
|
|
||||||
set(__QT_DEPLOY_USE_PATCHELF "")
|
|
||||||
set(__QT_DEPLOY_PATCHELF_EXECUTABLE "")
|
|
||||||
set(__QT_DEPLOY_QT_IS_MULTI_CONFIG_BUILD_WITH_DEBUG "TRUE")
|
|
||||||
set(__QT_DEPLOY_QT_DEBUG_POSTFIX "d")
|
|
||||||
|
|
||||||
# Define the CMake commands to be made available during deployment.
|
|
||||||
set(__qt_deploy_support_files
|
|
||||||
"I:/source/render/build/.qt/QtDeployTargets-Debug.cmake"
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/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)
|
|
||||||
@@ -1,69 +0,0 @@
|
|||||||
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 "plugins")
|
|
||||||
endif()
|
|
||||||
if(NOT QT_DEPLOY_QML_DIR)
|
|
||||||
set(QT_DEPLOY_QML_DIR "qml")
|
|
||||||
endif()
|
|
||||||
if(NOT QT_DEPLOY_TRANSLATIONS_DIR)
|
|
||||||
set(QT_DEPLOY_TRANSLATIONS_DIR "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 "")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# These are internal implementation details. They may be removed at any time.
|
|
||||||
set(__QT_DEPLOY_SYSTEM_NAME "Windows")
|
|
||||||
set(__QT_DEPLOY_IS_SHARED_LIBS_BUILD "ON")
|
|
||||||
set(__QT_DEPLOY_TOOL "C:/Qt/6.8.1/msvc2022_64/bin/windeployqt.exe")
|
|
||||||
set(__QT_DEPLOY_IMPL_DIR "I:/source/render/build/.qt")
|
|
||||||
set(__QT_DEPLOY_VERBOSE "")
|
|
||||||
set(__QT_CMAKE_EXPORT_NAMESPACE "Qt6")
|
|
||||||
set(__QT_DEPLOY_GENERATOR_IS_MULTI_CONFIG "1")
|
|
||||||
set(__QT_DEPLOY_ACTIVE_CONFIG "MinSizeRel")
|
|
||||||
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 "C:/Qt/6.8.1/msvc2022_64")
|
|
||||||
set(__QT_DEPLOY_QT_INSTALL_BINS "bin")
|
|
||||||
set(__QT_DEPLOY_QT_INSTALL_DATA ".")
|
|
||||||
set(__QT_DEPLOY_QT_INSTALL_LIBEXECS "bin")
|
|
||||||
set(__QT_DEPLOY_QT_INSTALL_PLUGINS "plugins")
|
|
||||||
set(__QT_DEPLOY_QT_INSTALL_TRANSLATIONS "translations")
|
|
||||||
set(__QT_DEPLOY_TARGET_QT_PATHS_PATH "C:/Qt/6.8.1/msvc2022_64/bin/qtpaths6.exe")
|
|
||||||
set(__QT_DEPLOY_PLUGINS "")
|
|
||||||
set(__QT_DEPLOY_MUST_ADJUST_PLUGINS_RPATH "")
|
|
||||||
set(__QT_DEPLOY_USE_PATCHELF "")
|
|
||||||
set(__QT_DEPLOY_PATCHELF_EXECUTABLE "")
|
|
||||||
set(__QT_DEPLOY_QT_IS_MULTI_CONFIG_BUILD_WITH_DEBUG "TRUE")
|
|
||||||
set(__QT_DEPLOY_QT_DEBUG_POSTFIX "d")
|
|
||||||
|
|
||||||
# Define the CMake commands to be made available during deployment.
|
|
||||||
set(__qt_deploy_support_files
|
|
||||||
"I:/source/render/build/.qt/QtDeployTargets-MinSizeRel.cmake"
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/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)
|
|
||||||
@@ -1,69 +0,0 @@
|
|||||||
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 "plugins")
|
|
||||||
endif()
|
|
||||||
if(NOT QT_DEPLOY_QML_DIR)
|
|
||||||
set(QT_DEPLOY_QML_DIR "qml")
|
|
||||||
endif()
|
|
||||||
if(NOT QT_DEPLOY_TRANSLATIONS_DIR)
|
|
||||||
set(QT_DEPLOY_TRANSLATIONS_DIR "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 "")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# These are internal implementation details. They may be removed at any time.
|
|
||||||
set(__QT_DEPLOY_SYSTEM_NAME "Windows")
|
|
||||||
set(__QT_DEPLOY_IS_SHARED_LIBS_BUILD "ON")
|
|
||||||
set(__QT_DEPLOY_TOOL "C:/Qt/6.8.1/msvc2022_64/bin/windeployqt.exe")
|
|
||||||
set(__QT_DEPLOY_IMPL_DIR "I:/source/render/build/.qt")
|
|
||||||
set(__QT_DEPLOY_VERBOSE "")
|
|
||||||
set(__QT_CMAKE_EXPORT_NAMESPACE "Qt6")
|
|
||||||
set(__QT_DEPLOY_GENERATOR_IS_MULTI_CONFIG "1")
|
|
||||||
set(__QT_DEPLOY_ACTIVE_CONFIG "RelWithDebInfo")
|
|
||||||
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 "C:/Qt/6.8.1/msvc2022_64")
|
|
||||||
set(__QT_DEPLOY_QT_INSTALL_BINS "bin")
|
|
||||||
set(__QT_DEPLOY_QT_INSTALL_DATA ".")
|
|
||||||
set(__QT_DEPLOY_QT_INSTALL_LIBEXECS "bin")
|
|
||||||
set(__QT_DEPLOY_QT_INSTALL_PLUGINS "plugins")
|
|
||||||
set(__QT_DEPLOY_QT_INSTALL_TRANSLATIONS "translations")
|
|
||||||
set(__QT_DEPLOY_TARGET_QT_PATHS_PATH "C:/Qt/6.8.1/msvc2022_64/bin/qtpaths6.exe")
|
|
||||||
set(__QT_DEPLOY_PLUGINS "")
|
|
||||||
set(__QT_DEPLOY_MUST_ADJUST_PLUGINS_RPATH "")
|
|
||||||
set(__QT_DEPLOY_USE_PATCHELF "")
|
|
||||||
set(__QT_DEPLOY_PATCHELF_EXECUTABLE "")
|
|
||||||
set(__QT_DEPLOY_QT_IS_MULTI_CONFIG_BUILD_WITH_DEBUG "TRUE")
|
|
||||||
set(__QT_DEPLOY_QT_DEBUG_POSTFIX "d")
|
|
||||||
|
|
||||||
# Define the CMake commands to be made available during deployment.
|
|
||||||
set(__qt_deploy_support_files
|
|
||||||
"I:/source/render/build/.qt/QtDeployTargets-RelWithDebInfo.cmake"
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/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)
|
|
||||||
@@ -1,69 +0,0 @@
|
|||||||
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 "plugins")
|
|
||||||
endif()
|
|
||||||
if(NOT QT_DEPLOY_QML_DIR)
|
|
||||||
set(QT_DEPLOY_QML_DIR "qml")
|
|
||||||
endif()
|
|
||||||
if(NOT QT_DEPLOY_TRANSLATIONS_DIR)
|
|
||||||
set(QT_DEPLOY_TRANSLATIONS_DIR "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 "")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# These are internal implementation details. They may be removed at any time.
|
|
||||||
set(__QT_DEPLOY_SYSTEM_NAME "Windows")
|
|
||||||
set(__QT_DEPLOY_IS_SHARED_LIBS_BUILD "ON")
|
|
||||||
set(__QT_DEPLOY_TOOL "C:/Qt/6.8.1/msvc2022_64/bin/windeployqt.exe")
|
|
||||||
set(__QT_DEPLOY_IMPL_DIR "I:/source/render/build/.qt")
|
|
||||||
set(__QT_DEPLOY_VERBOSE "")
|
|
||||||
set(__QT_CMAKE_EXPORT_NAMESPACE "Qt6")
|
|
||||||
set(__QT_DEPLOY_GENERATOR_IS_MULTI_CONFIG "1")
|
|
||||||
set(__QT_DEPLOY_ACTIVE_CONFIG "Release")
|
|
||||||
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 "C:/Qt/6.8.1/msvc2022_64")
|
|
||||||
set(__QT_DEPLOY_QT_INSTALL_BINS "bin")
|
|
||||||
set(__QT_DEPLOY_QT_INSTALL_DATA ".")
|
|
||||||
set(__QT_DEPLOY_QT_INSTALL_LIBEXECS "bin")
|
|
||||||
set(__QT_DEPLOY_QT_INSTALL_PLUGINS "plugins")
|
|
||||||
set(__QT_DEPLOY_QT_INSTALL_TRANSLATIONS "translations")
|
|
||||||
set(__QT_DEPLOY_TARGET_QT_PATHS_PATH "C:/Qt/6.8.1/msvc2022_64/bin/qtpaths6.exe")
|
|
||||||
set(__QT_DEPLOY_PLUGINS "")
|
|
||||||
set(__QT_DEPLOY_MUST_ADJUST_PLUGINS_RPATH "")
|
|
||||||
set(__QT_DEPLOY_USE_PATCHELF "")
|
|
||||||
set(__QT_DEPLOY_PATCHELF_EXECUTABLE "")
|
|
||||||
set(__QT_DEPLOY_QT_IS_MULTI_CONFIG_BUILD_WITH_DEBUG "TRUE")
|
|
||||||
set(__QT_DEPLOY_QT_DEBUG_POSTFIX "d")
|
|
||||||
|
|
||||||
# Define the CMake commands to be made available during deployment.
|
|
||||||
set(__qt_deploy_support_files
|
|
||||||
"I:/source/render/build/.qt/QtDeployTargets-Release.cmake"
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/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)
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
set(__QT_DEPLOY_TARGET_tool_FILE I:/source/render/build/tool/Debug/tool.lib)
|
|
||||||
set(__QT_DEPLOY_TARGET_tool_TYPE STATIC_LIBRARY)
|
|
||||||
set(__QT_DEPLOY_TARGET_zassimp_FILE I:/source/render/build/zassimp/Debug/zassimp.lib)
|
|
||||||
set(__QT_DEPLOY_TARGET_zassimp_TYPE STATIC_LIBRARY)
|
|
||||||
set(__QT_DEPLOY_TARGET_render_FILE I:/source/render/build/bin/Debug/render.dll)
|
|
||||||
set(__QT_DEPLOY_TARGET_render_TYPE SHARED_LIBRARY)
|
|
||||||
set(__QT_DEPLOY_TARGET_render_RUNTIME_DLLS )
|
|
||||||
set(__QT_DEPLOY_TARGET_console_FILE I:/source/render/build/bin/Debug/console.exe)
|
|
||||||
set(__QT_DEPLOY_TARGET_console_TYPE EXECUTABLE)
|
|
||||||
set(__QT_DEPLOY_TARGET_console_RUNTIME_DLLS I:/source/render/build/bin/Debug/render.dll;I:/source/render/3rd/assimp/Debug/bin/assimp-vc143-mtd.dll)
|
|
||||||
set(__QT_DEPLOY_TARGET_app_FILE I:/source/render/build/bin/Debug/app.exe)
|
|
||||||
set(__QT_DEPLOY_TARGET_app_TYPE EXECUTABLE)
|
|
||||||
set(__QT_DEPLOY_TARGET_app_RUNTIME_DLLS C:/Qt/6.8.1/msvc2022_64/bin/Qt6Widgetsd.dll;I:/source/render/build/bin/Debug/render.dll;C:/Qt/6.8.1/msvc2022_64/bin/Qt6Guid.dll;C:/Qt/6.8.1/msvc2022_64/bin/Qt6Cored.dll;I:/source/render/3rd/assimp/Debug/bin/assimp-vc143-mtd.dll)
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
set(__QT_DEPLOY_TARGET_tool_FILE I:/source/render/build/tool/MinSizeRel/tool.lib)
|
|
||||||
set(__QT_DEPLOY_TARGET_tool_TYPE STATIC_LIBRARY)
|
|
||||||
set(__QT_DEPLOY_TARGET_zassimp_FILE I:/source/render/build/zassimp/MinSizeRel/zassimp.lib)
|
|
||||||
set(__QT_DEPLOY_TARGET_zassimp_TYPE STATIC_LIBRARY)
|
|
||||||
set(__QT_DEPLOY_TARGET_render_FILE I:/source/render/build/bin/MinSizeRel/render.dll)
|
|
||||||
set(__QT_DEPLOY_TARGET_render_TYPE SHARED_LIBRARY)
|
|
||||||
set(__QT_DEPLOY_TARGET_render_RUNTIME_DLLS )
|
|
||||||
set(__QT_DEPLOY_TARGET_console_FILE I:/source/render/build/bin/MinSizeRel/console.exe)
|
|
||||||
set(__QT_DEPLOY_TARGET_console_TYPE EXECUTABLE)
|
|
||||||
set(__QT_DEPLOY_TARGET_console_RUNTIME_DLLS I:/source/render/build/bin/MinSizeRel/render.dll;I:/source/render/3rd/assimp/Release/bin/assimp-vc143-mt.dll)
|
|
||||||
set(__QT_DEPLOY_TARGET_app_FILE I:/source/render/build/bin/MinSizeRel/app.exe)
|
|
||||||
set(__QT_DEPLOY_TARGET_app_TYPE EXECUTABLE)
|
|
||||||
set(__QT_DEPLOY_TARGET_app_RUNTIME_DLLS C:/Qt/6.8.1/msvc2022_64/bin/Qt6Widgets.dll;I:/source/render/build/bin/MinSizeRel/render.dll;C:/Qt/6.8.1/msvc2022_64/bin/Qt6Gui.dll;C:/Qt/6.8.1/msvc2022_64/bin/Qt6Core.dll;I:/source/render/3rd/assimp/Release/bin/assimp-vc143-mt.dll)
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
set(__QT_DEPLOY_TARGET_tool_FILE I:/source/render/build/tool/RelWithDebInfo/tool.lib)
|
|
||||||
set(__QT_DEPLOY_TARGET_tool_TYPE STATIC_LIBRARY)
|
|
||||||
set(__QT_DEPLOY_TARGET_zassimp_FILE I:/source/render/build/zassimp/RelWithDebInfo/zassimp.lib)
|
|
||||||
set(__QT_DEPLOY_TARGET_zassimp_TYPE STATIC_LIBRARY)
|
|
||||||
set(__QT_DEPLOY_TARGET_render_FILE I:/source/render/build/bin/RelWithDebInfo/render.dll)
|
|
||||||
set(__QT_DEPLOY_TARGET_render_TYPE SHARED_LIBRARY)
|
|
||||||
set(__QT_DEPLOY_TARGET_render_RUNTIME_DLLS )
|
|
||||||
set(__QT_DEPLOY_TARGET_console_FILE I:/source/render/build/bin/RelWithDebInfo/console.exe)
|
|
||||||
set(__QT_DEPLOY_TARGET_console_TYPE EXECUTABLE)
|
|
||||||
set(__QT_DEPLOY_TARGET_console_RUNTIME_DLLS I:/source/render/build/bin/RelWithDebInfo/render.dll;I:/source/render/3rd/assimp/Release/bin/assimp-vc143-mt.dll)
|
|
||||||
set(__QT_DEPLOY_TARGET_app_FILE I:/source/render/build/bin/RelWithDebInfo/app.exe)
|
|
||||||
set(__QT_DEPLOY_TARGET_app_TYPE EXECUTABLE)
|
|
||||||
set(__QT_DEPLOY_TARGET_app_RUNTIME_DLLS C:/Qt/6.8.1/msvc2022_64/bin/Qt6Widgets.dll;I:/source/render/build/bin/RelWithDebInfo/render.dll;C:/Qt/6.8.1/msvc2022_64/bin/Qt6Gui.dll;C:/Qt/6.8.1/msvc2022_64/bin/Qt6Core.dll;I:/source/render/3rd/assimp/Release/bin/assimp-vc143-mt.dll)
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
set(__QT_DEPLOY_TARGET_tool_FILE I:/source/render/build/tool/Release/tool.lib)
|
|
||||||
set(__QT_DEPLOY_TARGET_tool_TYPE STATIC_LIBRARY)
|
|
||||||
set(__QT_DEPLOY_TARGET_zassimp_FILE I:/source/render/build/zassimp/Release/zassimp.lib)
|
|
||||||
set(__QT_DEPLOY_TARGET_zassimp_TYPE STATIC_LIBRARY)
|
|
||||||
set(__QT_DEPLOY_TARGET_render_FILE I:/source/render/build/bin/Release/render.dll)
|
|
||||||
set(__QT_DEPLOY_TARGET_render_TYPE SHARED_LIBRARY)
|
|
||||||
set(__QT_DEPLOY_TARGET_render_RUNTIME_DLLS )
|
|
||||||
set(__QT_DEPLOY_TARGET_console_FILE I:/source/render/build/bin/Release/console.exe)
|
|
||||||
set(__QT_DEPLOY_TARGET_console_TYPE EXECUTABLE)
|
|
||||||
set(__QT_DEPLOY_TARGET_console_RUNTIME_DLLS I:/source/render/build/bin/Release/render.dll;I:/source/render/3rd/assimp/Release/bin/assimp-vc143-mt.dll)
|
|
||||||
set(__QT_DEPLOY_TARGET_app_FILE I:/source/render/build/bin/Release/app.exe)
|
|
||||||
set(__QT_DEPLOY_TARGET_app_TYPE EXECUTABLE)
|
|
||||||
set(__QT_DEPLOY_TARGET_app_RUNTIME_DLLS C:/Qt/6.8.1/msvc2022_64/bin/Qt6Widgets.dll;I:/source/render/build/bin/Release/render.dll;C:/Qt/6.8.1/msvc2022_64/bin/Qt6Gui.dll;C:/Qt/6.8.1/msvc2022_64/bin/Qt6Core.dll;I:/source/render/3rd/assimp/Release/bin/assimp-vc143-mt.dll)
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
# CMake generation timestamp file for this directory.
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
# CMake generation dependency list for this directory.
|
|
||||||
I:/source/render/3rd/CMakeLists.txt
|
|
||||||
I:/source/render/build/CMakeFiles/cmake.verify_globs
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
# Install script for directory: I:/source/render/3rd
|
|
||||||
|
|
||||||
# Set the install prefix
|
|
||||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
|
||||||
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/render")
|
|
||||||
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 "Release")
|
|
||||||
endif()
|
|
||||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Set the component getting installed.
|
|
||||||
if(NOT CMAKE_INSTALL_COMPONENT)
|
|
||||||
if(COMPONENT)
|
|
||||||
message(STATUS "Install component: \"${COMPONENT}\"")
|
|
||||||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
|
||||||
else()
|
|
||||||
set(CMAKE_INSTALL_COMPONENT)
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Is this installation the result of a crosscompile?
|
|
||||||
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
|
||||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
|
||||||
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
|
||||||
if(CMAKE_INSTALL_LOCAL_ONLY)
|
|
||||||
file(WRITE "I:/source/render/build/3rd/install_local_manifest.txt"
|
|
||||||
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
|
||||||
endif()
|
|
||||||
File diff suppressed because one or more lines are too long
@@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="17.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup>
|
|
||||||
<CustomBuild Include="I:\source\render\CMakeLists.txt" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,84 +0,0 @@
|
|||||||
set(CMAKE_C_COMPILER "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe")
|
|
||||||
set(CMAKE_C_COMPILER_ARG1 "")
|
|
||||||
set(CMAKE_C_COMPILER_ID "MSVC")
|
|
||||||
set(CMAKE_C_COMPILER_VERSION "19.44.35213.0")
|
|
||||||
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
|
|
||||||
set(CMAKE_C_COMPILER_WRAPPER "")
|
|
||||||
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "90")
|
|
||||||
set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "OFF")
|
|
||||||
set(CMAKE_C_STANDARD_LATEST "17")
|
|
||||||
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")
|
|
||||||
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 "")
|
|
||||||
|
|
||||||
set(CMAKE_C_PLATFORM_ID "Windows")
|
|
||||||
set(CMAKE_C_SIMULATE_ID "")
|
|
||||||
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "MSVC")
|
|
||||||
set(CMAKE_C_COMPILER_APPLE_SYSROOT "")
|
|
||||||
set(CMAKE_C_SIMULATE_VERSION "")
|
|
||||||
set(CMAKE_C_COMPILER_ARCHITECTURE_ID "x64")
|
|
||||||
|
|
||||||
set(MSVC_C_ARCHITECTURE_ID x64)
|
|
||||||
|
|
||||||
set(CMAKE_AR "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/lib.exe")
|
|
||||||
set(CMAKE_C_COMPILER_AR "")
|
|
||||||
set(CMAKE_RANLIB ":")
|
|
||||||
set(CMAKE_C_COMPILER_RANLIB "")
|
|
||||||
set(CMAKE_LINKER "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/link.exe")
|
|
||||||
set(CMAKE_LINKER_LINK "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/link.exe")
|
|
||||||
set(CMAKE_LINKER_LLD "lld-link")
|
|
||||||
set(CMAKE_C_COMPILER_LINKER "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.44.35207/bin/HostX64/x64/link.exe")
|
|
||||||
set(CMAKE_C_COMPILER_LINKER_ID "MSVC")
|
|
||||||
set(CMAKE_C_COMPILER_LINKER_VERSION 14.44.35213.0)
|
|
||||||
set(CMAKE_C_COMPILER_LINKER_FRONTEND_VARIANT MSVC)
|
|
||||||
set(CMAKE_MT "CMAKE_MT-NOTFOUND")
|
|
||||||
set(CMAKE_TAPI "")
|
|
||||||
set(CMAKE_COMPILER_IS_GNUCC )
|
|
||||||
set(CMAKE_C_COMPILER_LOADED 1)
|
|
||||||
set(CMAKE_C_COMPILER_WORKS TRUE)
|
|
||||||
set(CMAKE_C_ABI_COMPILED TRUE)
|
|
||||||
|
|
||||||
set(CMAKE_C_COMPILER_ENV_VAR "CC")
|
|
||||||
|
|
||||||
set(CMAKE_C_COMPILER_ID_RUN 1)
|
|
||||||
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
|
|
||||||
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
|
||||||
set(CMAKE_C_LINKER_PREFERENCE 10)
|
|
||||||
set(CMAKE_C_LINKER_DEPFILE_SUPPORTED )
|
|
||||||
set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED )
|
|
||||||
set(CMAKE_C_LINKER_PUSHPOP_STATE_SUPPORTED )
|
|
||||||
|
|
||||||
# Save compiler ABI information.
|
|
||||||
set(CMAKE_C_SIZEOF_DATA_PTR "8")
|
|
||||||
set(CMAKE_C_COMPILER_ABI "")
|
|
||||||
set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN")
|
|
||||||
set(CMAKE_C_LIBRARY_ARCHITECTURE "")
|
|
||||||
|
|
||||||
if(CMAKE_C_SIZEOF_DATA_PTR)
|
|
||||||
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(CMAKE_C_COMPILER_ABI)
|
|
||||||
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(CMAKE_C_LIBRARY_ARCHITECTURE)
|
|
||||||
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
|
|
||||||
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
|
|
||||||
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "")
|
|
||||||
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "")
|
|
||||||
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "")
|
|
||||||
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
|
||||||
@@ -1,104 +0,0 @@
|
|||||||
set(CMAKE_CXX_COMPILER "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/cl.exe")
|
|
||||||
set(CMAKE_CXX_COMPILER_ARG1 "")
|
|
||||||
set(CMAKE_CXX_COMPILER_ID "MSVC")
|
|
||||||
set(CMAKE_CXX_COMPILER_VERSION "19.44.35213.0")
|
|
||||||
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
|
|
||||||
set(CMAKE_CXX_COMPILER_WRAPPER "")
|
|
||||||
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14")
|
|
||||||
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "OFF")
|
|
||||||
set(CMAKE_CXX_STANDARD_LATEST "23")
|
|
||||||
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23")
|
|
||||||
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
|
|
||||||
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
|
|
||||||
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
|
|
||||||
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
|
|
||||||
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
|
|
||||||
set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23")
|
|
||||||
set(CMAKE_CXX26_COMPILE_FEATURES "")
|
|
||||||
|
|
||||||
set(CMAKE_CXX_PLATFORM_ID "Windows")
|
|
||||||
set(CMAKE_CXX_SIMULATE_ID "")
|
|
||||||
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "MSVC")
|
|
||||||
set(CMAKE_CXX_COMPILER_APPLE_SYSROOT "")
|
|
||||||
set(CMAKE_CXX_SIMULATE_VERSION "")
|
|
||||||
set(CMAKE_CXX_COMPILER_ARCHITECTURE_ID "x64")
|
|
||||||
|
|
||||||
set(MSVC_CXX_ARCHITECTURE_ID x64)
|
|
||||||
|
|
||||||
set(CMAKE_AR "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/lib.exe")
|
|
||||||
set(CMAKE_CXX_COMPILER_AR "")
|
|
||||||
set(CMAKE_RANLIB ":")
|
|
||||||
set(CMAKE_CXX_COMPILER_RANLIB "")
|
|
||||||
set(CMAKE_LINKER "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/link.exe")
|
|
||||||
set(CMAKE_LINKER_LINK "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.44.35207/bin/Hostx64/x64/link.exe")
|
|
||||||
set(CMAKE_LINKER_LLD "lld-link")
|
|
||||||
set(CMAKE_CXX_COMPILER_LINKER "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.44.35207/bin/HostX64/x64/link.exe")
|
|
||||||
set(CMAKE_CXX_COMPILER_LINKER_ID "MSVC")
|
|
||||||
set(CMAKE_CXX_COMPILER_LINKER_VERSION 14.44.35213.0)
|
|
||||||
set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT MSVC)
|
|
||||||
set(CMAKE_MT "CMAKE_MT-NOTFOUND")
|
|
||||||
set(CMAKE_TAPI "")
|
|
||||||
set(CMAKE_COMPILER_IS_GNUCXX )
|
|
||||||
set(CMAKE_CXX_COMPILER_LOADED 1)
|
|
||||||
set(CMAKE_CXX_COMPILER_WORKS TRUE)
|
|
||||||
set(CMAKE_CXX_ABI_COMPILED TRUE)
|
|
||||||
|
|
||||||
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
|
|
||||||
|
|
||||||
set(CMAKE_CXX_COMPILER_ID_RUN 1)
|
|
||||||
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m)
|
|
||||||
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
|
||||||
|
|
||||||
foreach (lang IN ITEMS C OBJC OBJCXX)
|
|
||||||
if (CMAKE_${lang}_COMPILER_ID_RUN)
|
|
||||||
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
|
|
||||||
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
|
|
||||||
endforeach()
|
|
||||||
endif()
|
|
||||||
endforeach()
|
|
||||||
|
|
||||||
set(CMAKE_CXX_LINKER_PREFERENCE 30)
|
|
||||||
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
|
|
||||||
set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED )
|
|
||||||
set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED )
|
|
||||||
set(CMAKE_CXX_LINKER_PUSHPOP_STATE_SUPPORTED )
|
|
||||||
|
|
||||||
# Save compiler ABI information.
|
|
||||||
set(CMAKE_CXX_SIZEOF_DATA_PTR "8")
|
|
||||||
set(CMAKE_CXX_COMPILER_ABI "")
|
|
||||||
set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN")
|
|
||||||
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "")
|
|
||||||
|
|
||||||
if(CMAKE_CXX_SIZEOF_DATA_PTR)
|
|
||||||
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(CMAKE_CXX_COMPILER_ABI)
|
|
||||||
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
|
|
||||||
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
|
|
||||||
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
|
|
||||||
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "")
|
|
||||||
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "")
|
|
||||||
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "")
|
|
||||||
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
|
||||||
set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "")
|
|
||||||
|
|
||||||
set(CMAKE_CXX_COMPILER_IMPORT_STD "")
|
|
||||||
### Imported target for C++23 standard library
|
|
||||||
set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Unsupported generator: Visual Studio 17 2022")
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,6 +0,0 @@
|
|||||||
set(CMAKE_RC_COMPILER "rc")
|
|
||||||
set(CMAKE_RC_COMPILER_ARG1 "")
|
|
||||||
set(CMAKE_RC_COMPILER_LOADED 1)
|
|
||||||
set(CMAKE_RC_SOURCE_FILE_EXTENSIONS rc;RC)
|
|
||||||
set(CMAKE_RC_OUTPUT_EXTENSION .res)
|
|
||||||
set(CMAKE_RC_COMPILER_ENV_VAR "RC")
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
set(CMAKE_HOST_SYSTEM "Windows-10.0.19045")
|
|
||||||
set(CMAKE_HOST_SYSTEM_NAME "Windows")
|
|
||||||
set(CMAKE_HOST_SYSTEM_VERSION "10.0.19045")
|
|
||||||
set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64")
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
set(CMAKE_SYSTEM "Windows-10.0.19045")
|
|
||||||
set(CMAKE_SYSTEM_NAME "Windows")
|
|
||||||
set(CMAKE_SYSTEM_VERSION "10.0.19045")
|
|
||||||
set(CMAKE_SYSTEM_PROCESSOR "AMD64")
|
|
||||||
|
|
||||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
|
||||||
|
|
||||||
set(CMAKE_SYSTEM_LOADED 1)
|
|
||||||
@@ -1,934 +0,0 @@
|
|||||||
#ifdef __cplusplus
|
|
||||||
# error "A C++ compiler has been selected for C."
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(__18CXX)
|
|
||||||
# define ID_VOID_MAIN
|
|
||||||
#endif
|
|
||||||
#if defined(__CLASSIC_C__)
|
|
||||||
/* cv-qualifiers did not exist in K&R C */
|
|
||||||
# define const
|
|
||||||
# define volatile
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if !defined(__has_include)
|
|
||||||
/* If the compiler does not have __has_include, pretend the answer is
|
|
||||||
always no. */
|
|
||||||
# define __has_include(x) 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
/* Version number components: V=Version, R=Revision, P=Patch
|
|
||||||
Version date components: YYYY=Year, MM=Month, DD=Day */
|
|
||||||
|
|
||||||
#if defined(__INTEL_COMPILER) || defined(__ICC)
|
|
||||||
# define COMPILER_ID "Intel"
|
|
||||||
# if defined(_MSC_VER)
|
|
||||||
# define SIMULATE_ID "MSVC"
|
|
||||||
# endif
|
|
||||||
# if defined(__GNUC__)
|
|
||||||
# define SIMULATE_ID "GNU"
|
|
||||||
# endif
|
|
||||||
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
|
|
||||||
except that a few beta releases use the old format with V=2021. */
|
|
||||||
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
|
|
||||||
# if defined(__INTEL_COMPILER_UPDATE)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
|
|
||||||
# else
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
|
|
||||||
# endif
|
|
||||||
# else
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
|
|
||||||
/* The third version component from --version is an update index,
|
|
||||||
but no macro is provided for it. */
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(0)
|
|
||||||
# endif
|
|
||||||
# if defined(__INTEL_COMPILER_BUILD_DATE)
|
|
||||||
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
|
|
||||||
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
|
|
||||||
# endif
|
|
||||||
# if defined(_MSC_VER)
|
|
||||||
/* _MSC_VER = VVRR */
|
|
||||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
|
||||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
|
||||||
# endif
|
|
||||||
# if defined(__GNUC__)
|
|
||||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
|
||||||
# elif defined(__GNUG__)
|
|
||||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
|
||||||
# endif
|
|
||||||
# if defined(__GNUC_MINOR__)
|
|
||||||
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
|
||||||
# endif
|
|
||||||
# if defined(__GNUC_PATCHLEVEL__)
|
|
||||||
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
|
|
||||||
# define COMPILER_ID "IntelLLVM"
|
|
||||||
#if defined(_MSC_VER)
|
|
||||||
# define SIMULATE_ID "MSVC"
|
|
||||||
#endif
|
|
||||||
#if defined(__GNUC__)
|
|
||||||
# define SIMULATE_ID "GNU"
|
|
||||||
#endif
|
|
||||||
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
|
|
||||||
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
|
|
||||||
* VVVV is no smaller than the current year when a version is released.
|
|
||||||
*/
|
|
||||||
#if __INTEL_LLVM_COMPILER < 1000000L
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
|
|
||||||
#else
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
|
|
||||||
#endif
|
|
||||||
#if defined(_MSC_VER)
|
|
||||||
/* _MSC_VER = VVRR */
|
|
||||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
|
||||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
|
||||||
#endif
|
|
||||||
#if defined(__GNUC__)
|
|
||||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
|
||||||
#elif defined(__GNUG__)
|
|
||||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
|
||||||
#endif
|
|
||||||
#if defined(__GNUC_MINOR__)
|
|
||||||
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
|
||||||
#endif
|
|
||||||
#if defined(__GNUC_PATCHLEVEL__)
|
|
||||||
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#elif defined(__PATHCC__)
|
|
||||||
# define COMPILER_ID "PathScale"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
|
|
||||||
# if defined(__PATHCC_PATCHLEVEL__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
|
|
||||||
# define COMPILER_ID "Embarcadero"
|
|
||||||
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
|
|
||||||
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
|
|
||||||
|
|
||||||
#elif defined(__BORLANDC__)
|
|
||||||
# define COMPILER_ID "Borland"
|
|
||||||
/* __BORLANDC__ = 0xVRR */
|
|
||||||
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
|
|
||||||
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
|
|
||||||
|
|
||||||
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
|
|
||||||
# define COMPILER_ID "Watcom"
|
|
||||||
/* __WATCOMC__ = VVRR */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
|
||||||
# if (__WATCOMC__ % 10) > 0
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__WATCOMC__)
|
|
||||||
# define COMPILER_ID "OpenWatcom"
|
|
||||||
/* __WATCOMC__ = VVRP + 1100 */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
|
||||||
# if (__WATCOMC__ % 10) > 0
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__SUNPRO_C)
|
|
||||||
# define COMPILER_ID "SunPro"
|
|
||||||
# if __SUNPRO_C >= 0x5100
|
|
||||||
/* __SUNPRO_C = 0xVRRP */
|
|
||||||
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
|
|
||||||
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
|
|
||||||
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
|
|
||||||
# else
|
|
||||||
/* __SUNPRO_CC = 0xVRP */
|
|
||||||
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
|
|
||||||
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
|
|
||||||
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__HP_cc)
|
|
||||||
# define COMPILER_ID "HP"
|
|
||||||
/* __HP_cc = VVRRPP */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
|
|
||||||
|
|
||||||
#elif defined(__DECC)
|
|
||||||
# define COMPILER_ID "Compaq"
|
|
||||||
/* __DECC_VER = VVRRTPPPP */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
|
|
||||||
|
|
||||||
#elif defined(__IBMC__) && defined(__COMPILER_VER__)
|
|
||||||
# define COMPILER_ID "zOS"
|
|
||||||
/* __IBMC__ = VRP */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
|
||||||
|
|
||||||
#elif defined(__open_xl__) && defined(__clang__)
|
|
||||||
# define COMPILER_ID "IBMClang"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
|
|
||||||
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
|
|
||||||
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
|
||||||
|
|
||||||
|
|
||||||
#elif defined(__ibmxl__) && defined(__clang__)
|
|
||||||
# define COMPILER_ID "XLClang"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
|
||||||
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
|
||||||
|
|
||||||
|
|
||||||
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
|
|
||||||
# define COMPILER_ID "XL"
|
|
||||||
/* __IBMC__ = VRP */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
|
||||||
|
|
||||||
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
|
|
||||||
# define COMPILER_ID "VisualAge"
|
|
||||||
/* __IBMC__ = VRP */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
|
||||||
|
|
||||||
#elif defined(__NVCOMPILER)
|
|
||||||
# define COMPILER_ID "NVHPC"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
|
|
||||||
# if defined(__NVCOMPILER_PATCHLEVEL__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__PGI)
|
|
||||||
# define COMPILER_ID "PGI"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
|
||||||
# if defined(__PGIC_PATCHLEVEL__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__clang__) && defined(__cray__)
|
|
||||||
# define COMPILER_ID "CrayClang"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__cray_major__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__cray_minor__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__)
|
|
||||||
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
|
||||||
|
|
||||||
|
|
||||||
#elif defined(_CRAYC)
|
|
||||||
# define COMPILER_ID "Cray"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
|
||||||
|
|
||||||
#elif defined(__TI_COMPILER_VERSION__)
|
|
||||||
# define COMPILER_ID "TI"
|
|
||||||
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
|
||||||
|
|
||||||
#elif defined(__CLANG_FUJITSU)
|
|
||||||
# define COMPILER_ID "FujitsuClang"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
|
||||||
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
|
||||||
|
|
||||||
|
|
||||||
#elif defined(__FUJITSU)
|
|
||||||
# define COMPILER_ID "Fujitsu"
|
|
||||||
# if defined(__FCC_version__)
|
|
||||||
# define COMPILER_VERSION __FCC_version__
|
|
||||||
# elif defined(__FCC_major__)
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
|
||||||
# endif
|
|
||||||
# if defined(__fcc_version)
|
|
||||||
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
|
|
||||||
# elif defined(__FCC_VERSION)
|
|
||||||
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
|
|
||||||
#elif defined(__ghs__)
|
|
||||||
# define COMPILER_ID "GHS"
|
|
||||||
/* __GHS_VERSION_NUMBER = VVVVRP */
|
|
||||||
# ifdef __GHS_VERSION_NUMBER
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__TASKING__)
|
|
||||||
# define COMPILER_ID "Tasking"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100)
|
|
||||||
# define COMPILER_VERSION_INTERNAL DEC(__VERSION__)
|
|
||||||
|
|
||||||
#elif defined(__ORANGEC__)
|
|
||||||
# define COMPILER_ID "OrangeC"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__)
|
|
||||||
|
|
||||||
#elif defined(__RENESAS__)
|
|
||||||
# define COMPILER_ID "Renesas"
|
|
||||||
/* __RENESAS_VERSION__ = 0xVVRRPP00 */
|
|
||||||
# define COMPILER_VERSION_MAJOR HEX(__RENESAS_VERSION__ >> 24 & 0xFF)
|
|
||||||
# define COMPILER_VERSION_MINOR HEX(__RENESAS_VERSION__ >> 16 & 0xFF)
|
|
||||||
# define COMPILER_VERSION_PATCH HEX(__RENESAS_VERSION__ >> 8 & 0xFF)
|
|
||||||
|
|
||||||
#elif defined(__TINYC__)
|
|
||||||
# define COMPILER_ID "TinyCC"
|
|
||||||
|
|
||||||
#elif defined(__BCC__)
|
|
||||||
# define COMPILER_ID "Bruce"
|
|
||||||
|
|
||||||
#elif defined(__SCO_VERSION__)
|
|
||||||
# define COMPILER_ID "SCO"
|
|
||||||
|
|
||||||
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
|
|
||||||
# define COMPILER_ID "ARMCC"
|
|
||||||
#if __ARMCC_VERSION >= 1000000
|
|
||||||
/* __ARMCC_VERSION = VRRPPPP */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
|
||||||
#else
|
|
||||||
/* __ARMCC_VERSION = VRPPPP */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
#elif defined(__clang__) && defined(__apple_build_version__)
|
|
||||||
# define COMPILER_ID "AppleClang"
|
|
||||||
# if defined(_MSC_VER)
|
|
||||||
# define SIMULATE_ID "MSVC"
|
|
||||||
# endif
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
|
||||||
# if defined(_MSC_VER)
|
|
||||||
/* _MSC_VER = VVRR */
|
|
||||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
|
||||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
|
||||||
# endif
|
|
||||||
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
|
|
||||||
|
|
||||||
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
|
|
||||||
# define COMPILER_ID "ARMClang"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100)
|
|
||||||
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
|
|
||||||
|
|
||||||
#elif defined(__clang__) && defined(__ti__)
|
|
||||||
# define COMPILER_ID "TIClang"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__ti_major__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__ti_minor__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__)
|
|
||||||
# define COMPILER_VERSION_INTERNAL DEC(__ti_version__)
|
|
||||||
|
|
||||||
#elif defined(__clang__)
|
|
||||||
# define COMPILER_ID "Clang"
|
|
||||||
# if defined(_MSC_VER)
|
|
||||||
# define SIMULATE_ID "MSVC"
|
|
||||||
# endif
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
|
||||||
# if defined(_MSC_VER)
|
|
||||||
/* _MSC_VER = VVRR */
|
|
||||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
|
||||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
|
|
||||||
# define COMPILER_ID "LCC"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100)
|
|
||||||
# if defined(__LCC_MINOR__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
|
|
||||||
# endif
|
|
||||||
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
|
|
||||||
# define SIMULATE_ID "GNU"
|
|
||||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
|
||||||
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
|
||||||
# if defined(__GNUC_PATCHLEVEL__)
|
|
||||||
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__GNUC__)
|
|
||||||
# define COMPILER_ID "GNU"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
|
||||||
# if defined(__GNUC_MINOR__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
|
||||||
# endif
|
|
||||||
# if defined(__GNUC_PATCHLEVEL__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(_MSC_VER)
|
|
||||||
# define COMPILER_ID "MSVC"
|
|
||||||
/* _MSC_VER = VVRR */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
|
||||||
# if defined(_MSC_FULL_VER)
|
|
||||||
# if _MSC_VER >= 1400
|
|
||||||
/* _MSC_FULL_VER = VVRRPPPPP */
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
|
||||||
# else
|
|
||||||
/* _MSC_FULL_VER = VVRRPPPP */
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
# if defined(_MSC_BUILD)
|
|
||||||
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(_ADI_COMPILER)
|
|
||||||
# define COMPILER_ID "ADSP"
|
|
||||||
#if defined(__VERSIONNUM__)
|
|
||||||
/* __VERSIONNUM__ = 0xVVRRPPTT */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
|
|
||||||
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
|
||||||
# define COMPILER_ID "IAR"
|
|
||||||
# if defined(__VER__) && defined(__ICCARM__)
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
|
|
||||||
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
|
||||||
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
|
|
||||||
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__DCC__) && defined(_DIAB_TOOL)
|
|
||||||
# define COMPILER_ID "Diab"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__VERSION_MAJOR_NUMBER__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__VERSION_MINOR_NUMBER__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__VERSION_ARCH_FEATURE_NUMBER__)
|
|
||||||
# define COMPILER_VERSION_TWEAK DEC(__VERSION_BUG_FIX_NUMBER__)
|
|
||||||
|
|
||||||
|
|
||||||
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
|
|
||||||
# define COMPILER_ID "SDCC"
|
|
||||||
# if defined(__SDCC_VERSION_MAJOR)
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
|
|
||||||
# else
|
|
||||||
/* SDCC = VRP */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
|
|
||||||
/* These compilers are either not known or too old to define an
|
|
||||||
identification macro. Try to identify the platform and guess that
|
|
||||||
it is the native compiler. */
|
|
||||||
#elif defined(__hpux) || defined(__hpua)
|
|
||||||
# define COMPILER_ID "HP"
|
|
||||||
|
|
||||||
#else /* unknown compiler */
|
|
||||||
# define COMPILER_ID ""
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Construct the string literal in pieces to prevent the source from
|
|
||||||
getting matched. Store it in a pointer rather than an array
|
|
||||||
because some compilers will just produce instructions to fill the
|
|
||||||
array rather than assigning a pointer to a static array. */
|
|
||||||
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
|
||||||
#ifdef SIMULATE_ID
|
|
||||||
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __QNXNTO__
|
|
||||||
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
|
||||||
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define STRINGIFY_HELPER(X) #X
|
|
||||||
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
|
||||||
|
|
||||||
/* Identify known platforms by name. */
|
|
||||||
#if defined(__linux) || defined(__linux__) || defined(linux)
|
|
||||||
# define PLATFORM_ID "Linux"
|
|
||||||
|
|
||||||
#elif defined(__MSYS__)
|
|
||||||
# define PLATFORM_ID "MSYS"
|
|
||||||
|
|
||||||
#elif defined(__CYGWIN__)
|
|
||||||
# define PLATFORM_ID "Cygwin"
|
|
||||||
|
|
||||||
#elif defined(__MINGW32__)
|
|
||||||
# define PLATFORM_ID "MinGW"
|
|
||||||
|
|
||||||
#elif defined(__APPLE__)
|
|
||||||
# define PLATFORM_ID "Darwin"
|
|
||||||
|
|
||||||
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
|
||||||
# define PLATFORM_ID "Windows"
|
|
||||||
|
|
||||||
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
|
||||||
# define PLATFORM_ID "FreeBSD"
|
|
||||||
|
|
||||||
#elif defined(__NetBSD__) || defined(__NetBSD)
|
|
||||||
# define PLATFORM_ID "NetBSD"
|
|
||||||
|
|
||||||
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
|
||||||
# define PLATFORM_ID "OpenBSD"
|
|
||||||
|
|
||||||
#elif defined(__sun) || defined(sun)
|
|
||||||
# define PLATFORM_ID "SunOS"
|
|
||||||
|
|
||||||
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
|
||||||
# define PLATFORM_ID "AIX"
|
|
||||||
|
|
||||||
#elif defined(__hpux) || defined(__hpux__)
|
|
||||||
# define PLATFORM_ID "HP-UX"
|
|
||||||
|
|
||||||
#elif defined(__HAIKU__)
|
|
||||||
# define PLATFORM_ID "Haiku"
|
|
||||||
|
|
||||||
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
|
||||||
# define PLATFORM_ID "BeOS"
|
|
||||||
|
|
||||||
#elif defined(__QNX__) || defined(__QNXNTO__)
|
|
||||||
# define PLATFORM_ID "QNX"
|
|
||||||
|
|
||||||
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
|
||||||
# define PLATFORM_ID "Tru64"
|
|
||||||
|
|
||||||
#elif defined(__riscos) || defined(__riscos__)
|
|
||||||
# define PLATFORM_ID "RISCos"
|
|
||||||
|
|
||||||
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
|
||||||
# define PLATFORM_ID "SINIX"
|
|
||||||
|
|
||||||
#elif defined(__UNIX_SV__)
|
|
||||||
# define PLATFORM_ID "UNIX_SV"
|
|
||||||
|
|
||||||
#elif defined(__bsdos__)
|
|
||||||
# define PLATFORM_ID "BSDOS"
|
|
||||||
|
|
||||||
#elif defined(_MPRAS) || defined(MPRAS)
|
|
||||||
# define PLATFORM_ID "MP-RAS"
|
|
||||||
|
|
||||||
#elif defined(__osf) || defined(__osf__)
|
|
||||||
# define PLATFORM_ID "OSF1"
|
|
||||||
|
|
||||||
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
|
||||||
# define PLATFORM_ID "SCO_SV"
|
|
||||||
|
|
||||||
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
|
||||||
# define PLATFORM_ID "ULTRIX"
|
|
||||||
|
|
||||||
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
|
||||||
# define PLATFORM_ID "Xenix"
|
|
||||||
|
|
||||||
#elif defined(__WATCOMC__)
|
|
||||||
# if defined(__LINUX__)
|
|
||||||
# define PLATFORM_ID "Linux"
|
|
||||||
|
|
||||||
# elif defined(__DOS__)
|
|
||||||
# define PLATFORM_ID "DOS"
|
|
||||||
|
|
||||||
# elif defined(__OS2__)
|
|
||||||
# define PLATFORM_ID "OS2"
|
|
||||||
|
|
||||||
# elif defined(__WINDOWS__)
|
|
||||||
# define PLATFORM_ID "Windows3x"
|
|
||||||
|
|
||||||
# elif defined(__VXWORKS__)
|
|
||||||
# define PLATFORM_ID "VxWorks"
|
|
||||||
|
|
||||||
# else /* unknown platform */
|
|
||||||
# define PLATFORM_ID
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__INTEGRITY)
|
|
||||||
# if defined(INT_178B)
|
|
||||||
# define PLATFORM_ID "Integrity178"
|
|
||||||
|
|
||||||
# else /* regular Integrity */
|
|
||||||
# define PLATFORM_ID "Integrity"
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# elif defined(_ADI_COMPILER)
|
|
||||||
# define PLATFORM_ID "ADSP"
|
|
||||||
|
|
||||||
#else /* unknown platform */
|
|
||||||
# define PLATFORM_ID
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* For windows compilers MSVC and Intel we can determine
|
|
||||||
the architecture of the compiler being used. This is because
|
|
||||||
the compilers do not have flags that can change the architecture,
|
|
||||||
but rather depend on which compiler is being used
|
|
||||||
*/
|
|
||||||
#if defined(_WIN32) && defined(_MSC_VER)
|
|
||||||
# if defined(_M_IA64)
|
|
||||||
# define ARCHITECTURE_ID "IA64"
|
|
||||||
|
|
||||||
# elif defined(_M_ARM64EC)
|
|
||||||
# define ARCHITECTURE_ID "ARM64EC"
|
|
||||||
|
|
||||||
# elif defined(_M_X64) || defined(_M_AMD64)
|
|
||||||
# define ARCHITECTURE_ID "x64"
|
|
||||||
|
|
||||||
# elif defined(_M_IX86)
|
|
||||||
# define ARCHITECTURE_ID "X86"
|
|
||||||
|
|
||||||
# elif defined(_M_ARM64)
|
|
||||||
# define ARCHITECTURE_ID "ARM64"
|
|
||||||
|
|
||||||
# elif defined(_M_ARM)
|
|
||||||
# if _M_ARM == 4
|
|
||||||
# define ARCHITECTURE_ID "ARMV4I"
|
|
||||||
# elif _M_ARM == 5
|
|
||||||
# define ARCHITECTURE_ID "ARMV5I"
|
|
||||||
# else
|
|
||||||
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# elif defined(_M_MIPS)
|
|
||||||
# define ARCHITECTURE_ID "MIPS"
|
|
||||||
|
|
||||||
# elif defined(_M_SH)
|
|
||||||
# define ARCHITECTURE_ID "SHx"
|
|
||||||
|
|
||||||
# else /* unknown architecture */
|
|
||||||
# define ARCHITECTURE_ID ""
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__WATCOMC__)
|
|
||||||
# if defined(_M_I86)
|
|
||||||
# define ARCHITECTURE_ID "I86"
|
|
||||||
|
|
||||||
# elif defined(_M_IX86)
|
|
||||||
# define ARCHITECTURE_ID "X86"
|
|
||||||
|
|
||||||
# else /* unknown architecture */
|
|
||||||
# define ARCHITECTURE_ID ""
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
|
||||||
# if defined(__ICCARM__)
|
|
||||||
# define ARCHITECTURE_ID "ARM"
|
|
||||||
|
|
||||||
# elif defined(__ICCRX__)
|
|
||||||
# define ARCHITECTURE_ID "RX"
|
|
||||||
|
|
||||||
# elif defined(__ICCRH850__)
|
|
||||||
# define ARCHITECTURE_ID "RH850"
|
|
||||||
|
|
||||||
# elif defined(__ICCRL78__)
|
|
||||||
# define ARCHITECTURE_ID "RL78"
|
|
||||||
|
|
||||||
# elif defined(__ICCRISCV__)
|
|
||||||
# define ARCHITECTURE_ID "RISCV"
|
|
||||||
|
|
||||||
# elif defined(__ICCAVR__)
|
|
||||||
# define ARCHITECTURE_ID "AVR"
|
|
||||||
|
|
||||||
# elif defined(__ICC430__)
|
|
||||||
# define ARCHITECTURE_ID "MSP430"
|
|
||||||
|
|
||||||
# elif defined(__ICCV850__)
|
|
||||||
# define ARCHITECTURE_ID "V850"
|
|
||||||
|
|
||||||
# elif defined(__ICC8051__)
|
|
||||||
# define ARCHITECTURE_ID "8051"
|
|
||||||
|
|
||||||
# elif defined(__ICCSTM8__)
|
|
||||||
# define ARCHITECTURE_ID "STM8"
|
|
||||||
|
|
||||||
# else /* unknown architecture */
|
|
||||||
# define ARCHITECTURE_ID ""
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__ghs__)
|
|
||||||
# if defined(__PPC64__)
|
|
||||||
# define ARCHITECTURE_ID "PPC64"
|
|
||||||
|
|
||||||
# elif defined(__ppc__)
|
|
||||||
# define ARCHITECTURE_ID "PPC"
|
|
||||||
|
|
||||||
# elif defined(__ARM__)
|
|
||||||
# define ARCHITECTURE_ID "ARM"
|
|
||||||
|
|
||||||
# elif defined(__x86_64__)
|
|
||||||
# define ARCHITECTURE_ID "x64"
|
|
||||||
|
|
||||||
# elif defined(__i386__)
|
|
||||||
# define ARCHITECTURE_ID "X86"
|
|
||||||
|
|
||||||
# else /* unknown architecture */
|
|
||||||
# define ARCHITECTURE_ID ""
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__clang__) && defined(__ti__)
|
|
||||||
# if defined(__ARM_ARCH)
|
|
||||||
# define ARCHITECTURE_ID "ARM"
|
|
||||||
|
|
||||||
# else /* unknown architecture */
|
|
||||||
# define ARCHITECTURE_ID ""
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__TI_COMPILER_VERSION__)
|
|
||||||
# if defined(__TI_ARM__)
|
|
||||||
# define ARCHITECTURE_ID "ARM"
|
|
||||||
|
|
||||||
# elif defined(__MSP430__)
|
|
||||||
# define ARCHITECTURE_ID "MSP430"
|
|
||||||
|
|
||||||
# elif defined(__TMS320C28XX__)
|
|
||||||
# define ARCHITECTURE_ID "TMS320C28x"
|
|
||||||
|
|
||||||
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
|
|
||||||
# define ARCHITECTURE_ID "TMS320C6x"
|
|
||||||
|
|
||||||
# else /* unknown architecture */
|
|
||||||
# define ARCHITECTURE_ID ""
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# elif defined(__ADSPSHARC__)
|
|
||||||
# define ARCHITECTURE_ID "SHARC"
|
|
||||||
|
|
||||||
# elif defined(__ADSPBLACKFIN__)
|
|
||||||
# define ARCHITECTURE_ID "Blackfin"
|
|
||||||
|
|
||||||
#elif defined(__TASKING__)
|
|
||||||
|
|
||||||
# if defined(__CTC__) || defined(__CPTC__)
|
|
||||||
# define ARCHITECTURE_ID "TriCore"
|
|
||||||
|
|
||||||
# elif defined(__CMCS__)
|
|
||||||
# define ARCHITECTURE_ID "MCS"
|
|
||||||
|
|
||||||
# elif defined(__CARM__) || defined(__CPARM__)
|
|
||||||
# define ARCHITECTURE_ID "ARM"
|
|
||||||
|
|
||||||
# elif defined(__CARC__)
|
|
||||||
# define ARCHITECTURE_ID "ARC"
|
|
||||||
|
|
||||||
# elif defined(__C51__)
|
|
||||||
# define ARCHITECTURE_ID "8051"
|
|
||||||
|
|
||||||
# elif defined(__CPCP__)
|
|
||||||
# define ARCHITECTURE_ID "PCP"
|
|
||||||
|
|
||||||
# else
|
|
||||||
# define ARCHITECTURE_ID ""
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__RENESAS__)
|
|
||||||
# if defined(__CCRX__)
|
|
||||||
# define ARCHITECTURE_ID "RX"
|
|
||||||
|
|
||||||
# elif defined(__CCRL__)
|
|
||||||
# define ARCHITECTURE_ID "RL78"
|
|
||||||
|
|
||||||
# elif defined(__CCRH__)
|
|
||||||
# define ARCHITECTURE_ID "RH850"
|
|
||||||
|
|
||||||
# else
|
|
||||||
# define ARCHITECTURE_ID ""
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#else
|
|
||||||
# define ARCHITECTURE_ID
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Convert integer to decimal digit literals. */
|
|
||||||
#define DEC(n) \
|
|
||||||
('0' + (((n) / 10000000)%10)), \
|
|
||||||
('0' + (((n) / 1000000)%10)), \
|
|
||||||
('0' + (((n) / 100000)%10)), \
|
|
||||||
('0' + (((n) / 10000)%10)), \
|
|
||||||
('0' + (((n) / 1000)%10)), \
|
|
||||||
('0' + (((n) / 100)%10)), \
|
|
||||||
('0' + (((n) / 10)%10)), \
|
|
||||||
('0' + ((n) % 10))
|
|
||||||
|
|
||||||
/* Convert integer to hex digit literals. */
|
|
||||||
#define HEX(n) \
|
|
||||||
('0' + ((n)>>28 & 0xF)), \
|
|
||||||
('0' + ((n)>>24 & 0xF)), \
|
|
||||||
('0' + ((n)>>20 & 0xF)), \
|
|
||||||
('0' + ((n)>>16 & 0xF)), \
|
|
||||||
('0' + ((n)>>12 & 0xF)), \
|
|
||||||
('0' + ((n)>>8 & 0xF)), \
|
|
||||||
('0' + ((n)>>4 & 0xF)), \
|
|
||||||
('0' + ((n) & 0xF))
|
|
||||||
|
|
||||||
/* Construct a string literal encoding the version number. */
|
|
||||||
#ifdef COMPILER_VERSION
|
|
||||||
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
|
|
||||||
|
|
||||||
/* Construct a string literal encoding the version number components. */
|
|
||||||
#elif defined(COMPILER_VERSION_MAJOR)
|
|
||||||
char const info_version[] = {
|
|
||||||
'I', 'N', 'F', 'O', ':',
|
|
||||||
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
|
|
||||||
COMPILER_VERSION_MAJOR,
|
|
||||||
# ifdef COMPILER_VERSION_MINOR
|
|
||||||
'.', COMPILER_VERSION_MINOR,
|
|
||||||
# ifdef COMPILER_VERSION_PATCH
|
|
||||||
'.', COMPILER_VERSION_PATCH,
|
|
||||||
# ifdef COMPILER_VERSION_TWEAK
|
|
||||||
'.', COMPILER_VERSION_TWEAK,
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
']','\0'};
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Construct a string literal encoding the internal version number. */
|
|
||||||
#ifdef COMPILER_VERSION_INTERNAL
|
|
||||||
char const info_version_internal[] = {
|
|
||||||
'I', 'N', 'F', 'O', ':',
|
|
||||||
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
|
|
||||||
'i','n','t','e','r','n','a','l','[',
|
|
||||||
COMPILER_VERSION_INTERNAL,']','\0'};
|
|
||||||
#elif defined(COMPILER_VERSION_INTERNAL_STR)
|
|
||||||
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Construct a string literal encoding the version number components. */
|
|
||||||
#ifdef SIMULATE_VERSION_MAJOR
|
|
||||||
char const info_simulate_version[] = {
|
|
||||||
'I', 'N', 'F', 'O', ':',
|
|
||||||
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
|
||||||
SIMULATE_VERSION_MAJOR,
|
|
||||||
# ifdef SIMULATE_VERSION_MINOR
|
|
||||||
'.', SIMULATE_VERSION_MINOR,
|
|
||||||
# ifdef SIMULATE_VERSION_PATCH
|
|
||||||
'.', SIMULATE_VERSION_PATCH,
|
|
||||||
# ifdef SIMULATE_VERSION_TWEAK
|
|
||||||
'.', SIMULATE_VERSION_TWEAK,
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
']','\0'};
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Construct the string literal in pieces to prevent the source from
|
|
||||||
getting matched. Store it in a pointer rather than an array
|
|
||||||
because some compilers will just produce instructions to fill the
|
|
||||||
array rather than assigning a pointer to a static array. */
|
|
||||||
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
|
||||||
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#define C_STD_99 199901L
|
|
||||||
#define C_STD_11 201112L
|
|
||||||
#define C_STD_17 201710L
|
|
||||||
#define C_STD_23 202311L
|
|
||||||
|
|
||||||
#ifdef __STDC_VERSION__
|
|
||||||
# define C_STD __STDC_VERSION__
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if !defined(__STDC__) && !defined(__clang__) && !defined(__RENESAS__)
|
|
||||||
# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__)
|
|
||||||
# define C_VERSION "90"
|
|
||||||
# else
|
|
||||||
# define C_VERSION
|
|
||||||
# endif
|
|
||||||
#elif C_STD > C_STD_17
|
|
||||||
# define C_VERSION "23"
|
|
||||||
#elif C_STD > C_STD_11
|
|
||||||
# define C_VERSION "17"
|
|
||||||
#elif C_STD > C_STD_99
|
|
||||||
# define C_VERSION "11"
|
|
||||||
#elif C_STD >= C_STD_99
|
|
||||||
# define C_VERSION "99"
|
|
||||||
#else
|
|
||||||
# define C_VERSION "90"
|
|
||||||
#endif
|
|
||||||
const char* info_language_standard_default =
|
|
||||||
"INFO" ":" "standard_default[" C_VERSION "]";
|
|
||||||
|
|
||||||
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
|
|
||||||
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
|
|
||||||
defined(__TI_COMPILER_VERSION__) || defined(__RENESAS__)) && \
|
|
||||||
!defined(__STRICT_ANSI__)
|
|
||||||
"ON"
|
|
||||||
#else
|
|
||||||
"OFF"
|
|
||||||
#endif
|
|
||||||
"]";
|
|
||||||
|
|
||||||
/*--------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
#ifdef ID_VOID_MAIN
|
|
||||||
void main() {}
|
|
||||||
#else
|
|
||||||
# if defined(__CLASSIC_C__)
|
|
||||||
int main(argc, argv) int argc; char *argv[];
|
|
||||||
# else
|
|
||||||
int main(int argc, char* argv[])
|
|
||||||
# endif
|
|
||||||
{
|
|
||||||
int require = 0;
|
|
||||||
require += info_compiler[argc];
|
|
||||||
require += info_platform[argc];
|
|
||||||
require += info_arch[argc];
|
|
||||||
#ifdef COMPILER_VERSION_MAJOR
|
|
||||||
require += info_version[argc];
|
|
||||||
#endif
|
|
||||||
#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR)
|
|
||||||
require += info_version_internal[argc];
|
|
||||||
#endif
|
|
||||||
#ifdef SIMULATE_ID
|
|
||||||
require += info_simulate[argc];
|
|
||||||
#endif
|
|
||||||
#ifdef SIMULATE_VERSION_MAJOR
|
|
||||||
require += info_simulate_version[argc];
|
|
||||||
#endif
|
|
||||||
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
|
||||||
require += info_cray[argc];
|
|
||||||
#endif
|
|
||||||
require += info_language_standard_default[argc];
|
|
||||||
require += info_language_extensions_default[argc];
|
|
||||||
(void)argv;
|
|
||||||
return require;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
@@ -1,72 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|x64">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{CAE07175-D007-4FC3-BFE8-47B392814159}</ProjectGuid>
|
|
||||||
<RootNamespace>CompilerIdC</RootNamespace>
|
|
||||||
<Keyword>Win32Proj</Keyword>
|
|
||||||
|
|
||||||
|
|
||||||
<WindowsTargetPlatformVersion>10.0.26100.0</WindowsTargetPlatformVersion>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<PreferredToolArchitecture>x64</PreferredToolArchitecture>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<PlatformToolset>v143</PlatformToolset>
|
|
||||||
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup>
|
|
||||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">.\</OutDir>
|
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(Configuration)\</IntDir>
|
|
||||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkIncremental>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
|
||||||
<RuntimeLibrary Condition="'$(ApplicationType)'!='Android'">MultiThreadedDebugDLL</RuntimeLibrary>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<WarningLevel>TurnOffAllWarnings</WarningLevel>
|
|
||||||
<DebugInformationFormat>
|
|
||||||
</DebugInformationFormat>
|
|
||||||
</ClCompile>
|
|
||||||
|
|
||||||
<Link>
|
|
||||||
<GenerateDebugInformation>false</GenerateDebugInformation>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
|
|
||||||
</Link>
|
|
||||||
<PostBuildEvent>
|
|
||||||
<Command>for %%i in (cl.exe) do %40echo CMAKE_C_COMPILER=%%~$PATH:i</Command>
|
|
||||||
</PostBuildEvent>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="CMakeCCompilerId.c" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project>
|
|
||||||
<ProjectOutputs>
|
|
||||||
<ProjectOutput>
|
|
||||||
<FullPath>I:\source\render\build\CMakeFiles\4.1.1\CompilerIdC\CompilerIdC.exe</FullPath>
|
|
||||||
</ProjectOutput>
|
|
||||||
</ProjectOutputs>
|
|
||||||
<ContentFiles />
|
|
||||||
<SatelliteDlls />
|
|
||||||
<NonRecipeFileRefs />
|
|
||||||
</Project>
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
I:\source\render\build\CMakeFiles\4.1.1\CompilerIdC\CMakeCCompilerId.c;I:\source\render\build\CMakeFiles\4.1.1\CompilerIdC\Debug\CMakeCCompilerId.obj
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.44.35207:TargetPlatformVersion=10.0.26100.0:
|
|
||||||
Debug|x64|I:\source\render\build\CMakeFiles\4.1.1\CompilerIdC\|
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
^I:\SOURCE\RENDER\BUILD\CMAKEFILES\4.1.1\COMPILERIDC\DEBUG\CMAKECCOMPILERID.OBJ
|
|
||||||
Binary file not shown.
@@ -1,949 +0,0 @@
|
|||||||
/* This source file must have a .cpp extension so that all C++ compilers
|
|
||||||
recognize the extension without flags. Borland does not know .cxx for
|
|
||||||
example. */
|
|
||||||
#ifndef __cplusplus
|
|
||||||
# error "A C compiler has been selected for C++."
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if !defined(__has_include)
|
|
||||||
/* If the compiler does not have __has_include, pretend the answer is
|
|
||||||
always no. */
|
|
||||||
# define __has_include(x) 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
/* Version number components: V=Version, R=Revision, P=Patch
|
|
||||||
Version date components: YYYY=Year, MM=Month, DD=Day */
|
|
||||||
|
|
||||||
#if defined(__INTEL_COMPILER) || defined(__ICC)
|
|
||||||
# define COMPILER_ID "Intel"
|
|
||||||
# if defined(_MSC_VER)
|
|
||||||
# define SIMULATE_ID "MSVC"
|
|
||||||
# endif
|
|
||||||
# if defined(__GNUC__)
|
|
||||||
# define SIMULATE_ID "GNU"
|
|
||||||
# endif
|
|
||||||
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
|
|
||||||
except that a few beta releases use the old format with V=2021. */
|
|
||||||
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
|
|
||||||
# if defined(__INTEL_COMPILER_UPDATE)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
|
|
||||||
# else
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
|
|
||||||
# endif
|
|
||||||
# else
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
|
|
||||||
/* The third version component from --version is an update index,
|
|
||||||
but no macro is provided for it. */
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(0)
|
|
||||||
# endif
|
|
||||||
# if defined(__INTEL_COMPILER_BUILD_DATE)
|
|
||||||
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
|
|
||||||
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
|
|
||||||
# endif
|
|
||||||
# if defined(_MSC_VER)
|
|
||||||
/* _MSC_VER = VVRR */
|
|
||||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
|
||||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
|
||||||
# endif
|
|
||||||
# if defined(__GNUC__)
|
|
||||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
|
||||||
# elif defined(__GNUG__)
|
|
||||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
|
||||||
# endif
|
|
||||||
# if defined(__GNUC_MINOR__)
|
|
||||||
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
|
||||||
# endif
|
|
||||||
# if defined(__GNUC_PATCHLEVEL__)
|
|
||||||
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
|
|
||||||
# define COMPILER_ID "IntelLLVM"
|
|
||||||
#if defined(_MSC_VER)
|
|
||||||
# define SIMULATE_ID "MSVC"
|
|
||||||
#endif
|
|
||||||
#if defined(__GNUC__)
|
|
||||||
# define SIMULATE_ID "GNU"
|
|
||||||
#endif
|
|
||||||
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
|
|
||||||
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
|
|
||||||
* VVVV is no smaller than the current year when a version is released.
|
|
||||||
*/
|
|
||||||
#if __INTEL_LLVM_COMPILER < 1000000L
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
|
|
||||||
#else
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
|
|
||||||
#endif
|
|
||||||
#if defined(_MSC_VER)
|
|
||||||
/* _MSC_VER = VVRR */
|
|
||||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
|
||||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
|
||||||
#endif
|
|
||||||
#if defined(__GNUC__)
|
|
||||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
|
||||||
#elif defined(__GNUG__)
|
|
||||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
|
||||||
#endif
|
|
||||||
#if defined(__GNUC_MINOR__)
|
|
||||||
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
|
||||||
#endif
|
|
||||||
#if defined(__GNUC_PATCHLEVEL__)
|
|
||||||
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#elif defined(__PATHCC__)
|
|
||||||
# define COMPILER_ID "PathScale"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
|
|
||||||
# if defined(__PATHCC_PATCHLEVEL__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
|
|
||||||
# define COMPILER_ID "Embarcadero"
|
|
||||||
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
|
|
||||||
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
|
|
||||||
|
|
||||||
#elif defined(__BORLANDC__)
|
|
||||||
# define COMPILER_ID "Borland"
|
|
||||||
/* __BORLANDC__ = 0xVRR */
|
|
||||||
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
|
|
||||||
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
|
|
||||||
|
|
||||||
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
|
|
||||||
# define COMPILER_ID "Watcom"
|
|
||||||
/* __WATCOMC__ = VVRR */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
|
||||||
# if (__WATCOMC__ % 10) > 0
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__WATCOMC__)
|
|
||||||
# define COMPILER_ID "OpenWatcom"
|
|
||||||
/* __WATCOMC__ = VVRP + 1100 */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
|
||||||
# if (__WATCOMC__ % 10) > 0
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__SUNPRO_CC)
|
|
||||||
# define COMPILER_ID "SunPro"
|
|
||||||
# if __SUNPRO_CC >= 0x5100
|
|
||||||
/* __SUNPRO_CC = 0xVRRP */
|
|
||||||
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
|
|
||||||
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
|
|
||||||
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
|
|
||||||
# else
|
|
||||||
/* __SUNPRO_CC = 0xVRP */
|
|
||||||
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
|
|
||||||
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
|
|
||||||
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__HP_aCC)
|
|
||||||
# define COMPILER_ID "HP"
|
|
||||||
/* __HP_aCC = VVRRPP */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
|
|
||||||
|
|
||||||
#elif defined(__DECCXX)
|
|
||||||
# define COMPILER_ID "Compaq"
|
|
||||||
/* __DECCXX_VER = VVRRTPPPP */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
|
|
||||||
|
|
||||||
#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
|
|
||||||
# define COMPILER_ID "zOS"
|
|
||||||
/* __IBMCPP__ = VRP */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
|
||||||
|
|
||||||
#elif defined(__open_xl__) && defined(__clang__)
|
|
||||||
# define COMPILER_ID "IBMClang"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
|
|
||||||
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
|
|
||||||
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
|
||||||
|
|
||||||
|
|
||||||
#elif defined(__ibmxl__) && defined(__clang__)
|
|
||||||
# define COMPILER_ID "XLClang"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
|
||||||
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
|
||||||
|
|
||||||
|
|
||||||
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
|
|
||||||
# define COMPILER_ID "XL"
|
|
||||||
/* __IBMCPP__ = VRP */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
|
||||||
|
|
||||||
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
|
|
||||||
# define COMPILER_ID "VisualAge"
|
|
||||||
/* __IBMCPP__ = VRP */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
|
||||||
|
|
||||||
#elif defined(__NVCOMPILER)
|
|
||||||
# define COMPILER_ID "NVHPC"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
|
|
||||||
# if defined(__NVCOMPILER_PATCHLEVEL__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__PGI)
|
|
||||||
# define COMPILER_ID "PGI"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
|
||||||
# if defined(__PGIC_PATCHLEVEL__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__clang__) && defined(__cray__)
|
|
||||||
# define COMPILER_ID "CrayClang"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__cray_major__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__cray_minor__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__)
|
|
||||||
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
|
||||||
|
|
||||||
|
|
||||||
#elif defined(_CRAYC)
|
|
||||||
# define COMPILER_ID "Cray"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
|
||||||
|
|
||||||
#elif defined(__TI_COMPILER_VERSION__)
|
|
||||||
# define COMPILER_ID "TI"
|
|
||||||
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
|
||||||
|
|
||||||
#elif defined(__CLANG_FUJITSU)
|
|
||||||
# define COMPILER_ID "FujitsuClang"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
|
||||||
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
|
||||||
|
|
||||||
|
|
||||||
#elif defined(__FUJITSU)
|
|
||||||
# define COMPILER_ID "Fujitsu"
|
|
||||||
# if defined(__FCC_version__)
|
|
||||||
# define COMPILER_VERSION __FCC_version__
|
|
||||||
# elif defined(__FCC_major__)
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
|
||||||
# endif
|
|
||||||
# if defined(__fcc_version)
|
|
||||||
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
|
|
||||||
# elif defined(__FCC_VERSION)
|
|
||||||
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
|
|
||||||
#elif defined(__ghs__)
|
|
||||||
# define COMPILER_ID "GHS"
|
|
||||||
/* __GHS_VERSION_NUMBER = VVVVRP */
|
|
||||||
# ifdef __GHS_VERSION_NUMBER
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__TASKING__)
|
|
||||||
# define COMPILER_ID "Tasking"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100)
|
|
||||||
# define COMPILER_VERSION_INTERNAL DEC(__VERSION__)
|
|
||||||
|
|
||||||
#elif defined(__ORANGEC__)
|
|
||||||
# define COMPILER_ID "OrangeC"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__)
|
|
||||||
|
|
||||||
#elif defined(__RENESAS__)
|
|
||||||
# define COMPILER_ID "Renesas"
|
|
||||||
/* __RENESAS_VERSION__ = 0xVVRRPP00 */
|
|
||||||
# define COMPILER_VERSION_MAJOR HEX(__RENESAS_VERSION__ >> 24 & 0xFF)
|
|
||||||
# define COMPILER_VERSION_MINOR HEX(__RENESAS_VERSION__ >> 16 & 0xFF)
|
|
||||||
# define COMPILER_VERSION_PATCH HEX(__RENESAS_VERSION__ >> 8 & 0xFF)
|
|
||||||
|
|
||||||
#elif defined(__SCO_VERSION__)
|
|
||||||
# define COMPILER_ID "SCO"
|
|
||||||
|
|
||||||
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
|
|
||||||
# define COMPILER_ID "ARMCC"
|
|
||||||
#if __ARMCC_VERSION >= 1000000
|
|
||||||
/* __ARMCC_VERSION = VRRPPPP */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
|
||||||
#else
|
|
||||||
/* __ARMCC_VERSION = VRPPPP */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
#elif defined(__clang__) && defined(__apple_build_version__)
|
|
||||||
# define COMPILER_ID "AppleClang"
|
|
||||||
# if defined(_MSC_VER)
|
|
||||||
# define SIMULATE_ID "MSVC"
|
|
||||||
# endif
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
|
||||||
# if defined(_MSC_VER)
|
|
||||||
/* _MSC_VER = VVRR */
|
|
||||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
|
||||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
|
||||||
# endif
|
|
||||||
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
|
|
||||||
|
|
||||||
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
|
|
||||||
# define COMPILER_ID "ARMClang"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100)
|
|
||||||
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
|
|
||||||
|
|
||||||
#elif defined(__clang__) && defined(__ti__)
|
|
||||||
# define COMPILER_ID "TIClang"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__ti_major__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__ti_minor__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__)
|
|
||||||
# define COMPILER_VERSION_INTERNAL DEC(__ti_version__)
|
|
||||||
|
|
||||||
#elif defined(__clang__)
|
|
||||||
# define COMPILER_ID "Clang"
|
|
||||||
# if defined(_MSC_VER)
|
|
||||||
# define SIMULATE_ID "MSVC"
|
|
||||||
# endif
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
|
||||||
# if defined(_MSC_VER)
|
|
||||||
/* _MSC_VER = VVRR */
|
|
||||||
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
|
||||||
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
|
|
||||||
# define COMPILER_ID "LCC"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100)
|
|
||||||
# if defined(__LCC_MINOR__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
|
|
||||||
# endif
|
|
||||||
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
|
|
||||||
# define SIMULATE_ID "GNU"
|
|
||||||
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
|
||||||
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
|
||||||
# if defined(__GNUC_PATCHLEVEL__)
|
|
||||||
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__GNUC__) || defined(__GNUG__)
|
|
||||||
# define COMPILER_ID "GNU"
|
|
||||||
# if defined(__GNUC__)
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
|
||||||
# else
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__GNUG__)
|
|
||||||
# endif
|
|
||||||
# if defined(__GNUC_MINOR__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
|
||||||
# endif
|
|
||||||
# if defined(__GNUC_PATCHLEVEL__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(_MSC_VER)
|
|
||||||
# define COMPILER_ID "MSVC"
|
|
||||||
/* _MSC_VER = VVRR */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
|
||||||
# if defined(_MSC_FULL_VER)
|
|
||||||
# if _MSC_VER >= 1400
|
|
||||||
/* _MSC_FULL_VER = VVRRPPPPP */
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
|
||||||
# else
|
|
||||||
/* _MSC_FULL_VER = VVRRPPPP */
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
# if defined(_MSC_BUILD)
|
|
||||||
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(_ADI_COMPILER)
|
|
||||||
# define COMPILER_ID "ADSP"
|
|
||||||
#if defined(__VERSIONNUM__)
|
|
||||||
/* __VERSIONNUM__ = 0xVVRRPPTT */
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
|
|
||||||
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
|
||||||
# define COMPILER_ID "IAR"
|
|
||||||
# if defined(__VER__) && defined(__ICCARM__)
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
|
|
||||||
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
|
||||||
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
|
|
||||||
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__DCC__) && defined(_DIAB_TOOL)
|
|
||||||
# define COMPILER_ID "Diab"
|
|
||||||
# define COMPILER_VERSION_MAJOR DEC(__VERSION_MAJOR_NUMBER__)
|
|
||||||
# define COMPILER_VERSION_MINOR DEC(__VERSION_MINOR_NUMBER__)
|
|
||||||
# define COMPILER_VERSION_PATCH DEC(__VERSION_ARCH_FEATURE_NUMBER__)
|
|
||||||
# define COMPILER_VERSION_TWEAK DEC(__VERSION_BUG_FIX_NUMBER__)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* These compilers are either not known or too old to define an
|
|
||||||
identification macro. Try to identify the platform and guess that
|
|
||||||
it is the native compiler. */
|
|
||||||
#elif defined(__hpux) || defined(__hpua)
|
|
||||||
# define COMPILER_ID "HP"
|
|
||||||
|
|
||||||
#else /* unknown compiler */
|
|
||||||
# define COMPILER_ID ""
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Construct the string literal in pieces to prevent the source from
|
|
||||||
getting matched. Store it in a pointer rather than an array
|
|
||||||
because some compilers will just produce instructions to fill the
|
|
||||||
array rather than assigning a pointer to a static array. */
|
|
||||||
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
|
||||||
#ifdef SIMULATE_ID
|
|
||||||
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __QNXNTO__
|
|
||||||
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
|
||||||
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define STRINGIFY_HELPER(X) #X
|
|
||||||
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
|
||||||
|
|
||||||
/* Identify known platforms by name. */
|
|
||||||
#if defined(__linux) || defined(__linux__) || defined(linux)
|
|
||||||
# define PLATFORM_ID "Linux"
|
|
||||||
|
|
||||||
#elif defined(__MSYS__)
|
|
||||||
# define PLATFORM_ID "MSYS"
|
|
||||||
|
|
||||||
#elif defined(__CYGWIN__)
|
|
||||||
# define PLATFORM_ID "Cygwin"
|
|
||||||
|
|
||||||
#elif defined(__MINGW32__)
|
|
||||||
# define PLATFORM_ID "MinGW"
|
|
||||||
|
|
||||||
#elif defined(__APPLE__)
|
|
||||||
# define PLATFORM_ID "Darwin"
|
|
||||||
|
|
||||||
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
|
||||||
# define PLATFORM_ID "Windows"
|
|
||||||
|
|
||||||
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
|
||||||
# define PLATFORM_ID "FreeBSD"
|
|
||||||
|
|
||||||
#elif defined(__NetBSD__) || defined(__NetBSD)
|
|
||||||
# define PLATFORM_ID "NetBSD"
|
|
||||||
|
|
||||||
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
|
||||||
# define PLATFORM_ID "OpenBSD"
|
|
||||||
|
|
||||||
#elif defined(__sun) || defined(sun)
|
|
||||||
# define PLATFORM_ID "SunOS"
|
|
||||||
|
|
||||||
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
|
||||||
# define PLATFORM_ID "AIX"
|
|
||||||
|
|
||||||
#elif defined(__hpux) || defined(__hpux__)
|
|
||||||
# define PLATFORM_ID "HP-UX"
|
|
||||||
|
|
||||||
#elif defined(__HAIKU__)
|
|
||||||
# define PLATFORM_ID "Haiku"
|
|
||||||
|
|
||||||
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
|
||||||
# define PLATFORM_ID "BeOS"
|
|
||||||
|
|
||||||
#elif defined(__QNX__) || defined(__QNXNTO__)
|
|
||||||
# define PLATFORM_ID "QNX"
|
|
||||||
|
|
||||||
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
|
||||||
# define PLATFORM_ID "Tru64"
|
|
||||||
|
|
||||||
#elif defined(__riscos) || defined(__riscos__)
|
|
||||||
# define PLATFORM_ID "RISCos"
|
|
||||||
|
|
||||||
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
|
||||||
# define PLATFORM_ID "SINIX"
|
|
||||||
|
|
||||||
#elif defined(__UNIX_SV__)
|
|
||||||
# define PLATFORM_ID "UNIX_SV"
|
|
||||||
|
|
||||||
#elif defined(__bsdos__)
|
|
||||||
# define PLATFORM_ID "BSDOS"
|
|
||||||
|
|
||||||
#elif defined(_MPRAS) || defined(MPRAS)
|
|
||||||
# define PLATFORM_ID "MP-RAS"
|
|
||||||
|
|
||||||
#elif defined(__osf) || defined(__osf__)
|
|
||||||
# define PLATFORM_ID "OSF1"
|
|
||||||
|
|
||||||
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
|
||||||
# define PLATFORM_ID "SCO_SV"
|
|
||||||
|
|
||||||
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
|
||||||
# define PLATFORM_ID "ULTRIX"
|
|
||||||
|
|
||||||
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
|
||||||
# define PLATFORM_ID "Xenix"
|
|
||||||
|
|
||||||
#elif defined(__WATCOMC__)
|
|
||||||
# if defined(__LINUX__)
|
|
||||||
# define PLATFORM_ID "Linux"
|
|
||||||
|
|
||||||
# elif defined(__DOS__)
|
|
||||||
# define PLATFORM_ID "DOS"
|
|
||||||
|
|
||||||
# elif defined(__OS2__)
|
|
||||||
# define PLATFORM_ID "OS2"
|
|
||||||
|
|
||||||
# elif defined(__WINDOWS__)
|
|
||||||
# define PLATFORM_ID "Windows3x"
|
|
||||||
|
|
||||||
# elif defined(__VXWORKS__)
|
|
||||||
# define PLATFORM_ID "VxWorks"
|
|
||||||
|
|
||||||
# else /* unknown platform */
|
|
||||||
# define PLATFORM_ID
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__INTEGRITY)
|
|
||||||
# if defined(INT_178B)
|
|
||||||
# define PLATFORM_ID "Integrity178"
|
|
||||||
|
|
||||||
# else /* regular Integrity */
|
|
||||||
# define PLATFORM_ID "Integrity"
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# elif defined(_ADI_COMPILER)
|
|
||||||
# define PLATFORM_ID "ADSP"
|
|
||||||
|
|
||||||
#else /* unknown platform */
|
|
||||||
# define PLATFORM_ID
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* For windows compilers MSVC and Intel we can determine
|
|
||||||
the architecture of the compiler being used. This is because
|
|
||||||
the compilers do not have flags that can change the architecture,
|
|
||||||
but rather depend on which compiler is being used
|
|
||||||
*/
|
|
||||||
#if defined(_WIN32) && defined(_MSC_VER)
|
|
||||||
# if defined(_M_IA64)
|
|
||||||
# define ARCHITECTURE_ID "IA64"
|
|
||||||
|
|
||||||
# elif defined(_M_ARM64EC)
|
|
||||||
# define ARCHITECTURE_ID "ARM64EC"
|
|
||||||
|
|
||||||
# elif defined(_M_X64) || defined(_M_AMD64)
|
|
||||||
# define ARCHITECTURE_ID "x64"
|
|
||||||
|
|
||||||
# elif defined(_M_IX86)
|
|
||||||
# define ARCHITECTURE_ID "X86"
|
|
||||||
|
|
||||||
# elif defined(_M_ARM64)
|
|
||||||
# define ARCHITECTURE_ID "ARM64"
|
|
||||||
|
|
||||||
# elif defined(_M_ARM)
|
|
||||||
# if _M_ARM == 4
|
|
||||||
# define ARCHITECTURE_ID "ARMV4I"
|
|
||||||
# elif _M_ARM == 5
|
|
||||||
# define ARCHITECTURE_ID "ARMV5I"
|
|
||||||
# else
|
|
||||||
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# elif defined(_M_MIPS)
|
|
||||||
# define ARCHITECTURE_ID "MIPS"
|
|
||||||
|
|
||||||
# elif defined(_M_SH)
|
|
||||||
# define ARCHITECTURE_ID "SHx"
|
|
||||||
|
|
||||||
# else /* unknown architecture */
|
|
||||||
# define ARCHITECTURE_ID ""
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__WATCOMC__)
|
|
||||||
# if defined(_M_I86)
|
|
||||||
# define ARCHITECTURE_ID "I86"
|
|
||||||
|
|
||||||
# elif defined(_M_IX86)
|
|
||||||
# define ARCHITECTURE_ID "X86"
|
|
||||||
|
|
||||||
# else /* unknown architecture */
|
|
||||||
# define ARCHITECTURE_ID ""
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
|
||||||
# if defined(__ICCARM__)
|
|
||||||
# define ARCHITECTURE_ID "ARM"
|
|
||||||
|
|
||||||
# elif defined(__ICCRX__)
|
|
||||||
# define ARCHITECTURE_ID "RX"
|
|
||||||
|
|
||||||
# elif defined(__ICCRH850__)
|
|
||||||
# define ARCHITECTURE_ID "RH850"
|
|
||||||
|
|
||||||
# elif defined(__ICCRL78__)
|
|
||||||
# define ARCHITECTURE_ID "RL78"
|
|
||||||
|
|
||||||
# elif defined(__ICCRISCV__)
|
|
||||||
# define ARCHITECTURE_ID "RISCV"
|
|
||||||
|
|
||||||
# elif defined(__ICCAVR__)
|
|
||||||
# define ARCHITECTURE_ID "AVR"
|
|
||||||
|
|
||||||
# elif defined(__ICC430__)
|
|
||||||
# define ARCHITECTURE_ID "MSP430"
|
|
||||||
|
|
||||||
# elif defined(__ICCV850__)
|
|
||||||
# define ARCHITECTURE_ID "V850"
|
|
||||||
|
|
||||||
# elif defined(__ICC8051__)
|
|
||||||
# define ARCHITECTURE_ID "8051"
|
|
||||||
|
|
||||||
# elif defined(__ICCSTM8__)
|
|
||||||
# define ARCHITECTURE_ID "STM8"
|
|
||||||
|
|
||||||
# else /* unknown architecture */
|
|
||||||
# define ARCHITECTURE_ID ""
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__ghs__)
|
|
||||||
# if defined(__PPC64__)
|
|
||||||
# define ARCHITECTURE_ID "PPC64"
|
|
||||||
|
|
||||||
# elif defined(__ppc__)
|
|
||||||
# define ARCHITECTURE_ID "PPC"
|
|
||||||
|
|
||||||
# elif defined(__ARM__)
|
|
||||||
# define ARCHITECTURE_ID "ARM"
|
|
||||||
|
|
||||||
# elif defined(__x86_64__)
|
|
||||||
# define ARCHITECTURE_ID "x64"
|
|
||||||
|
|
||||||
# elif defined(__i386__)
|
|
||||||
# define ARCHITECTURE_ID "X86"
|
|
||||||
|
|
||||||
# else /* unknown architecture */
|
|
||||||
# define ARCHITECTURE_ID ""
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__clang__) && defined(__ti__)
|
|
||||||
# if defined(__ARM_ARCH)
|
|
||||||
# define ARCHITECTURE_ID "ARM"
|
|
||||||
|
|
||||||
# else /* unknown architecture */
|
|
||||||
# define ARCHITECTURE_ID ""
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__TI_COMPILER_VERSION__)
|
|
||||||
# if defined(__TI_ARM__)
|
|
||||||
# define ARCHITECTURE_ID "ARM"
|
|
||||||
|
|
||||||
# elif defined(__MSP430__)
|
|
||||||
# define ARCHITECTURE_ID "MSP430"
|
|
||||||
|
|
||||||
# elif defined(__TMS320C28XX__)
|
|
||||||
# define ARCHITECTURE_ID "TMS320C28x"
|
|
||||||
|
|
||||||
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
|
|
||||||
# define ARCHITECTURE_ID "TMS320C6x"
|
|
||||||
|
|
||||||
# else /* unknown architecture */
|
|
||||||
# define ARCHITECTURE_ID ""
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# elif defined(__ADSPSHARC__)
|
|
||||||
# define ARCHITECTURE_ID "SHARC"
|
|
||||||
|
|
||||||
# elif defined(__ADSPBLACKFIN__)
|
|
||||||
# define ARCHITECTURE_ID "Blackfin"
|
|
||||||
|
|
||||||
#elif defined(__TASKING__)
|
|
||||||
|
|
||||||
# if defined(__CTC__) || defined(__CPTC__)
|
|
||||||
# define ARCHITECTURE_ID "TriCore"
|
|
||||||
|
|
||||||
# elif defined(__CMCS__)
|
|
||||||
# define ARCHITECTURE_ID "MCS"
|
|
||||||
|
|
||||||
# elif defined(__CARM__) || defined(__CPARM__)
|
|
||||||
# define ARCHITECTURE_ID "ARM"
|
|
||||||
|
|
||||||
# elif defined(__CARC__)
|
|
||||||
# define ARCHITECTURE_ID "ARC"
|
|
||||||
|
|
||||||
# elif defined(__C51__)
|
|
||||||
# define ARCHITECTURE_ID "8051"
|
|
||||||
|
|
||||||
# elif defined(__CPCP__)
|
|
||||||
# define ARCHITECTURE_ID "PCP"
|
|
||||||
|
|
||||||
# else
|
|
||||||
# define ARCHITECTURE_ID ""
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#elif defined(__RENESAS__)
|
|
||||||
# if defined(__CCRX__)
|
|
||||||
# define ARCHITECTURE_ID "RX"
|
|
||||||
|
|
||||||
# elif defined(__CCRL__)
|
|
||||||
# define ARCHITECTURE_ID "RL78"
|
|
||||||
|
|
||||||
# elif defined(__CCRH__)
|
|
||||||
# define ARCHITECTURE_ID "RH850"
|
|
||||||
|
|
||||||
# else
|
|
||||||
# define ARCHITECTURE_ID ""
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#else
|
|
||||||
# define ARCHITECTURE_ID
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Convert integer to decimal digit literals. */
|
|
||||||
#define DEC(n) \
|
|
||||||
('0' + (((n) / 10000000)%10)), \
|
|
||||||
('0' + (((n) / 1000000)%10)), \
|
|
||||||
('0' + (((n) / 100000)%10)), \
|
|
||||||
('0' + (((n) / 10000)%10)), \
|
|
||||||
('0' + (((n) / 1000)%10)), \
|
|
||||||
('0' + (((n) / 100)%10)), \
|
|
||||||
('0' + (((n) / 10)%10)), \
|
|
||||||
('0' + ((n) % 10))
|
|
||||||
|
|
||||||
/* Convert integer to hex digit literals. */
|
|
||||||
#define HEX(n) \
|
|
||||||
('0' + ((n)>>28 & 0xF)), \
|
|
||||||
('0' + ((n)>>24 & 0xF)), \
|
|
||||||
('0' + ((n)>>20 & 0xF)), \
|
|
||||||
('0' + ((n)>>16 & 0xF)), \
|
|
||||||
('0' + ((n)>>12 & 0xF)), \
|
|
||||||
('0' + ((n)>>8 & 0xF)), \
|
|
||||||
('0' + ((n)>>4 & 0xF)), \
|
|
||||||
('0' + ((n) & 0xF))
|
|
||||||
|
|
||||||
/* Construct a string literal encoding the version number. */
|
|
||||||
#ifdef COMPILER_VERSION
|
|
||||||
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
|
|
||||||
|
|
||||||
/* Construct a string literal encoding the version number components. */
|
|
||||||
#elif defined(COMPILER_VERSION_MAJOR)
|
|
||||||
char const info_version[] = {
|
|
||||||
'I', 'N', 'F', 'O', ':',
|
|
||||||
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
|
|
||||||
COMPILER_VERSION_MAJOR,
|
|
||||||
# ifdef COMPILER_VERSION_MINOR
|
|
||||||
'.', COMPILER_VERSION_MINOR,
|
|
||||||
# ifdef COMPILER_VERSION_PATCH
|
|
||||||
'.', COMPILER_VERSION_PATCH,
|
|
||||||
# ifdef COMPILER_VERSION_TWEAK
|
|
||||||
'.', COMPILER_VERSION_TWEAK,
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
']','\0'};
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Construct a string literal encoding the internal version number. */
|
|
||||||
#ifdef COMPILER_VERSION_INTERNAL
|
|
||||||
char const info_version_internal[] = {
|
|
||||||
'I', 'N', 'F', 'O', ':',
|
|
||||||
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
|
|
||||||
'i','n','t','e','r','n','a','l','[',
|
|
||||||
COMPILER_VERSION_INTERNAL,']','\0'};
|
|
||||||
#elif defined(COMPILER_VERSION_INTERNAL_STR)
|
|
||||||
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Construct a string literal encoding the version number components. */
|
|
||||||
#ifdef SIMULATE_VERSION_MAJOR
|
|
||||||
char const info_simulate_version[] = {
|
|
||||||
'I', 'N', 'F', 'O', ':',
|
|
||||||
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
|
||||||
SIMULATE_VERSION_MAJOR,
|
|
||||||
# ifdef SIMULATE_VERSION_MINOR
|
|
||||||
'.', SIMULATE_VERSION_MINOR,
|
|
||||||
# ifdef SIMULATE_VERSION_PATCH
|
|
||||||
'.', SIMULATE_VERSION_PATCH,
|
|
||||||
# ifdef SIMULATE_VERSION_TWEAK
|
|
||||||
'.', SIMULATE_VERSION_TWEAK,
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
']','\0'};
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Construct the string literal in pieces to prevent the source from
|
|
||||||
getting matched. Store it in a pointer rather than an array
|
|
||||||
because some compilers will just produce instructions to fill the
|
|
||||||
array rather than assigning a pointer to a static array. */
|
|
||||||
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
|
||||||
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#define CXX_STD_98 199711L
|
|
||||||
#define CXX_STD_11 201103L
|
|
||||||
#define CXX_STD_14 201402L
|
|
||||||
#define CXX_STD_17 201703L
|
|
||||||
#define CXX_STD_20 202002L
|
|
||||||
#define CXX_STD_23 202302L
|
|
||||||
|
|
||||||
#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG)
|
|
||||||
# if _MSVC_LANG > CXX_STD_17
|
|
||||||
# define CXX_STD _MSVC_LANG
|
|
||||||
# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init)
|
|
||||||
# define CXX_STD CXX_STD_20
|
|
||||||
# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17
|
|
||||||
# define CXX_STD CXX_STD_20
|
|
||||||
# elif _MSVC_LANG > CXX_STD_14
|
|
||||||
# define CXX_STD CXX_STD_17
|
|
||||||
# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi)
|
|
||||||
# define CXX_STD CXX_STD_14
|
|
||||||
# elif defined(__INTEL_CXX11_MODE__)
|
|
||||||
# define CXX_STD CXX_STD_11
|
|
||||||
# else
|
|
||||||
# define CXX_STD CXX_STD_98
|
|
||||||
# endif
|
|
||||||
#elif defined(_MSC_VER) && defined(_MSVC_LANG)
|
|
||||||
# if _MSVC_LANG > __cplusplus
|
|
||||||
# define CXX_STD _MSVC_LANG
|
|
||||||
# else
|
|
||||||
# define CXX_STD __cplusplus
|
|
||||||
# endif
|
|
||||||
#elif defined(__NVCOMPILER)
|
|
||||||
# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init)
|
|
||||||
# define CXX_STD CXX_STD_20
|
|
||||||
# else
|
|
||||||
# define CXX_STD __cplusplus
|
|
||||||
# endif
|
|
||||||
#elif defined(__INTEL_COMPILER) || defined(__PGI)
|
|
||||||
# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes)
|
|
||||||
# define CXX_STD CXX_STD_17
|
|
||||||
# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi)
|
|
||||||
# define CXX_STD CXX_STD_14
|
|
||||||
# else
|
|
||||||
# define CXX_STD __cplusplus
|
|
||||||
# endif
|
|
||||||
#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__)
|
|
||||||
# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi)
|
|
||||||
# define CXX_STD CXX_STD_14
|
|
||||||
# else
|
|
||||||
# define CXX_STD __cplusplus
|
|
||||||
# endif
|
|
||||||
#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__)
|
|
||||||
# define CXX_STD CXX_STD_11
|
|
||||||
#else
|
|
||||||
# define CXX_STD __cplusplus
|
|
||||||
#endif
|
|
||||||
|
|
||||||
const char* info_language_standard_default = "INFO" ":" "standard_default["
|
|
||||||
#if CXX_STD > CXX_STD_23
|
|
||||||
"26"
|
|
||||||
#elif CXX_STD > CXX_STD_20
|
|
||||||
"23"
|
|
||||||
#elif CXX_STD > CXX_STD_17
|
|
||||||
"20"
|
|
||||||
#elif CXX_STD > CXX_STD_14
|
|
||||||
"17"
|
|
||||||
#elif CXX_STD > CXX_STD_11
|
|
||||||
"14"
|
|
||||||
#elif CXX_STD >= CXX_STD_11
|
|
||||||
"11"
|
|
||||||
#else
|
|
||||||
"98"
|
|
||||||
#endif
|
|
||||||
"]";
|
|
||||||
|
|
||||||
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
|
|
||||||
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
|
|
||||||
defined(__TI_COMPILER_VERSION__) || defined(__RENESAS__)) && \
|
|
||||||
!defined(__STRICT_ANSI__)
|
|
||||||
"ON"
|
|
||||||
#else
|
|
||||||
"OFF"
|
|
||||||
#endif
|
|
||||||
"]";
|
|
||||||
|
|
||||||
/*--------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
int main(int argc, char* argv[])
|
|
||||||
{
|
|
||||||
int require = 0;
|
|
||||||
require += info_compiler[argc];
|
|
||||||
require += info_platform[argc];
|
|
||||||
require += info_arch[argc];
|
|
||||||
#ifdef COMPILER_VERSION_MAJOR
|
|
||||||
require += info_version[argc];
|
|
||||||
#endif
|
|
||||||
#if defined(COMPILER_VERSION_INTERNAL) || defined(COMPILER_VERSION_INTERNAL_STR)
|
|
||||||
require += info_version_internal[argc];
|
|
||||||
#endif
|
|
||||||
#ifdef SIMULATE_ID
|
|
||||||
require += info_simulate[argc];
|
|
||||||
#endif
|
|
||||||
#ifdef SIMULATE_VERSION_MAJOR
|
|
||||||
require += info_simulate_version[argc];
|
|
||||||
#endif
|
|
||||||
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
|
||||||
require += info_cray[argc];
|
|
||||||
#endif
|
|
||||||
require += info_language_standard_default[argc];
|
|
||||||
require += info_language_extensions_default[argc];
|
|
||||||
(void)argv;
|
|
||||||
return require;
|
|
||||||
}
|
|
||||||
@@ -1,72 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|x64">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{CAE07175-D007-4FC3-BFE8-47B392814159}</ProjectGuid>
|
|
||||||
<RootNamespace>CompilerIdCXX</RootNamespace>
|
|
||||||
<Keyword>Win32Proj</Keyword>
|
|
||||||
|
|
||||||
|
|
||||||
<WindowsTargetPlatformVersion>10.0.26100.0</WindowsTargetPlatformVersion>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<PreferredToolArchitecture>x64</PreferredToolArchitecture>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<PlatformToolset>v143</PlatformToolset>
|
|
||||||
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup>
|
|
||||||
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">.\</OutDir>
|
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(Configuration)\</IntDir>
|
|
||||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkIncremental>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
||||||
<ClCompile>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<MinimalRebuild>false</MinimalRebuild>
|
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
|
||||||
<RuntimeLibrary Condition="'$(ApplicationType)'!='Android'">MultiThreadedDebugDLL</RuntimeLibrary>
|
|
||||||
<PrecompiledHeader>
|
|
||||||
</PrecompiledHeader>
|
|
||||||
<WarningLevel>TurnOffAllWarnings</WarningLevel>
|
|
||||||
<DebugInformationFormat>
|
|
||||||
</DebugInformationFormat>
|
|
||||||
</ClCompile>
|
|
||||||
|
|
||||||
<Link>
|
|
||||||
<GenerateDebugInformation>false</GenerateDebugInformation>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
|
|
||||||
</Link>
|
|
||||||
<PostBuildEvent>
|
|
||||||
<Command>for %%i in (cl.exe) do %40echo CMAKE_CXX_COMPILER=%%~$PATH:i</Command>
|
|
||||||
</PostBuildEvent>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="CMakeCXXCompilerId.cpp" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project>
|
|
||||||
<ProjectOutputs>
|
|
||||||
<ProjectOutput>
|
|
||||||
<FullPath>I:\source\render\build\CMakeFiles\4.1.1\CompilerIdCXX\CompilerIdCXX.exe</FullPath>
|
|
||||||
</ProjectOutput>
|
|
||||||
</ProjectOutputs>
|
|
||||||
<ContentFiles />
|
|
||||||
<SatelliteDlls />
|
|
||||||
<NonRecipeFileRefs />
|
|
||||||
</Project>
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
I:\source\render\build\CMakeFiles\4.1.1\CompilerIdCXX\CMakeCXXCompilerId.cpp;I:\source\render\build\CMakeFiles\4.1.1\CompilerIdCXX\Debug\CMakeCXXCompilerId.obj
|
|
||||||
-2
@@ -1,2 +0,0 @@
|
|||||||
PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.44.35207:TargetPlatformVersion=10.0.26100.0:
|
|
||||||
Debug|x64|I:\source\render\build\CMakeFiles\4.1.1\CompilerIdCXX\|
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
^I:\SOURCE\RENDER\BUILD\CMAKEFILES\4.1.1\COMPILERIDCXX\DEBUG\CMAKECXXCOMPILERID.OBJ
|
|
||||||
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
C:/Program Files/Microsoft Visual Studio/2022/Community/MSBuild/Microsoft/VC/v170
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|x64">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{F3FC6D86-508D-3FB1-96D2-995F08B142EC}</ProjectGuid>
|
|
||||||
<Keyword>Win32Proj</Keyword>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
<WindowsTargetPlatformVersion>10.0.26100.0</WindowsTargetPlatformVersion>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/>
|
|
||||||
<PropertyGroup>
|
|
||||||
<PreferredToolArchitecture>x64</PreferredToolArchitecture>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Label="Configuration">
|
|
||||||
<ConfigurationType>Utility</ConfigurationType>
|
|
||||||
<CharacterSet>MultiByte</CharacterSet>
|
|
||||||
<PlatformToolset>v143</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/>
|
|
||||||
<ItemDefinitionGroup>
|
|
||||||
<PostBuildEvent>
|
|
||||||
<Command>echo VCTargetsPath=$(VCTargetsPath)</Command>
|
|
||||||
</PostBuildEvent>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
|
|
||||||
</Project>
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project>
|
|
||||||
<ProjectOutputs>
|
|
||||||
<ProjectOutput>
|
|
||||||
<FullPath>I:\source\render\build\CMakeFiles\4.1.1\x64\Debug\VCTargetsPath</FullPath>
|
|
||||||
</ProjectOutput>
|
|
||||||
</ProjectOutputs>
|
|
||||||
<ContentFiles />
|
|
||||||
<SatelliteDlls />
|
|
||||||
<NonRecipeFileRefs />
|
|
||||||
</Project>
|
|
||||||
-2
@@ -1,2 +0,0 @@
|
|||||||
PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.44.35207:TargetPlatformVersion=10.0.26100.0:
|
|
||||||
Debug|x64|I:\source\render\build\CMakeFiles\4.1.1\|
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
# generated from CMake
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
"InstallScripts" :
|
|
||||||
[
|
|
||||||
"I:/source/render/build/cmake_install.cmake",
|
|
||||||
"I:/source/render/build/3rd/cmake_install.cmake",
|
|
||||||
"I:/source/render/build/core/cmake_install.cmake",
|
|
||||||
"I:/source/render/build/tool/cmake_install.cmake",
|
|
||||||
"I:/source/render/build/zassimp/cmake_install.cmake",
|
|
||||||
"I:/source/render/build/render/cmake_install.cmake",
|
|
||||||
"I:/source/render/build/console/cmake_install.cmake",
|
|
||||||
"I:/source/render/build/app/cmake_install.cmake"
|
|
||||||
],
|
|
||||||
"Parallel" : false
|
|
||||||
}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
I:/source/render/build/CMakeFiles/ALL_BUILD.dir
|
|
||||||
I:/source/render/build/CMakeFiles/ZERO_CHECK.dir
|
|
||||||
I:/source/render/build/core/CMakeFiles/core.dir
|
|
||||||
I:/source/render/build/tool/CMakeFiles/tool.dir
|
|
||||||
I:/source/render/build/zassimp/CMakeFiles/zassimp.dir
|
|
||||||
I:/source/render/build/render/CMakeFiles/render.dir
|
|
||||||
I:/source/render/build/console/CMakeFiles/console.dir
|
|
||||||
I:/source/render/build/app/CMakeFiles/app.dir
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
# CMAKE generated file: DO NOT EDIT!
|
|
||||||
# Generated by CMake Version 4.1
|
|
||||||
|
|
||||||
# TEMPLATE_FILES at CMakeLists.txt:65 (file)
|
|
||||||
file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "I:/source/render/template/*")
|
|
||||||
set(OLD_GLOB
|
|
||||||
"I:/source/render/template/include/event.hpp"
|
|
||||||
"I:/source/render/template/include/parallel_event.hpp"
|
|
||||||
"I:/source/render/template/include/wndbase.hpp"
|
|
||||||
)
|
|
||||||
if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}")
|
|
||||||
message("-- GLOB mismatch!")
|
|
||||||
file(TOUCH_NOCREATE "I:/source/render/build/CMakeFiles/cmake.verify_globs")
|
|
||||||
endif()
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
# This file is generated by CMake for checking of the VerifyGlobs.cmake file
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
# CMake generation timestamp file for this directory.
|
|
||||||
@@ -1,333 +0,0 @@
|
|||||||
# CMake generation dependency list for this directory.
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeCCompiler.cmake.in
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeCCompilerABI.c
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeCInformation.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeCXXCompiler.cmake.in
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeCXXCompilerABI.cpp
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeCXXInformation.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeCommonLanguageInclude.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeCompilerIdDetection.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCXXCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerABI.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerId.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineCompilerSupport.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineRCCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeDetermineSystem.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeFindBinUtils.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeFindDependencyMacro.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeGenericSystem.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeInitializeConfigs.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeLanguageInformation.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeParseImplicitIncludeInfo.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeParseImplicitLinkInfo.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeParseLibraryArchitecture.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeRCCompiler.cmake.in
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeRCInformation.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeSystem.cmake.in
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeSystemSpecificInformation.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeSystemSpecificInitialize.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeTestCCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeTestCXXCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeTestCompilerCommon.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CMakeTestRCCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CheckCSourceCompiles.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CheckCXXCompilerFlag.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CheckCXXSourceCompiles.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CheckIncludeFile.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CheckLibraryExists.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/ADSP-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/ARMCC-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/ARMClang-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/AppleClang-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/Borland-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/Bruce-C-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/CMakeCommonCompilerMacros.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/Clang-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/Clang-DetermineCompilerInternal.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/Compaq-C-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/Cray-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/CrayClang-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/Diab-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/Embarcadero-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/Fujitsu-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/GHS-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/GNU-C-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/HP-C-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/HP-CXX-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/IAR-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/Intel-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/LCC-C-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/MSVC-C.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/MSVC-CXX.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/MSVC-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/MSVC.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/NVHPC-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/NVIDIA-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/OrangeC-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/PGI-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/PathScale-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/Renesas-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/SCO-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/SDCC-C-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/SunPro-C-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/TI-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/TIClang-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/Tasking-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/Watcom-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/XL-C-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/XL-CXX-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/XLClang-C-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/zOS-C-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/CompilerId/VS-10.vcxproj.in
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/FindPackageHandleStandardArgs.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/FindPackageMessage.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/FindThreads.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/FindVulkan.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/GNUInstallDirs.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Internal/CMakeCLinkerInformation.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Internal/CMakeCXXLinkerInformation.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Internal/CMakeCommonLinkerInformation.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Internal/CMakeDetermineLinkerId.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Internal/CMakeInspectCLinker.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Internal/CMakeInspectCXXLinker.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Internal/CheckCompilerFlag.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Internal/CheckFlagCommonConfig.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Internal/CheckSourceCompiles.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Internal/FeatureTesting.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Linker/MSVC-C.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Linker/MSVC-CXX.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Linker/MSVC.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Platform/Linker/Windows-MSVC-C.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Platform/Linker/Windows-MSVC-CXX.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Platform/Linker/Windows-MSVC.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Platform/Windows-Determine-CXX.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Platform/Windows-Initialize.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Platform/Windows-MSVC-C.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Platform/Windows-MSVC-CXX.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Platform/Windows-MSVC.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Platform/Windows.cmake
|
|
||||||
C:/Program Files/CMake/share/cmake-4.1/Modules/Platform/WindowsPaths.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/FindWrapAtomic.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/Qt6Config.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/Qt6Dependencies.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/Qt6Targets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/QtFeature.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/QtFeatureCommon.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/QtInstallPaths.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Core/Qt6CoreTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessAliasTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6GuiTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QInsightTrackerPluginAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QInsightTrackerPluginConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QInsightTrackerPluginTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QInsightTrackerPluginTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QInsightTrackerPluginTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-debug.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake
|
|
||||||
C:/Qt/6.8.1/msvc2022_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessAliasTargets.cmake
|
|
||||||
I:/source/render/CMakeLists.txt
|
|
||||||
I:/source/render/CMakeLocalPath.cmake
|
|
||||||
I:/source/render/build/CMakeFiles/4.1.1/CMakeCCompiler.cmake
|
|
||||||
I:/source/render/build/CMakeFiles/4.1.1/CMakeCXXCompiler.cmake
|
|
||||||
I:/source/render/build/CMakeFiles/4.1.1/CMakeRCCompiler.cmake
|
|
||||||
I:/source/render/build/CMakeFiles/4.1.1/CMakeSystem.cmake
|
|
||||||
I:/source/render/build/CMakeFiles/cmake.verify_globs
|
|
||||||
I:/source/render/cmake/find_opencv.cmake
|
|
||||||
I:/source/render/cmake/find_qt.cmake
|
|
||||||
I:/source/render/cmake/find_vcpkg.cmake
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
I:/source/render/build/CMakeFiles/generate.stamp
|
|
||||||
I:/source/render/build/3rd/CMakeFiles/generate.stamp
|
|
||||||
I:/source/render/build/core/CMakeFiles/generate.stamp
|
|
||||||
I:/source/render/build/tool/CMakeFiles/generate.stamp
|
|
||||||
I:/source/render/build/zassimp/CMakeFiles/generate.stamp
|
|
||||||
I:/source/render/build/render/CMakeFiles/generate.stamp
|
|
||||||
I:/source/render/build/console/CMakeFiles/generate.stamp
|
|
||||||
I:/source/render/build/app/CMakeFiles/generate.stamp
|
|
||||||
File diff suppressed because one or more lines are too long
@@ -1,13 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="17.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup>
|
|
||||||
<CustomBuild Include="I:\source\render\build\CMakeFiles\9c95e085cac2e66da62c288e91be1662\generate.stamp.rule">
|
|
||||||
<Filter>CMake Rules</Filter>
|
|
||||||
</CustomBuild>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Filter Include="CMake Rules">
|
|
||||||
<UniqueIdentifier>{4E3A47B1-65DB-3373-822E-7C63C437709E}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
||||||
@@ -1,273 +0,0 @@
|
|||||||
{
|
|
||||||
"AUTOGEN_COMMAND_LINE_LENGTH_MAX" : 32000,
|
|
||||||
"BUILD_DIR" : "I:/source/render/build/app/app_autogen",
|
|
||||||
"CMAKE_BINARY_DIR" : "I:/source/render/build",
|
|
||||||
"CMAKE_CURRENT_BINARY_DIR" : "I:/source/render/build/app",
|
|
||||||
"CMAKE_CURRENT_SOURCE_DIR" : "I:/source/render/app",
|
|
||||||
"CMAKE_EXECUTABLE" : "C:/Program Files/CMake/bin/cmake.exe",
|
|
||||||
"CMAKE_LIST_FILES" : [ "I:/source/render/app/CMakeLists.txt" ],
|
|
||||||
"CMAKE_SOURCE_DIR" : "I:/source/render",
|
|
||||||
"CROSS_CONFIG" : false,
|
|
||||||
"DEP_FILE" : "",
|
|
||||||
"DEP_FILE_RULE_NAME" : "",
|
|
||||||
"HEADERS" :
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"I:/source/render/app/src/ListItemWidget.h",
|
|
||||||
"MU",
|
|
||||||
"UVLADIE3JM/moc_ListItemWidget.cpp",
|
|
||||||
null
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"I:/source/render/app/src/defs.h",
|
|
||||||
"MU",
|
|
||||||
"UVLADIE3JM/moc_defs.cpp",
|
|
||||||
null
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"I:/source/render/app/src/resource.h",
|
|
||||||
"MU",
|
|
||||||
"UVLADIE3JM/moc_resource.cpp",
|
|
||||||
null
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"I:/source/render/app/src/states.h",
|
|
||||||
"MU",
|
|
||||||
"UVLADIE3JM/moc_states.cpp",
|
|
||||||
null
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"I:/source/render/app/src/wgt_prop_input.h",
|
|
||||||
"MU",
|
|
||||||
"UVLADIE3JM/moc_wgt_prop_input.cpp",
|
|
||||||
null
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"I:/source/render/app/src/wnd_create_mat.h",
|
|
||||||
"MU",
|
|
||||||
"UVLADIE3JM/moc_wnd_create_mat.cpp",
|
|
||||||
null
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"I:/source/render/app/src/wnd_debug.h",
|
|
||||||
"MU",
|
|
||||||
"UVLADIE3JM/moc_wnd_debug.cpp",
|
|
||||||
null
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"I:/source/render/app/src/wnd_hierachy.h",
|
|
||||||
"MU",
|
|
||||||
"UVLADIE3JM/moc_wnd_hierachy.cpp",
|
|
||||||
null
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"I:/source/render/app/src/wnd_inspector.h",
|
|
||||||
"MU",
|
|
||||||
"UVLADIE3JM/moc_wnd_inspector.cpp",
|
|
||||||
null
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"I:/source/render/app/src/wnd_main.h",
|
|
||||||
"MU",
|
|
||||||
"UVLADIE3JM/moc_wnd_main.cpp",
|
|
||||||
null
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"I:/source/render/app/src/wnd_resource.h",
|
|
||||||
"MU",
|
|
||||||
"UVLADIE3JM/moc_wnd_resource.cpp",
|
|
||||||
null
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ],
|
|
||||||
"INCLUDE_DIR" : "I:/source/render/build/app/app_autogen/include",
|
|
||||||
"INCLUDE_DIR_Debug" : "I:/source/render/build/app/app_autogen/include_Debug",
|
|
||||||
"INCLUDE_DIR_MinSizeRel" : "I:/source/render/build/app/app_autogen/include_MinSizeRel",
|
|
||||||
"INCLUDE_DIR_RelWithDebInfo" : "I:/source/render/build/app/app_autogen/include_RelWithDebInfo",
|
|
||||||
"INCLUDE_DIR_Release" : "I:/source/render/build/app/app_autogen/include_Release",
|
|
||||||
"MOC_COMPILATION_FILE" : "I:/source/render/build/app/app_autogen/mocs_compilation.cpp",
|
|
||||||
"MOC_COMPILATION_FILE_Debug" : "I:/source/render/build/app/app_autogen/mocs_compilation_Debug.cpp",
|
|
||||||
"MOC_COMPILATION_FILE_MinSizeRel" : "I:/source/render/build/app/app_autogen/mocs_compilation_MinSizeRel.cpp",
|
|
||||||
"MOC_COMPILATION_FILE_RelWithDebInfo" : "I:/source/render/build/app/app_autogen/mocs_compilation_RelWithDebInfo.cpp",
|
|
||||||
"MOC_COMPILATION_FILE_Release" : "I:/source/render/build/app/app_autogen/mocs_compilation_Release.cpp",
|
|
||||||
"MOC_DEFINITIONS" : [],
|
|
||||||
"MOC_DEFINITIONS_Debug" :
|
|
||||||
[
|
|
||||||
"NOMINMAX",
|
|
||||||
"QT_CORE_LIB",
|
|
||||||
"QT_GUI_LIB",
|
|
||||||
"QT_WIDGETS_LIB",
|
|
||||||
"UNICODE",
|
|
||||||
"WIN32",
|
|
||||||
"WIN32_LEAN_AND_MEAN",
|
|
||||||
"WIN64",
|
|
||||||
"_ENABLE_EXTENDED_ALIGNED_STORAGE",
|
|
||||||
"_UNICODE",
|
|
||||||
"_WIN64"
|
|
||||||
],
|
|
||||||
"MOC_DEFINITIONS_MinSizeRel" :
|
|
||||||
[
|
|
||||||
"NOMINMAX",
|
|
||||||
"QT_CORE_LIB",
|
|
||||||
"QT_GUI_LIB",
|
|
||||||
"QT_NO_DEBUG",
|
|
||||||
"QT_WIDGETS_LIB",
|
|
||||||
"UNICODE",
|
|
||||||
"WIN32",
|
|
||||||
"WIN32_LEAN_AND_MEAN",
|
|
||||||
"WIN64",
|
|
||||||
"_ENABLE_EXTENDED_ALIGNED_STORAGE",
|
|
||||||
"_UNICODE",
|
|
||||||
"_WIN64"
|
|
||||||
],
|
|
||||||
"MOC_DEFINITIONS_RelWithDebInfo" :
|
|
||||||
[
|
|
||||||
"NOMINMAX",
|
|
||||||
"QT_CORE_LIB",
|
|
||||||
"QT_GUI_LIB",
|
|
||||||
"QT_NO_DEBUG",
|
|
||||||
"QT_WIDGETS_LIB",
|
|
||||||
"UNICODE",
|
|
||||||
"WIN32",
|
|
||||||
"WIN32_LEAN_AND_MEAN",
|
|
||||||
"WIN64",
|
|
||||||
"_ENABLE_EXTENDED_ALIGNED_STORAGE",
|
|
||||||
"_UNICODE",
|
|
||||||
"_WIN64"
|
|
||||||
],
|
|
||||||
"MOC_DEFINITIONS_Release" :
|
|
||||||
[
|
|
||||||
"NOMINMAX",
|
|
||||||
"QT_CORE_LIB",
|
|
||||||
"QT_GUI_LIB",
|
|
||||||
"QT_NO_DEBUG",
|
|
||||||
"QT_WIDGETS_LIB",
|
|
||||||
"UNICODE",
|
|
||||||
"WIN32",
|
|
||||||
"WIN32_LEAN_AND_MEAN",
|
|
||||||
"WIN64",
|
|
||||||
"_ENABLE_EXTENDED_ALIGNED_STORAGE",
|
|
||||||
"_UNICODE",
|
|
||||||
"_WIN64"
|
|
||||||
],
|
|
||||||
"MOC_DEPEND_FILTERS" :
|
|
||||||
[
|
|
||||||
[
|
|
||||||
"Q_PLUGIN_METADATA",
|
|
||||||
"[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\""
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"MOC_INCLUDES" : [],
|
|
||||||
"MOC_INCLUDES_Debug" :
|
|
||||||
[
|
|
||||||
"I:/source/render/render/include",
|
|
||||||
"I:/source/render/template/include",
|
|
||||||
"I:/source/render/core/include",
|
|
||||||
"I:/source/render/zassimp/include",
|
|
||||||
"I:/source/render/tool/include",
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/include/QtCore",
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/include",
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/mkspecs/win32-msvc",
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/include/QtGui",
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/include/QtWidgets"
|
|
||||||
],
|
|
||||||
"MOC_INCLUDES_MinSizeRel" :
|
|
||||||
[
|
|
||||||
"I:/source/render/render/include",
|
|
||||||
"I:/source/render/template/include",
|
|
||||||
"I:/source/render/core/include",
|
|
||||||
"I:/source/render/zassimp/include",
|
|
||||||
"I:/source/render/tool/include",
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/include/QtCore",
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/include",
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/mkspecs/win32-msvc",
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/include/QtGui",
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/include/QtWidgets"
|
|
||||||
],
|
|
||||||
"MOC_INCLUDES_RelWithDebInfo" :
|
|
||||||
[
|
|
||||||
"I:/source/render/render/include",
|
|
||||||
"I:/source/render/template/include",
|
|
||||||
"I:/source/render/core/include",
|
|
||||||
"I:/source/render/zassimp/include",
|
|
||||||
"I:/source/render/tool/include",
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/include/QtCore",
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/include",
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/mkspecs/win32-msvc",
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/include/QtGui",
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/include/QtWidgets"
|
|
||||||
],
|
|
||||||
"MOC_INCLUDES_Release" :
|
|
||||||
[
|
|
||||||
"I:/source/render/render/include",
|
|
||||||
"I:/source/render/template/include",
|
|
||||||
"I:/source/render/core/include",
|
|
||||||
"I:/source/render/zassimp/include",
|
|
||||||
"I:/source/render/tool/include",
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/include/QtCore",
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/include",
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/mkspecs/win32-msvc",
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/include/QtGui",
|
|
||||||
"C:/Qt/6.8.1/msvc2022_64/include/QtWidgets"
|
|
||||||
],
|
|
||||||
"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" : [],
|
|
||||||
"MOC_PREDEFS_FILE" : "",
|
|
||||||
"MOC_RELAXED_MODE" : false,
|
|
||||||
"MOC_SKIP" : [],
|
|
||||||
"MULTI_CONFIG" : true,
|
|
||||||
"PARALLEL" : 6,
|
|
||||||
"PARSE_CACHE_FILE" : "I:/source/render/build/app/CMakeFiles/app_autogen.dir/ParseCache.txt",
|
|
||||||
"PARSE_CACHE_FILE_Debug" : "I:/source/render/build/app/CMakeFiles/app_autogen.dir/ParseCache_Debug.txt",
|
|
||||||
"PARSE_CACHE_FILE_MinSizeRel" : "I:/source/render/build/app/CMakeFiles/app_autogen.dir/ParseCache_MinSizeRel.txt",
|
|
||||||
"PARSE_CACHE_FILE_RelWithDebInfo" : "I:/source/render/build/app/CMakeFiles/app_autogen.dir/ParseCache_RelWithDebInfo.txt",
|
|
||||||
"PARSE_CACHE_FILE_Release" : "I:/source/render/build/app/CMakeFiles/app_autogen.dir/ParseCache_Release.txt",
|
|
||||||
"QT_MOC_EXECUTABLE" : "",
|
|
||||||
"QT_MOC_EXECUTABLE_Debug" : "C:/Qt/6.8.1/msvc2022_64/bin/moc.exe",
|
|
||||||
"QT_MOC_EXECUTABLE_MinSizeRel" : "C:/Qt/6.8.1/msvc2022_64/bin/moc.exe",
|
|
||||||
"QT_MOC_EXECUTABLE_RelWithDebInfo" : "C:/Qt/6.8.1/msvc2022_64/bin/moc.exe",
|
|
||||||
"QT_MOC_EXECUTABLE_Release" : "C:/Qt/6.8.1/msvc2022_64/bin/moc.exe",
|
|
||||||
"QT_UIC_EXECUTABLE" : "",
|
|
||||||
"QT_UIC_EXECUTABLE_Debug" : "C:/Qt/6.8.1/msvc2022_64/bin/uic.exe",
|
|
||||||
"QT_UIC_EXECUTABLE_MinSizeRel" : "C:/Qt/6.8.1/msvc2022_64/bin/uic.exe",
|
|
||||||
"QT_UIC_EXECUTABLE_RelWithDebInfo" : "C:/Qt/6.8.1/msvc2022_64/bin/uic.exe",
|
|
||||||
"QT_UIC_EXECUTABLE_Release" : "C:/Qt/6.8.1/msvc2022_64/bin/uic.exe",
|
|
||||||
"QT_VERSION_MAJOR" : 6,
|
|
||||||
"QT_VERSION_MINOR" : 8,
|
|
||||||
"SETTINGS_FILE" : "I:/source/render/build/app/CMakeFiles/app_autogen.dir/AutogenUsed.txt",
|
|
||||||
"SETTINGS_FILE_Debug" : "I:/source/render/build/app/CMakeFiles/app_autogen.dir/AutogenUsed_Debug.txt",
|
|
||||||
"SETTINGS_FILE_MinSizeRel" : "I:/source/render/build/app/CMakeFiles/app_autogen.dir/AutogenUsed_MinSizeRel.txt",
|
|
||||||
"SETTINGS_FILE_RelWithDebInfo" : "I:/source/render/build/app/CMakeFiles/app_autogen.dir/AutogenUsed_RelWithDebInfo.txt",
|
|
||||||
"SETTINGS_FILE_Release" : "I:/source/render/build/app/CMakeFiles/app_autogen.dir/AutogenUsed_Release.txt",
|
|
||||||
"SOURCES" :
|
|
||||||
[
|
|
||||||
[ "I:/source/render/app/src/ListItemWidget.cpp", "MU", null ],
|
|
||||||
[ "I:/source/render/app/src/defs.cpp", "MU", null ],
|
|
||||||
[ "I:/source/render/app/src/main.cpp", "MU", null ],
|
|
||||||
[ "I:/source/render/app/src/resource.cpp", "MU", null ],
|
|
||||||
[ "I:/source/render/app/src/states.cpp", "MU", null ],
|
|
||||||
[ "I:/source/render/app/src/wgt_prop_input.cpp", "MU", null ],
|
|
||||||
[ "I:/source/render/app/src/wnd_create_mat.cpp", "MU", null ],
|
|
||||||
[ "I:/source/render/app/src/wnd_debug.cpp", "MU", null ],
|
|
||||||
[ "I:/source/render/app/src/wnd_hierachy.cpp", "MU", null ],
|
|
||||||
[ "I:/source/render/app/src/wnd_inspector.cpp", "MU", null ],
|
|
||||||
[ "I:/source/render/app/src/wnd_main.cpp", "MU", null ],
|
|
||||||
[ "I:/source/render/app/src/wnd_resource.cpp", "MU", null ]
|
|
||||||
],
|
|
||||||
"UIC_OPTIONS" : [],
|
|
||||||
"UIC_SEARCH_PATHS" : [],
|
|
||||||
"UIC_SKIP" : [],
|
|
||||||
"UIC_UI_FILES" : [],
|
|
||||||
"USE_BETTER_GRAPH" : true,
|
|
||||||
"VERBOSITY" : 0
|
|
||||||
}
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
moc:3997cdc8ab6dedfb6636632184a97a7a7430e19ef667739771905bfd6838dc5b
|
|
||||||
uic:e6953d058e9dbade36a5b78d7a4be0dffe3add4d0a3a2ced3a13fa95f72c0d85
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1 +0,0 @@
|
|||||||
# CMake generation timestamp file for this directory.
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
# CMake generation dependency list for this directory.
|
|
||||||
I:/source/render/app/CMakeLists.txt
|
|
||||||
I:/source/render/build/CMakeFiles/cmake.verify_globs
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project>
|
|
||||||
<ProjectOutputs>
|
|
||||||
<ProjectOutput>
|
|
||||||
<FullPath>I:\source\render\build\x64\Debug\ZERO_CHECK</FullPath>
|
|
||||||
</ProjectOutput>
|
|
||||||
<ProjectOutput>
|
|
||||||
<FullPath>I:\source\render\build\core\x64\Debug\core</FullPath>
|
|
||||||
</ProjectOutput>
|
|
||||||
<ProjectOutput>
|
|
||||||
<FullPath>I:\source\render\build\bin\Debug\render.dll</FullPath>
|
|
||||||
</ProjectOutput>
|
|
||||||
<ProjectOutput>
|
|
||||||
<FullPath>I:\source\render\build\bin\Debug\app.exe</FullPath>
|
|
||||||
</ProjectOutput>
|
|
||||||
</ProjectOutputs>
|
|
||||||
<ContentFiles />
|
|
||||||
<SatelliteDlls />
|
|
||||||
<NonRecipeFileRefs />
|
|
||||||
</Project>
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,13 +0,0 @@
|
|||||||
I:\source\render\build\app\app_autogen\mocs_compilation_Debug.cpp;I:\source\render\build\app\app.dir\Debug\mocs_compilation_Debug.obj
|
|
||||||
I:\source\render\app\src\main.cpp;I:\source\render\build\app\app.dir\Debug\main.obj
|
|
||||||
I:\source\render\app\src\wnd_main.cpp;I:\source\render\build\app\app.dir\Debug\wnd_main.obj
|
|
||||||
I:\source\render\app\src\defs.cpp;I:\source\render\build\app\app.dir\Debug\defs.obj
|
|
||||||
I:\source\render\app\src\resource.cpp;I:\source\render\build\app\app.dir\Debug\resource.obj
|
|
||||||
I:\source\render\app\src\wnd_resource.cpp;I:\source\render\build\app\app.dir\Debug\wnd_resource.obj
|
|
||||||
I:\source\render\app\src\wnd_inspector.cpp;I:\source\render\build\app\app.dir\Debug\wnd_inspector.obj
|
|
||||||
I:\source\render\app\src\wnd_hierachy.cpp;I:\source\render\build\app\app.dir\Debug\wnd_hierachy.obj
|
|
||||||
I:\source\render\app\src\wnd_debug.cpp;I:\source\render\build\app\app.dir\Debug\wnd_debug.obj
|
|
||||||
I:\source\render\app\src\states.cpp;I:\source\render\build\app\app.dir\Debug\states.obj
|
|
||||||
I:\source\render\app\src\ListItemWidget.cpp;I:\source\render\build\app\app.dir\Debug\ListItemWidget.obj
|
|
||||||
I:\source\render\app\src\wnd_create_mat.cpp;I:\source\render\build\app\app.dir\Debug\wnd_create_mat.obj
|
|
||||||
I:\source\render\app\src\wgt_prop_input.cpp;I:\source\render\build\app\app.dir\Debug\wgt_prop_input.obj
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
^I:\SOURCE\RENDER\APP\CMAKELISTS.TXT
|
|
||||||
setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -SI:/source/render -BI:/source/render/build --check-stamp-file I:/source/render/build/app/CMakeFiles/generate.stamp
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
^I:\SOURCE\RENDER\APP\CMAKELISTS.TXT
|
|
||||||
I:\SOURCE\RENDER\BUILD\CMAKEFILES\CMAKE.VERIFY_GLOBS
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
^I:\SOURCE\RENDER\APP\CMAKELISTS.TXT
|
|
||||||
I:\SOURCE\RENDER\BUILD\APP\CMAKEFILES\GENERATE.STAMP
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.44.35207:TargetPlatformVersion=10.0.26100.0:
|
|
||||||
Debug|x64|I:\source\render\build\app\|
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,2 +0,0 @@
|
|||||||
^I:\SOURCE\RENDER\BUILD\APP\APP.DIR\DEBUG\DEFS.OBJ|I:\SOURCE\RENDER\BUILD\APP\APP.DIR\DEBUG\LISTITEMWIDGET.OBJ|I:\SOURCE\RENDER\BUILD\APP\APP.DIR\DEBUG\MAIN.OBJ|I:\SOURCE\RENDER\BUILD\APP\APP.DIR\DEBUG\MOCS_COMPILATION_DEBUG.OBJ|I:\SOURCE\RENDER\BUILD\APP\APP.DIR\DEBUG\RESOURCE.OBJ|I:\SOURCE\RENDER\BUILD\APP\APP.DIR\DEBUG\STATES.OBJ|I:\SOURCE\RENDER\BUILD\APP\APP.DIR\DEBUG\WGT_PROP_INPUT.OBJ|I:\SOURCE\RENDER\BUILD\APP\APP.DIR\DEBUG\WND_CREATE_MAT.OBJ|I:\SOURCE\RENDER\BUILD\APP\APP.DIR\DEBUG\WND_DEBUG.OBJ|I:\SOURCE\RENDER\BUILD\APP\APP.DIR\DEBUG\WND_HIERACHY.OBJ|I:\SOURCE\RENDER\BUILD\APP\APP.DIR\DEBUG\WND_INSPECTOR.OBJ|I:\SOURCE\RENDER\BUILD\APP\APP.DIR\DEBUG\WND_MAIN.OBJ|I:\SOURCE\RENDER\BUILD\APP\APP.DIR\DEBUG\WND_RESOURCE.OBJ
|
|
||||||
I:\source\render\build\app\app.dir\Debug\app.ilk
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,701 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" ToolsVersion="17.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<PropertyGroup>
|
|
||||||
<PreferredToolArchitecture>x64</PreferredToolArchitecture>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|x64">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|x64">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="MinSizeRel|x64">
|
|
||||||
<Configuration>MinSizeRel</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="RelWithDebInfo|x64">
|
|
||||||
<Configuration>RelWithDebInfo</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<ProjectGuid>{8E2A89D9-6F98-3BCC-A716-CFC48C71DDF6}</ProjectGuid>
|
|
||||||
<Keyword>Win32Proj</Keyword>
|
|
||||||
<WindowsTargetPlatformVersion>10.0.26100.0</WindowsTargetPlatformVersion>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
<ProjectName>app</ProjectName>
|
|
||||||
<VCProjectUpgraderObjectName>NoUpgrade</VCProjectUpgraderObjectName>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
|
||||||
<PlatformToolset>v143</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
|
||||||
<PlatformToolset>v143</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
|
||||||
<PlatformToolset>v143</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'" Label="Configuration">
|
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
|
||||||
<PlatformToolset>v143</PlatformToolset>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup Label="UserMacros" />
|
|
||||||
<PropertyGroup>
|
|
||||||
<_ProjectFileVersion>10.0.20506.1</_ProjectFileVersion>
|
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">I:\source\render\build\bin\Debug\</OutDir>
|
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">app.dir\Debug\</IntDir>
|
|
||||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">app</TargetName>
|
|
||||||
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">.exe</TargetExt>
|
|
||||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental>
|
|
||||||
<GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</GenerateManifest>
|
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">I:\source\render\build\bin\Release\</OutDir>
|
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">app.dir\Release\</IntDir>
|
|
||||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">app</TargetName>
|
|
||||||
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|x64'">.exe</TargetExt>
|
|
||||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental>
|
|
||||||
<GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</GenerateManifest>
|
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">I:\source\render\build\bin\MinSizeRel\</OutDir>
|
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">app.dir\MinSizeRel\</IntDir>
|
|
||||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">app</TargetName>
|
|
||||||
<TargetExt Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">.exe</TargetExt>
|
|
||||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">false</LinkIncremental>
|
|
||||||
<GenerateManifest Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">true</GenerateManifest>
|
|
||||||
<OutDir Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">I:\source\render\build\bin\RelWithDebInfo\</OutDir>
|
|
||||||
<IntDir Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">app.dir\RelWithDebInfo\</IntDir>
|
|
||||||
<TargetName Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">app</TargetName>
|
|
||||||
<TargetExt Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">.exe</TargetExt>
|
|
||||||
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">true</LinkIncremental>
|
|
||||||
<GenerateManifest Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">true</GenerateManifest>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
||||||
<ClCompile>
|
|
||||||
<AdditionalIncludeDirectories>I:\source\render\build\app\app_autogen\include_Debug;I:\source\render\render\include;I:\source\render\template\include;I:\source\render\core\include;I:\source\render\zassimp\include;I:\source\render\tool\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<AdditionalOptions>%(AdditionalOptions) /external:I "C:/Qt/6.8.1/msvc2022_64/include/QtCore" /external:I "C:/Qt/6.8.1/msvc2022_64/include" /external:I "C:/Qt/6.8.1/msvc2022_64/mkspecs/win32-msvc" /external:I "C:/Qt/6.8.1/msvc2022_64/include/QtGui" /external:I "C:/Qt/6.8.1/msvc2022_64/include/QtWidgets" /utf-8 -Zc:__cplusplus -utf-8</AdditionalOptions>
|
|
||||||
<AssemblerListingLocation>$(IntDir)</AssemblerListingLocation>
|
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
|
||||||
<ConformanceMode>true</ConformanceMode>
|
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
||||||
<ExceptionHandling>Sync</ExceptionHandling>
|
|
||||||
<ExternalWarningLevel>TurnOffAllWarnings</ExternalWarningLevel>
|
|
||||||
<ForceConformanceInForLoopScope></ForceConformanceInForLoopScope>
|
|
||||||
<InlineFunctionExpansion>Disabled</InlineFunctionExpansion>
|
|
||||||
<LanguageStandard>stdcpplatest</LanguageStandard>
|
|
||||||
<MinimalRebuild></MinimalRebuild>
|
|
||||||
<Optimization>Disabled</Optimization>
|
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
||||||
<RemoveUnreferencedCodeData></RemoveUnreferencedCodeData>
|
|
||||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
|
||||||
<SupportJustMyCode></SupportJustMyCode>
|
|
||||||
<TreatWChar_tAsBuiltInType></TreatWChar_tAsBuiltInType>
|
|
||||||
<UseFullPaths>false</UseFullPaths>
|
|
||||||
<PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;WIN32_LEAN_AND_MEAN;NOMINMAX;UNICODE;_UNICODE;QT_CORE_LIB;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;_WIN64;QT_GUI_LIB;QT_WIDGETS_LIB;CMAKE_INTDIR="Debug"</PreprocessorDefinitions>
|
|
||||||
<ObjectFileName>$(IntDir)</ObjectFileName>
|
|
||||||
<ScanSourceForModuleDependencies>false</ScanSourceForModuleDependencies>
|
|
||||||
</ClCompile>
|
|
||||||
<ResourceCompile>
|
|
||||||
<PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;NOMINMAX;UNICODE;_UNICODE;QT_CORE_LIB;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;_WIN64;QT_GUI_LIB;QT_WIDGETS_LIB;CMAKE_INTDIR=\"Debug\"</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories>I:\source\render\build\app\app_autogen\include_Debug;I:\source\render\render\include;I:\source\render\template\include;I:\source\render\core\include;I:\source\render\zassimp\include;I:\source\render\tool\include;C:\Qt\6.8.1\msvc2022_64\include\QtCore;C:\Qt\6.8.1\msvc2022_64\include;C:\Qt\6.8.1\msvc2022_64\mkspecs\win32-msvc;C:\Qt\6.8.1\msvc2022_64\include\QtGui;C:\Qt\6.8.1\msvc2022_64\include\QtWidgets;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
</ResourceCompile>
|
|
||||||
<Midl>
|
|
||||||
<AdditionalIncludeDirectories>I:\source\render\build\app\app_autogen\include_Debug;I:\source\render\render\include;I:\source\render\template\include;I:\source\render\core\include;I:\source\render\zassimp\include;I:\source\render\tool\include;C:\Qt\6.8.1\msvc2022_64\include\QtCore;C:\Qt\6.8.1\msvc2022_64\include;C:\Qt\6.8.1\msvc2022_64\mkspecs\win32-msvc;C:\Qt\6.8.1\msvc2022_64\include\QtGui;C:\Qt\6.8.1\msvc2022_64\include\QtWidgets;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
||||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
||||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
||||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
|
||||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
|
||||||
</Midl>
|
|
||||||
<PreBuildEvent>
|
|
||||||
<UseUtf8Encoding>Always</UseUtf8Encoding>
|
|
||||||
<Message>Automatic MOC and UIC for target app</Message>
|
|
||||||
<Command>setlocal
|
|
||||||
cd I:\source\render\build\app
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
I:
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E cmake_autogen I:/source/render/build/app/CMakeFiles/app_autogen.dir/AutogenInfo.json Debug
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
||||||
</PreBuildEvent>
|
|
||||||
<PostBuildEvent>
|
|
||||||
<Message> </Message>
|
|
||||||
<Command>setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E make_directory I:/source/render/build/bin/Debug/plugins/platforms/
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd
|
|
||||||
setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E copy C:/Qt/6.8.1/msvc2022_64/plugins/platforms/qwindowsd.dll I:/source/render/build/bin/Debug/plugins/platforms/
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd
|
|
||||||
setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E copy C:/Qt/6.8.1/msvc2022_64/bin/Qt6Cored.dll I:/source/render/build/bin/Debug
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd
|
|
||||||
setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E copy C:/Qt/6.8.1/msvc2022_64/bin/Qt6Guid.dll I:/source/render/build/bin/Debug
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd
|
|
||||||
setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E copy C:/Qt/6.8.1/msvc2022_64/bin/Qt6Widgetsd.dll I:/source/render/build/bin/Debug
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
||||||
</PostBuildEvent>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>C:\Qt\6.8.1\msvc2022_64\lib\Qt6Widgetsd.lib;..\render\Debug\render.lib;..\zassimp\Debug\zassimp.lib;..\tool\Debug\tool.lib;ole32.lib;windowscodecs.lib;C:\Qt\6.8.1\msvc2022_64\lib\Qt6Guid.lib;C:\Qt\6.8.1\msvc2022_64\lib\Qt6Cored.lib;mpr.lib;userenv.lib;d3d11.lib;dxgi.lib;dxguid.lib;d3d12.lib;I:\source\render\3rd\assimp\Debug\lib\assimp-vc143-mtd.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib</AdditionalDependencies>
|
|
||||||
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
||||||
<AdditionalOptions>%(AdditionalOptions) /machine:x64</AdditionalOptions>
|
|
||||||
<DataExecutionPrevention></DataExecutionPrevention>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<IgnoreSpecificDefaultLibraries>%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
|
||||||
<ImageHasSafeExceptionHandlers></ImageHasSafeExceptionHandlers>
|
|
||||||
<ImportLibrary>I:/source/render/build/app/Debug/app.lib</ImportLibrary>
|
|
||||||
<LinkErrorReporting></LinkErrorReporting>
|
|
||||||
<ProgramDataBaseFile>I:/source/render/build/bin/Debug/app.pdb</ProgramDataBaseFile>
|
|
||||||
<RandomizedBaseAddress></RandomizedBaseAddress>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
</Link>
|
|
||||||
<ProjectReference>
|
|
||||||
<LinkLibraryDependencies>false</LinkLibraryDependencies>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
||||||
<ClCompile>
|
|
||||||
<AdditionalIncludeDirectories>I:\source\render\build\app\app_autogen\include_Release;I:\source\render\render\include;I:\source\render\template\include;I:\source\render\core\include;I:\source\render\zassimp\include;I:\source\render\tool\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<AdditionalOptions>%(AdditionalOptions) /external:I "C:/Qt/6.8.1/msvc2022_64/include/QtCore" /external:I "C:/Qt/6.8.1/msvc2022_64/include" /external:I "C:/Qt/6.8.1/msvc2022_64/mkspecs/win32-msvc" /external:I "C:/Qt/6.8.1/msvc2022_64/include/QtGui" /external:I "C:/Qt/6.8.1/msvc2022_64/include/QtWidgets" /utf-8 -Zc:__cplusplus -utf-8</AdditionalOptions>
|
|
||||||
<AssemblerListingLocation>$(IntDir)</AssemblerListingLocation>
|
|
||||||
<BasicRuntimeChecks>Default</BasicRuntimeChecks>
|
|
||||||
<ConformanceMode>true</ConformanceMode>
|
|
||||||
<ExceptionHandling>Sync</ExceptionHandling>
|
|
||||||
<ExternalWarningLevel>TurnOffAllWarnings</ExternalWarningLevel>
|
|
||||||
<ForceConformanceInForLoopScope></ForceConformanceInForLoopScope>
|
|
||||||
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
|
|
||||||
<LanguageStandard>stdcpplatest</LanguageStandard>
|
|
||||||
<MinimalRebuild></MinimalRebuild>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
||||||
<RemoveUnreferencedCodeData></RemoveUnreferencedCodeData>
|
|
||||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
||||||
<SupportJustMyCode></SupportJustMyCode>
|
|
||||||
<TreatWChar_tAsBuiltInType></TreatWChar_tAsBuiltInType>
|
|
||||||
<UseFullPaths>false</UseFullPaths>
|
|
||||||
<PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;WIN32_LEAN_AND_MEAN;NOMINMAX;UNICODE;_UNICODE;QT_CORE_LIB;QT_NO_DEBUG;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;_WIN64;QT_GUI_LIB;QT_WIDGETS_LIB;CMAKE_INTDIR="Release"</PreprocessorDefinitions>
|
|
||||||
<ObjectFileName>$(IntDir)</ObjectFileName>
|
|
||||||
<DebugInformationFormat>
|
|
||||||
</DebugInformationFormat>
|
|
||||||
<ScanSourceForModuleDependencies>false</ScanSourceForModuleDependencies>
|
|
||||||
</ClCompile>
|
|
||||||
<ResourceCompile>
|
|
||||||
<PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;WIN32_LEAN_AND_MEAN;NOMINMAX;UNICODE;_UNICODE;QT_CORE_LIB;QT_NO_DEBUG;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;_WIN64;QT_GUI_LIB;QT_WIDGETS_LIB;CMAKE_INTDIR=\"Release\"</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories>I:\source\render\build\app\app_autogen\include_Release;I:\source\render\render\include;I:\source\render\template\include;I:\source\render\core\include;I:\source\render\zassimp\include;I:\source\render\tool\include;C:\Qt\6.8.1\msvc2022_64\include\QtCore;C:\Qt\6.8.1\msvc2022_64\include;C:\Qt\6.8.1\msvc2022_64\mkspecs\win32-msvc;C:\Qt\6.8.1\msvc2022_64\include\QtGui;C:\Qt\6.8.1\msvc2022_64\include\QtWidgets;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
</ResourceCompile>
|
|
||||||
<Midl>
|
|
||||||
<AdditionalIncludeDirectories>I:\source\render\build\app\app_autogen\include_Release;I:\source\render\render\include;I:\source\render\template\include;I:\source\render\core\include;I:\source\render\zassimp\include;I:\source\render\tool\include;C:\Qt\6.8.1\msvc2022_64\include\QtCore;C:\Qt\6.8.1\msvc2022_64\include;C:\Qt\6.8.1\msvc2022_64\mkspecs\win32-msvc;C:\Qt\6.8.1\msvc2022_64\include\QtGui;C:\Qt\6.8.1\msvc2022_64\include\QtWidgets;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
||||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
||||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
||||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
|
||||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
|
||||||
</Midl>
|
|
||||||
<PreBuildEvent>
|
|
||||||
<UseUtf8Encoding>Always</UseUtf8Encoding>
|
|
||||||
<Message>Automatic MOC and UIC for target app</Message>
|
|
||||||
<Command>setlocal
|
|
||||||
cd I:\source\render\build\app
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
I:
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E cmake_autogen I:/source/render/build/app/CMakeFiles/app_autogen.dir/AutogenInfo.json Release
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
||||||
</PreBuildEvent>
|
|
||||||
<PostBuildEvent>
|
|
||||||
<Message> </Message>
|
|
||||||
<Command>setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E make_directory I:/source/render/build/bin/Release/plugins/platforms/
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd
|
|
||||||
setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E copy C:/Qt/6.8.1/msvc2022_64/plugins/platforms/qwindowsd.dll I:/source/render/build/bin/Release/plugins/platforms/
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd
|
|
||||||
setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E copy C:/Qt/6.8.1/msvc2022_64/bin/Qt6Cored.dll I:/source/render/build/bin/Release
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd
|
|
||||||
setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E copy C:/Qt/6.8.1/msvc2022_64/bin/Qt6Guid.dll I:/source/render/build/bin/Release
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd
|
|
||||||
setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E copy C:/Qt/6.8.1/msvc2022_64/bin/Qt6Widgetsd.dll I:/source/render/build/bin/Release
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
||||||
</PostBuildEvent>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>C:\Qt\6.8.1\msvc2022_64\lib\Qt6Widgets.lib;..\render\Release\render.lib;..\zassimp\Release\zassimp.lib;..\tool\Release\tool.lib;ole32.lib;windowscodecs.lib;C:\Qt\6.8.1\msvc2022_64\lib\Qt6Gui.lib;C:\Qt\6.8.1\msvc2022_64\lib\Qt6Core.lib;mpr.lib;userenv.lib;d3d11.lib;dxgi.lib;dxguid.lib;d3d12.lib;I:\source\render\3rd\assimp\Release\lib\assimp-vc143-mt.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib</AdditionalDependencies>
|
|
||||||
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
||||||
<AdditionalOptions>%(AdditionalOptions) /machine:x64</AdditionalOptions>
|
|
||||||
<DataExecutionPrevention></DataExecutionPrevention>
|
|
||||||
<GenerateDebugInformation>false</GenerateDebugInformation>
|
|
||||||
<IgnoreSpecificDefaultLibraries>%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
|
||||||
<ImageHasSafeExceptionHandlers></ImageHasSafeExceptionHandlers>
|
|
||||||
<ImportLibrary>I:/source/render/build/app/Release/app.lib</ImportLibrary>
|
|
||||||
<LinkErrorReporting></LinkErrorReporting>
|
|
||||||
<ProgramDataBaseFile>I:/source/render/build/bin/Release/app.pdb</ProgramDataBaseFile>
|
|
||||||
<RandomizedBaseAddress></RandomizedBaseAddress>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
</Link>
|
|
||||||
<ProjectReference>
|
|
||||||
<LinkLibraryDependencies>false</LinkLibraryDependencies>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">
|
|
||||||
<ClCompile>
|
|
||||||
<AdditionalIncludeDirectories>I:\source\render\build\app\app_autogen\include_MinSizeRel;I:\source\render\render\include;I:\source\render\template\include;I:\source\render\core\include;I:\source\render\zassimp\include;I:\source\render\tool\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<AdditionalOptions>%(AdditionalOptions) /external:I "C:/Qt/6.8.1/msvc2022_64/include/QtCore" /external:I "C:/Qt/6.8.1/msvc2022_64/include" /external:I "C:/Qt/6.8.1/msvc2022_64/mkspecs/win32-msvc" /external:I "C:/Qt/6.8.1/msvc2022_64/include/QtGui" /external:I "C:/Qt/6.8.1/msvc2022_64/include/QtWidgets" /utf-8 -Zc:__cplusplus -utf-8</AdditionalOptions>
|
|
||||||
<AssemblerListingLocation>$(IntDir)</AssemblerListingLocation>
|
|
||||||
<BasicRuntimeChecks>Default</BasicRuntimeChecks>
|
|
||||||
<ConformanceMode>true</ConformanceMode>
|
|
||||||
<ExceptionHandling>Sync</ExceptionHandling>
|
|
||||||
<ExternalWarningLevel>TurnOffAllWarnings</ExternalWarningLevel>
|
|
||||||
<ForceConformanceInForLoopScope></ForceConformanceInForLoopScope>
|
|
||||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
|
||||||
<LanguageStandard>stdcpplatest</LanguageStandard>
|
|
||||||
<MinimalRebuild></MinimalRebuild>
|
|
||||||
<Optimization>MinSpace</Optimization>
|
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
||||||
<RemoveUnreferencedCodeData></RemoveUnreferencedCodeData>
|
|
||||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
||||||
<SupportJustMyCode></SupportJustMyCode>
|
|
||||||
<TreatWChar_tAsBuiltInType></TreatWChar_tAsBuiltInType>
|
|
||||||
<UseFullPaths>false</UseFullPaths>
|
|
||||||
<PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;WIN32_LEAN_AND_MEAN;NOMINMAX;UNICODE;_UNICODE;QT_CORE_LIB;QT_NO_DEBUG;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;_WIN64;QT_GUI_LIB;QT_WIDGETS_LIB;CMAKE_INTDIR="MinSizeRel"</PreprocessorDefinitions>
|
|
||||||
<ObjectFileName>$(IntDir)</ObjectFileName>
|
|
||||||
<DebugInformationFormat>
|
|
||||||
</DebugInformationFormat>
|
|
||||||
<ScanSourceForModuleDependencies>false</ScanSourceForModuleDependencies>
|
|
||||||
</ClCompile>
|
|
||||||
<ResourceCompile>
|
|
||||||
<PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;WIN32_LEAN_AND_MEAN;NOMINMAX;UNICODE;_UNICODE;QT_CORE_LIB;QT_NO_DEBUG;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;_WIN64;QT_GUI_LIB;QT_WIDGETS_LIB;CMAKE_INTDIR=\"MinSizeRel\"</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories>I:\source\render\build\app\app_autogen\include_MinSizeRel;I:\source\render\render\include;I:\source\render\template\include;I:\source\render\core\include;I:\source\render\zassimp\include;I:\source\render\tool\include;C:\Qt\6.8.1\msvc2022_64\include\QtCore;C:\Qt\6.8.1\msvc2022_64\include;C:\Qt\6.8.1\msvc2022_64\mkspecs\win32-msvc;C:\Qt\6.8.1\msvc2022_64\include\QtGui;C:\Qt\6.8.1\msvc2022_64\include\QtWidgets;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
</ResourceCompile>
|
|
||||||
<Midl>
|
|
||||||
<AdditionalIncludeDirectories>I:\source\render\build\app\app_autogen\include_MinSizeRel;I:\source\render\render\include;I:\source\render\template\include;I:\source\render\core\include;I:\source\render\zassimp\include;I:\source\render\tool\include;C:\Qt\6.8.1\msvc2022_64\include\QtCore;C:\Qt\6.8.1\msvc2022_64\include;C:\Qt\6.8.1\msvc2022_64\mkspecs\win32-msvc;C:\Qt\6.8.1\msvc2022_64\include\QtGui;C:\Qt\6.8.1\msvc2022_64\include\QtWidgets;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
||||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
||||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
||||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
|
||||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
|
||||||
</Midl>
|
|
||||||
<PreBuildEvent>
|
|
||||||
<UseUtf8Encoding>Always</UseUtf8Encoding>
|
|
||||||
<Message>Automatic MOC and UIC for target app</Message>
|
|
||||||
<Command>setlocal
|
|
||||||
cd I:\source\render\build\app
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
I:
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E cmake_autogen I:/source/render/build/app/CMakeFiles/app_autogen.dir/AutogenInfo.json MinSizeRel
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
||||||
</PreBuildEvent>
|
|
||||||
<PostBuildEvent>
|
|
||||||
<Message> </Message>
|
|
||||||
<Command>setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E make_directory I:/source/render/build/bin/MinSizeRel/plugins/platforms/
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd
|
|
||||||
setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E copy C:/Qt/6.8.1/msvc2022_64/plugins/platforms/qwindowsd.dll I:/source/render/build/bin/MinSizeRel/plugins/platforms/
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd
|
|
||||||
setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E copy C:/Qt/6.8.1/msvc2022_64/bin/Qt6Cored.dll I:/source/render/build/bin/MinSizeRel
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd
|
|
||||||
setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E copy C:/Qt/6.8.1/msvc2022_64/bin/Qt6Guid.dll I:/source/render/build/bin/MinSizeRel
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd
|
|
||||||
setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E copy C:/Qt/6.8.1/msvc2022_64/bin/Qt6Widgetsd.dll I:/source/render/build/bin/MinSizeRel
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
||||||
</PostBuildEvent>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>C:\Qt\6.8.1\msvc2022_64\lib\Qt6Widgets.lib;..\render\MinSizeRel\render.lib;..\zassimp\MinSizeRel\zassimp.lib;..\tool\MinSizeRel\tool.lib;ole32.lib;windowscodecs.lib;C:\Qt\6.8.1\msvc2022_64\lib\Qt6Gui.lib;C:\Qt\6.8.1\msvc2022_64\lib\Qt6Core.lib;mpr.lib;userenv.lib;d3d11.lib;dxgi.lib;dxguid.lib;d3d12.lib;I:\source\render\3rd\assimp\Release\lib\assimp-vc143-mt.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib</AdditionalDependencies>
|
|
||||||
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
||||||
<AdditionalOptions>%(AdditionalOptions) /machine:x64</AdditionalOptions>
|
|
||||||
<DataExecutionPrevention></DataExecutionPrevention>
|
|
||||||
<GenerateDebugInformation>false</GenerateDebugInformation>
|
|
||||||
<IgnoreSpecificDefaultLibraries>%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
|
||||||
<ImageHasSafeExceptionHandlers></ImageHasSafeExceptionHandlers>
|
|
||||||
<ImportLibrary>I:/source/render/build/app/MinSizeRel/app.lib</ImportLibrary>
|
|
||||||
<LinkErrorReporting></LinkErrorReporting>
|
|
||||||
<ProgramDataBaseFile>I:/source/render/build/bin/MinSizeRel/app.pdb</ProgramDataBaseFile>
|
|
||||||
<RandomizedBaseAddress></RandomizedBaseAddress>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
</Link>
|
|
||||||
<ProjectReference>
|
|
||||||
<LinkLibraryDependencies>false</LinkLibraryDependencies>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">
|
|
||||||
<ClCompile>
|
|
||||||
<AdditionalIncludeDirectories>I:\source\render\build\app\app_autogen\include_RelWithDebInfo;I:\source\render\render\include;I:\source\render\template\include;I:\source\render\core\include;I:\source\render\zassimp\include;I:\source\render\tool\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<AdditionalOptions>%(AdditionalOptions) /external:I "C:/Qt/6.8.1/msvc2022_64/include/QtCore" /external:I "C:/Qt/6.8.1/msvc2022_64/include" /external:I "C:/Qt/6.8.1/msvc2022_64/mkspecs/win32-msvc" /external:I "C:/Qt/6.8.1/msvc2022_64/include/QtGui" /external:I "C:/Qt/6.8.1/msvc2022_64/include/QtWidgets" /utf-8 -Zc:__cplusplus -utf-8</AdditionalOptions>
|
|
||||||
<AssemblerListingLocation>$(IntDir)</AssemblerListingLocation>
|
|
||||||
<BasicRuntimeChecks>Default</BasicRuntimeChecks>
|
|
||||||
<ConformanceMode>true</ConformanceMode>
|
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
||||||
<ExceptionHandling>Sync</ExceptionHandling>
|
|
||||||
<ExternalWarningLevel>TurnOffAllWarnings</ExternalWarningLevel>
|
|
||||||
<ForceConformanceInForLoopScope></ForceConformanceInForLoopScope>
|
|
||||||
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
|
|
||||||
<LanguageStandard>stdcpplatest</LanguageStandard>
|
|
||||||
<MinimalRebuild></MinimalRebuild>
|
|
||||||
<Optimization>MaxSpeed</Optimization>
|
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
|
||||||
<RemoveUnreferencedCodeData></RemoveUnreferencedCodeData>
|
|
||||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
|
||||||
<SupportJustMyCode></SupportJustMyCode>
|
|
||||||
<TreatWChar_tAsBuiltInType></TreatWChar_tAsBuiltInType>
|
|
||||||
<UseFullPaths>false</UseFullPaths>
|
|
||||||
<PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;WIN32_LEAN_AND_MEAN;NOMINMAX;UNICODE;_UNICODE;QT_CORE_LIB;QT_NO_DEBUG;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;_WIN64;QT_GUI_LIB;QT_WIDGETS_LIB;CMAKE_INTDIR="RelWithDebInfo"</PreprocessorDefinitions>
|
|
||||||
<ObjectFileName>$(IntDir)</ObjectFileName>
|
|
||||||
<ScanSourceForModuleDependencies>false</ScanSourceForModuleDependencies>
|
|
||||||
</ClCompile>
|
|
||||||
<ResourceCompile>
|
|
||||||
<PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;WIN32_LEAN_AND_MEAN;NOMINMAX;UNICODE;_UNICODE;QT_CORE_LIB;QT_NO_DEBUG;_ENABLE_EXTENDED_ALIGNED_STORAGE;WIN64;_WIN64;QT_GUI_LIB;QT_WIDGETS_LIB;CMAKE_INTDIR=\"RelWithDebInfo\"</PreprocessorDefinitions>
|
|
||||||
<AdditionalIncludeDirectories>I:\source\render\build\app\app_autogen\include_RelWithDebInfo;I:\source\render\render\include;I:\source\render\template\include;I:\source\render\core\include;I:\source\render\zassimp\include;I:\source\render\tool\include;C:\Qt\6.8.1\msvc2022_64\include\QtCore;C:\Qt\6.8.1\msvc2022_64\include;C:\Qt\6.8.1\msvc2022_64\mkspecs\win32-msvc;C:\Qt\6.8.1\msvc2022_64\include\QtGui;C:\Qt\6.8.1\msvc2022_64\include\QtWidgets;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
</ResourceCompile>
|
|
||||||
<Midl>
|
|
||||||
<AdditionalIncludeDirectories>I:\source\render\build\app\app_autogen\include_RelWithDebInfo;I:\source\render\render\include;I:\source\render\template\include;I:\source\render\core\include;I:\source\render\zassimp\include;I:\source\render\tool\include;C:\Qt\6.8.1\msvc2022_64\include\QtCore;C:\Qt\6.8.1\msvc2022_64\include;C:\Qt\6.8.1\msvc2022_64\mkspecs\win32-msvc;C:\Qt\6.8.1\msvc2022_64\include\QtGui;C:\Qt\6.8.1\msvc2022_64\include\QtWidgets;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
||||||
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
||||||
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
||||||
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
||||||
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
|
||||||
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
|
||||||
</Midl>
|
|
||||||
<PreBuildEvent>
|
|
||||||
<UseUtf8Encoding>Always</UseUtf8Encoding>
|
|
||||||
<Message>Automatic MOC and UIC for target app</Message>
|
|
||||||
<Command>setlocal
|
|
||||||
cd I:\source\render\build\app
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
I:
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E cmake_autogen I:/source/render/build/app/CMakeFiles/app_autogen.dir/AutogenInfo.json RelWithDebInfo
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
||||||
</PreBuildEvent>
|
|
||||||
<PostBuildEvent>
|
|
||||||
<Message> </Message>
|
|
||||||
<Command>setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E make_directory I:/source/render/build/bin/RelWithDebInfo/plugins/platforms/
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd
|
|
||||||
setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E copy C:/Qt/6.8.1/msvc2022_64/plugins/platforms/qwindowsd.dll I:/source/render/build/bin/RelWithDebInfo/plugins/platforms/
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd
|
|
||||||
setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E copy C:/Qt/6.8.1/msvc2022_64/bin/Qt6Cored.dll I:/source/render/build/bin/RelWithDebInfo
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd
|
|
||||||
setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E copy C:/Qt/6.8.1/msvc2022_64/bin/Qt6Guid.dll I:/source/render/build/bin/RelWithDebInfo
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd
|
|
||||||
setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -E copy C:/Qt/6.8.1/msvc2022_64/bin/Qt6Widgetsd.dll I:/source/render/build/bin/RelWithDebInfo
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
||||||
</PostBuildEvent>
|
|
||||||
<Link>
|
|
||||||
<AdditionalDependencies>C:\Qt\6.8.1\msvc2022_64\lib\Qt6Widgets.lib;..\render\RelWithDebInfo\render.lib;..\zassimp\RelWithDebInfo\zassimp.lib;..\tool\RelWithDebInfo\tool.lib;ole32.lib;windowscodecs.lib;C:\Qt\6.8.1\msvc2022_64\lib\Qt6Gui.lib;C:\Qt\6.8.1\msvc2022_64\lib\Qt6Core.lib;mpr.lib;userenv.lib;d3d11.lib;dxgi.lib;dxguid.lib;d3d12.lib;I:\source\render\3rd\assimp\Release\lib\assimp-vc143-mt.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib</AdditionalDependencies>
|
|
||||||
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
||||||
<AdditionalOptions>%(AdditionalOptions) /machine:x64</AdditionalOptions>
|
|
||||||
<DataExecutionPrevention></DataExecutionPrevention>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
<IgnoreSpecificDefaultLibraries>%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
|
||||||
<ImageHasSafeExceptionHandlers></ImageHasSafeExceptionHandlers>
|
|
||||||
<ImportLibrary>I:/source/render/build/app/RelWithDebInfo/app.lib</ImportLibrary>
|
|
||||||
<LinkErrorReporting></LinkErrorReporting>
|
|
||||||
<ProgramDataBaseFile>I:/source/render/build/bin/RelWithDebInfo/app.pdb</ProgramDataBaseFile>
|
|
||||||
<RandomizedBaseAddress></RandomizedBaseAddress>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
</Link>
|
|
||||||
<ProjectReference>
|
|
||||||
<LinkLibraryDependencies>false</LinkLibraryDependencies>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<CustomBuild Include="I:\source\render\app\CMakeLists.txt">
|
|
||||||
<UseUtf8Encoding>Always</UseUtf8Encoding>
|
|
||||||
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Building Custom Rule I:/source/render/app/CMakeLists.txt</Message>
|
|
||||||
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -SI:/source/render -BI:/source/render/build --check-stamp-file I:/source/render/build/app/CMakeFiles/generate.stamp
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
||||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">I:\source\render\build\CMakeFiles\cmake.verify_globs;%(AdditionalInputs)</AdditionalInputs>
|
|
||||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">I:\source\render\build\app\CMakeFiles\generate.stamp</Outputs>
|
|
||||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkObjects>
|
|
||||||
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Building Custom Rule I:/source/render/app/CMakeLists.txt</Message>
|
|
||||||
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -SI:/source/render -BI:/source/render/build --check-stamp-file I:/source/render/build/app/CMakeFiles/generate.stamp
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
||||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">I:\source\render\build\CMakeFiles\cmake.verify_globs;%(AdditionalInputs)</AdditionalInputs>
|
|
||||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">I:\source\render\build\app\CMakeFiles\generate.stamp</Outputs>
|
|
||||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkObjects>
|
|
||||||
<Message Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">Building Custom Rule I:/source/render/app/CMakeLists.txt</Message>
|
|
||||||
<Command Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -SI:/source/render -BI:/source/render/build --check-stamp-file I:/source/render/build/app/CMakeFiles/generate.stamp
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
||||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">I:\source\render\build\CMakeFiles\cmake.verify_globs;%(AdditionalInputs)</AdditionalInputs>
|
|
||||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">I:\source\render\build\app\CMakeFiles\generate.stamp</Outputs>
|
|
||||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">false</LinkObjects>
|
|
||||||
<Message Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">Building Custom Rule I:/source/render/app/CMakeLists.txt</Message>
|
|
||||||
<Command Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">setlocal
|
|
||||||
"C:\Program Files\CMake\bin\cmake.exe" -SI:/source/render -BI:/source/render/build --check-stamp-file I:/source/render/build/app/CMakeFiles/generate.stamp
|
|
||||||
if %errorlevel% neq 0 goto :cmEnd
|
|
||||||
:cmEnd
|
|
||||||
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
||||||
:cmErrorLevel
|
|
||||||
exit /b %1
|
|
||||||
:cmDone
|
|
||||||
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
||||||
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">I:\source\render\build\CMakeFiles\cmake.verify_globs;%(AdditionalInputs)</AdditionalInputs>
|
|
||||||
<Outputs Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">I:\source\render\build\app\CMakeFiles\generate.stamp</Outputs>
|
|
||||||
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">false</LinkObjects>
|
|
||||||
</CustomBuild>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="I:\source\render\build\app\app_autogen\mocs_compilation_Debug.cpp">
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">true</ExcludedFromBuild>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">true</ExcludedFromBuild>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="I:\source\render\app\src\main.cpp" />
|
|
||||||
<ClCompile Include="I:\source\render\app\src\wnd_main.cpp" />
|
|
||||||
<ClInclude Include="I:\source\render\app\src\wnd_main.h" />
|
|
||||||
<ClCompile Include="I:\source\render\app\src\defs.cpp" />
|
|
||||||
<ClInclude Include="I:\source\render\app\src\defs.h" />
|
|
||||||
<ClCompile Include="I:\source\render\app\src\resource.cpp" />
|
|
||||||
<ClInclude Include="I:\source\render\app\src\resource.h" />
|
|
||||||
<ClCompile Include="I:\source\render\app\src\wnd_resource.cpp" />
|
|
||||||
<ClInclude Include="I:\source\render\app\src\wnd_resource.h" />
|
|
||||||
<ClCompile Include="I:\source\render\app\src\wnd_inspector.cpp" />
|
|
||||||
<ClInclude Include="I:\source\render\app\src\wnd_inspector.h" />
|
|
||||||
<ClCompile Include="I:\source\render\app\src\wnd_hierachy.cpp" />
|
|
||||||
<ClInclude Include="I:\source\render\app\src\wnd_hierachy.h" />
|
|
||||||
<ClCompile Include="I:\source\render\app\src\wnd_debug.cpp" />
|
|
||||||
<ClInclude Include="I:\source\render\app\src\wnd_debug.h" />
|
|
||||||
<ClInclude Include="I:\source\render\app\src\states.h" />
|
|
||||||
<ClCompile Include="I:\source\render\app\src\states.cpp" />
|
|
||||||
<ClCompile Include="I:\source\render\app\src\ListItemWidget.cpp" />
|
|
||||||
<ClInclude Include="I:\source\render\app\src\ListItemWidget.h" />
|
|
||||||
<ClCompile Include="I:\source\render\app\src\wnd_create_mat.cpp" />
|
|
||||||
<ClInclude Include="I:\source\render\app\src\wnd_create_mat.h" />
|
|
||||||
<ClCompile Include="I:\source\render\app\src\wgt_prop_input.cpp" />
|
|
||||||
<ClInclude Include="I:\source\render\app\src\wgt_prop_input.h" />
|
|
||||||
<ClCompile Include="I:\source\render\build\app\app_autogen\mocs_compilation_Release.cpp">
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">true</ExcludedFromBuild>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">true</ExcludedFromBuild>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="I:\source\render\build\app\app_autogen\mocs_compilation_MinSizeRel.cpp">
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">true</ExcludedFromBuild>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="I:\source\render\build\app\app_autogen\mocs_compilation_RelWithDebInfo.cpp">
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
|
|
||||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">true</ExcludedFromBuild>
|
|
||||||
</ClCompile>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup />
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="I:\source\render\build\ZERO_CHECK.vcxproj">
|
|
||||||
<Project>{DE7B516C-33E5-3F61-9EF4-7603C10538A3}</Project>
|
|
||||||
<Name>ZERO_CHECK</Name>
|
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
||||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
||||||
</ProjectReference>
|
|
||||||
<ProjectReference Include="I:\source\render\build\core\core.vcxproj">
|
|
||||||
<Project>{47F61202-E67B-38A5-BE39-5FFBF0B2692F}</Project>
|
|
||||||
<Name>core</Name>
|
|
||||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
||||||
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
||||||
</ProjectReference>
|
|
||||||
<ProjectReference Include="I:\source\render\build\render\render.vcxproj">
|
|
||||||
<Project>{13E3C448-89D5-3FDD-8A6E-69AF324755AE}</Project>
|
|
||||||
<Name>render</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
<ProjectReference Include="I:\source\render\build\tool\tool.vcxproj">
|
|
||||||
<Project>{8B3B6F38-D3AA-3BEF-9F3C-2D08119E11DC}</Project>
|
|
||||||
<Name>tool</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
<ProjectReference Include="I:\source\render\build\zassimp\zassimp.vcxproj">
|
|
||||||
<Project>{7D9D50D5-41AC-3634-A283-95690EC6C4E5}</Project>
|
|
||||||
<Name>zassimp</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
||||||
@@ -1,102 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="17.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="I:\source\render\build\app\app_autogen\mocs_compilation_Debug.cpp">
|
|
||||||
<Filter>Source Files\Generated</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="I:\source\render\app\src\main.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="I:\source\render\app\src\wnd_main.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="I:\source\render\app\src\defs.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="I:\source\render\app\src\resource.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="I:\source\render\app\src\wnd_resource.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="I:\source\render\app\src\wnd_inspector.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="I:\source\render\app\src\wnd_hierachy.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="I:\source\render\app\src\wnd_debug.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="I:\source\render\app\src\states.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="I:\source\render\app\src\ListItemWidget.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="I:\source\render\app\src\wnd_create_mat.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="I:\source\render\app\src\wgt_prop_input.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="I:\source\render\build\app\app_autogen\mocs_compilation_Release.cpp">
|
|
||||||
<Filter>Source Files\Generated</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="I:\source\render\build\app\app_autogen\mocs_compilation_MinSizeRel.cpp">
|
|
||||||
<Filter>Source Files\Generated</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="I:\source\render\build\app\app_autogen\mocs_compilation_RelWithDebInfo.cpp">
|
|
||||||
<Filter>Source Files\Generated</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="I:\source\render\app\src\wnd_main.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="I:\source\render\app\src\defs.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="I:\source\render\app\src\resource.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="I:\source\render\app\src\wnd_resource.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="I:\source\render\app\src\wnd_inspector.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="I:\source\render\app\src\wnd_hierachy.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="I:\source\render\app\src\wnd_debug.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="I:\source\render\app\src\states.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="I:\source\render\app\src\ListItemWidget.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="I:\source\render\app\src\wnd_create_mat.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="I:\source\render\app\src\wgt_prop_input.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<CustomBuild Include="I:\source\render\app\CMakeLists.txt" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<Filter Include="Header Files">
|
|
||||||
<UniqueIdentifier>{2D911094-08E4-3CE9-A5DA-D46B8B802078}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Source Files">
|
|
||||||
<UniqueIdentifier>{E1BE1864-A5F2-3BA3-A857-C7141CB9EC70}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Source Files\Generated">
|
|
||||||
<UniqueIdentifier>{F046E4C3-9937-3809-9C26-F9D737849040}</UniqueIdentifier>
|
|
||||||
</Filter>
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
||||||
@@ -1,283 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'ListItemWidget.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 68 (Qt 6.8.1)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../../../../../app/src/ListItemWidget.h"
|
|
||||||
#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 'ListItemWidget.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 68
|
|
||||||
#error "This file was generated using the moc from 6.8.1. 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_ZN14ListItemWidgetE_t {};
|
|
||||||
} // unnamed namespace
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef QT_MOC_HAS_STRINGDATA
|
|
||||||
static constexpr auto qt_meta_stringdata_ZN14ListItemWidgetE = QtMocHelpers::stringData(
|
|
||||||
"ListItemWidget",
|
|
||||||
"Clicked",
|
|
||||||
"",
|
|
||||||
"ListItemWidget*",
|
|
||||||
"item"
|
|
||||||
);
|
|
||||||
#else // !QT_MOC_HAS_STRINGDATA
|
|
||||||
#error "qtmochelpers.h not found or too old."
|
|
||||||
#endif // !QT_MOC_HAS_STRINGDATA
|
|
||||||
|
|
||||||
Q_CONSTINIT static const uint qt_meta_data_ZN14ListItemWidgetE[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
12, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
1, 14, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
1, // signalCount
|
|
||||||
|
|
||||||
// signals: name, argc, parameters, tag, flags, initial metatype offsets
|
|
||||||
1, 1, 20, 2, 0x06, 1 /* Public */,
|
|
||||||
|
|
||||||
// signals: parameters
|
|
||||||
QMetaType::Void, 0x80000000 | 3, 4,
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
Q_CONSTINIT const QMetaObject ListItemWidget::staticMetaObject = { {
|
|
||||||
QMetaObject::SuperData::link<QWidget::staticMetaObject>(),
|
|
||||||
qt_meta_stringdata_ZN14ListItemWidgetE.offsetsAndSizes,
|
|
||||||
qt_meta_data_ZN14ListItemWidgetE,
|
|
||||||
qt_static_metacall,
|
|
||||||
nullptr,
|
|
||||||
qt_incomplete_metaTypeArray<qt_meta_tag_ZN14ListItemWidgetE_t,
|
|
||||||
// Q_OBJECT / Q_GADGET
|
|
||||||
QtPrivate::TypeAndForceComplete<ListItemWidget, std::true_type>,
|
|
||||||
// method 'Clicked'
|
|
||||||
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
|
||||||
QtPrivate::TypeAndForceComplete<ListItemWidget *, std::false_type>
|
|
||||||
>,
|
|
||||||
nullptr
|
|
||||||
} };
|
|
||||||
|
|
||||||
void ListItemWidget::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
auto *_t = static_cast<ListItemWidget *>(_o);
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
switch (_id) {
|
|
||||||
case 0: _t->Clicked((*reinterpret_cast< std::add_pointer_t<ListItemWidget*>>(_a[1]))); break;
|
|
||||||
default: ;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
switch (_id) {
|
|
||||||
default: *reinterpret_cast<QMetaType *>(_a[0]) = QMetaType(); break;
|
|
||||||
case 0:
|
|
||||||
switch (*reinterpret_cast<int*>(_a[1])) {
|
|
||||||
default: *reinterpret_cast<QMetaType *>(_a[0]) = QMetaType(); break;
|
|
||||||
case 0:
|
|
||||||
*reinterpret_cast<QMetaType *>(_a[0]) = QMetaType::fromType< ListItemWidget* >(); break;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (_c == QMetaObject::IndexOfMethod) {
|
|
||||||
int *result = reinterpret_cast<int *>(_a[0]);
|
|
||||||
{
|
|
||||||
using _q_method_type = void (ListItemWidget::*)(ListItemWidget * );
|
|
||||||
if (_q_method_type _q_method = &ListItemWidget::Clicked; *reinterpret_cast<_q_method_type *>(_a[1]) == _q_method) {
|
|
||||||
*result = 0;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject *ListItemWidget::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *ListItemWidget::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return nullptr;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_ZN14ListItemWidgetE.stringdata0))
|
|
||||||
return static_cast<void*>(this);
|
|
||||||
return QWidget::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int ListItemWidget::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QWidget::qt_metacall(_c, _id, _a);
|
|
||||||
if (_id < 0)
|
|
||||||
return _id;
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
if (_id < 1)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 1;
|
|
||||||
}
|
|
||||||
if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
if (_id < 1)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 1;
|
|
||||||
}
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 0
|
|
||||||
void ListItemWidget::Clicked(ListItemWidget * _t1)
|
|
||||||
{
|
|
||||||
void *_a[] = { nullptr, const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t1))) };
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 0, _a);
|
|
||||||
}
|
|
||||||
namespace {
|
|
||||||
struct qt_meta_tag_ZN14DragItemWidgetE_t {};
|
|
||||||
} // unnamed namespace
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef QT_MOC_HAS_STRINGDATA
|
|
||||||
static constexpr auto qt_meta_stringdata_ZN14DragItemWidgetE = QtMocHelpers::stringData(
|
|
||||||
"DragItemWidget",
|
|
||||||
"StartDrag",
|
|
||||||
"",
|
|
||||||
"DragItemWidget*",
|
|
||||||
"item"
|
|
||||||
);
|
|
||||||
#else // !QT_MOC_HAS_STRINGDATA
|
|
||||||
#error "qtmochelpers.h not found or too old."
|
|
||||||
#endif // !QT_MOC_HAS_STRINGDATA
|
|
||||||
|
|
||||||
Q_CONSTINIT static const uint qt_meta_data_ZN14DragItemWidgetE[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
12, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
1, 14, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
1, // signalCount
|
|
||||||
|
|
||||||
// signals: name, argc, parameters, tag, flags, initial metatype offsets
|
|
||||||
1, 1, 20, 2, 0x06, 1 /* Public */,
|
|
||||||
|
|
||||||
// signals: parameters
|
|
||||||
QMetaType::Void, 0x80000000 | 3, 4,
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
Q_CONSTINIT const QMetaObject DragItemWidget::staticMetaObject = { {
|
|
||||||
QMetaObject::SuperData::link<ListItemWidget::staticMetaObject>(),
|
|
||||||
qt_meta_stringdata_ZN14DragItemWidgetE.offsetsAndSizes,
|
|
||||||
qt_meta_data_ZN14DragItemWidgetE,
|
|
||||||
qt_static_metacall,
|
|
||||||
nullptr,
|
|
||||||
qt_incomplete_metaTypeArray<qt_meta_tag_ZN14DragItemWidgetE_t,
|
|
||||||
// Q_OBJECT / Q_GADGET
|
|
||||||
QtPrivate::TypeAndForceComplete<DragItemWidget, std::true_type>,
|
|
||||||
// method 'StartDrag'
|
|
||||||
QtPrivate::TypeAndForceComplete<void, std::false_type>,
|
|
||||||
QtPrivate::TypeAndForceComplete<DragItemWidget *, std::false_type>
|
|
||||||
>,
|
|
||||||
nullptr
|
|
||||||
} };
|
|
||||||
|
|
||||||
void DragItemWidget::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
auto *_t = static_cast<DragItemWidget *>(_o);
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
switch (_id) {
|
|
||||||
case 0: _t->StartDrag((*reinterpret_cast< std::add_pointer_t<DragItemWidget*>>(_a[1]))); break;
|
|
||||||
default: ;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
switch (_id) {
|
|
||||||
default: *reinterpret_cast<QMetaType *>(_a[0]) = QMetaType(); break;
|
|
||||||
case 0:
|
|
||||||
switch (*reinterpret_cast<int*>(_a[1])) {
|
|
||||||
default: *reinterpret_cast<QMetaType *>(_a[0]) = QMetaType(); break;
|
|
||||||
case 0:
|
|
||||||
*reinterpret_cast<QMetaType *>(_a[0]) = QMetaType::fromType< DragItemWidget* >(); break;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (_c == QMetaObject::IndexOfMethod) {
|
|
||||||
int *result = reinterpret_cast<int *>(_a[0]);
|
|
||||||
{
|
|
||||||
using _q_method_type = void (DragItemWidget::*)(DragItemWidget * );
|
|
||||||
if (_q_method_type _q_method = &DragItemWidget::StartDrag; *reinterpret_cast<_q_method_type *>(_a[1]) == _q_method) {
|
|
||||||
*result = 0;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject *DragItemWidget::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *DragItemWidget::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return nullptr;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_ZN14DragItemWidgetE.stringdata0))
|
|
||||||
return static_cast<void*>(this);
|
|
||||||
return ListItemWidget::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int DragItemWidget::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = ListItemWidget::qt_metacall(_c, _id, _a);
|
|
||||||
if (_id < 0)
|
|
||||||
return _id;
|
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
|
||||||
if (_id < 1)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 1;
|
|
||||||
}
|
|
||||||
if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
|
||||||
if (_id < 1)
|
|
||||||
qt_static_metacall(this, _c, _id, _a);
|
|
||||||
_id -= 1;
|
|
||||||
}
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
|
|
||||||
// SIGNAL 0
|
|
||||||
void DragItemWidget::StartDrag(DragItemWidget * _t1)
|
|
||||||
{
|
|
||||||
void *_a[] = { nullptr, const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t1))) };
|
|
||||||
QMetaObject::activate(this, &staticMetaObject, 0, _a);
|
|
||||||
}
|
|
||||||
QT_WARNING_POP
|
|
||||||
@@ -1,102 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'wgt_prop_input.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 68 (Qt 6.8.1)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../../../../../app/src/wgt_prop_input.h"
|
|
||||||
#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 'wgt_prop_input.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 68
|
|
||||||
#error "This file was generated using the moc from 6.8.1. 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_ZN12WgtPropInputE_t {};
|
|
||||||
} // unnamed namespace
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef QT_MOC_HAS_STRINGDATA
|
|
||||||
static constexpr auto qt_meta_stringdata_ZN12WgtPropInputE = QtMocHelpers::stringData(
|
|
||||||
"WgtPropInput"
|
|
||||||
);
|
|
||||||
#else // !QT_MOC_HAS_STRINGDATA
|
|
||||||
#error "qtmochelpers.h not found or too old."
|
|
||||||
#endif // !QT_MOC_HAS_STRINGDATA
|
|
||||||
|
|
||||||
Q_CONSTINIT static const uint qt_meta_data_ZN12WgtPropInputE[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
12, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
0, 0, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
0, // signalCount
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
Q_CONSTINIT const QMetaObject WgtPropInput::staticMetaObject = { {
|
|
||||||
QMetaObject::SuperData::link<QWidget::staticMetaObject>(),
|
|
||||||
qt_meta_stringdata_ZN12WgtPropInputE.offsetsAndSizes,
|
|
||||||
qt_meta_data_ZN12WgtPropInputE,
|
|
||||||
qt_static_metacall,
|
|
||||||
nullptr,
|
|
||||||
qt_incomplete_metaTypeArray<qt_meta_tag_ZN12WgtPropInputE_t,
|
|
||||||
// Q_OBJECT / Q_GADGET
|
|
||||||
QtPrivate::TypeAndForceComplete<WgtPropInput, std::true_type>
|
|
||||||
>,
|
|
||||||
nullptr
|
|
||||||
} };
|
|
||||||
|
|
||||||
void WgtPropInput::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
auto *_t = static_cast<WgtPropInput *>(_o);
|
|
||||||
(void)_t;
|
|
||||||
(void)_c;
|
|
||||||
(void)_id;
|
|
||||||
(void)_a;
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject *WgtPropInput::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *WgtPropInput::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return nullptr;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_ZN12WgtPropInputE.stringdata0))
|
|
||||||
return static_cast<void*>(this);
|
|
||||||
return QWidget::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int WgtPropInput::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QWidget::qt_metacall(_c, _id, _a);
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
QT_WARNING_POP
|
|
||||||
@@ -1,102 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'wnd_create_mat.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 68 (Qt 6.8.1)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../../../../../app/src/wnd_create_mat.h"
|
|
||||||
#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 'wnd_create_mat.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 68
|
|
||||||
#error "This file was generated using the moc from 6.8.1. 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_ZN12WndCreateMatE_t {};
|
|
||||||
} // unnamed namespace
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef QT_MOC_HAS_STRINGDATA
|
|
||||||
static constexpr auto qt_meta_stringdata_ZN12WndCreateMatE = QtMocHelpers::stringData(
|
|
||||||
"WndCreateMat"
|
|
||||||
);
|
|
||||||
#else // !QT_MOC_HAS_STRINGDATA
|
|
||||||
#error "qtmochelpers.h not found or too old."
|
|
||||||
#endif // !QT_MOC_HAS_STRINGDATA
|
|
||||||
|
|
||||||
Q_CONSTINIT static const uint qt_meta_data_ZN12WndCreateMatE[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
12, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
0, 0, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
0, // signalCount
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
Q_CONSTINIT const QMetaObject WndCreateMat::staticMetaObject = { {
|
|
||||||
QMetaObject::SuperData::link<QDialog::staticMetaObject>(),
|
|
||||||
qt_meta_stringdata_ZN12WndCreateMatE.offsetsAndSizes,
|
|
||||||
qt_meta_data_ZN12WndCreateMatE,
|
|
||||||
qt_static_metacall,
|
|
||||||
nullptr,
|
|
||||||
qt_incomplete_metaTypeArray<qt_meta_tag_ZN12WndCreateMatE_t,
|
|
||||||
// Q_OBJECT / Q_GADGET
|
|
||||||
QtPrivate::TypeAndForceComplete<WndCreateMat, std::true_type>
|
|
||||||
>,
|
|
||||||
nullptr
|
|
||||||
} };
|
|
||||||
|
|
||||||
void WndCreateMat::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
auto *_t = static_cast<WndCreateMat *>(_o);
|
|
||||||
(void)_t;
|
|
||||||
(void)_c;
|
|
||||||
(void)_id;
|
|
||||||
(void)_a;
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject *WndCreateMat::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *WndCreateMat::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return nullptr;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_ZN12WndCreateMatE.stringdata0))
|
|
||||||
return static_cast<void*>(this);
|
|
||||||
return QDialog::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int WndCreateMat::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QDialog::qt_metacall(_c, _id, _a);
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
QT_WARNING_POP
|
|
||||||
@@ -1,102 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'wnd_debug.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 68 (Qt 6.8.1)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../../../../../app/src/wnd_debug.h"
|
|
||||||
#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 'wnd_debug.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 68
|
|
||||||
#error "This file was generated using the moc from 6.8.1. 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_ZN8WndDebugE_t {};
|
|
||||||
} // unnamed namespace
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef QT_MOC_HAS_STRINGDATA
|
|
||||||
static constexpr auto qt_meta_stringdata_ZN8WndDebugE = QtMocHelpers::stringData(
|
|
||||||
"WndDebug"
|
|
||||||
);
|
|
||||||
#else // !QT_MOC_HAS_STRINGDATA
|
|
||||||
#error "qtmochelpers.h not found or too old."
|
|
||||||
#endif // !QT_MOC_HAS_STRINGDATA
|
|
||||||
|
|
||||||
Q_CONSTINIT static const uint qt_meta_data_ZN8WndDebugE[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
12, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
0, 0, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
0, // signalCount
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
Q_CONSTINIT const QMetaObject WndDebug::staticMetaObject = { {
|
|
||||||
QMetaObject::SuperData::link<QWidget::staticMetaObject>(),
|
|
||||||
qt_meta_stringdata_ZN8WndDebugE.offsetsAndSizes,
|
|
||||||
qt_meta_data_ZN8WndDebugE,
|
|
||||||
qt_static_metacall,
|
|
||||||
nullptr,
|
|
||||||
qt_incomplete_metaTypeArray<qt_meta_tag_ZN8WndDebugE_t,
|
|
||||||
// Q_OBJECT / Q_GADGET
|
|
||||||
QtPrivate::TypeAndForceComplete<WndDebug, std::true_type>
|
|
||||||
>,
|
|
||||||
nullptr
|
|
||||||
} };
|
|
||||||
|
|
||||||
void WndDebug::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
auto *_t = static_cast<WndDebug *>(_o);
|
|
||||||
(void)_t;
|
|
||||||
(void)_c;
|
|
||||||
(void)_id;
|
|
||||||
(void)_a;
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject *WndDebug::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *WndDebug::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return nullptr;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_ZN8WndDebugE.stringdata0))
|
|
||||||
return static_cast<void*>(this);
|
|
||||||
return QWidget::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int WndDebug::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QWidget::qt_metacall(_c, _id, _a);
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
QT_WARNING_POP
|
|
||||||
@@ -1,102 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'wnd_hierachy.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 68 (Qt 6.8.1)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../../../../../app/src/wnd_hierachy.h"
|
|
||||||
#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 'wnd_hierachy.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 68
|
|
||||||
#error "This file was generated using the moc from 6.8.1. 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_ZN11WndHierachyE_t {};
|
|
||||||
} // unnamed namespace
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef QT_MOC_HAS_STRINGDATA
|
|
||||||
static constexpr auto qt_meta_stringdata_ZN11WndHierachyE = QtMocHelpers::stringData(
|
|
||||||
"WndHierachy"
|
|
||||||
);
|
|
||||||
#else // !QT_MOC_HAS_STRINGDATA
|
|
||||||
#error "qtmochelpers.h not found or too old."
|
|
||||||
#endif // !QT_MOC_HAS_STRINGDATA
|
|
||||||
|
|
||||||
Q_CONSTINIT static const uint qt_meta_data_ZN11WndHierachyE[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
12, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
0, 0, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
0, // signalCount
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
Q_CONSTINIT const QMetaObject WndHierachy::staticMetaObject = { {
|
|
||||||
QMetaObject::SuperData::link<QWidget::staticMetaObject>(),
|
|
||||||
qt_meta_stringdata_ZN11WndHierachyE.offsetsAndSizes,
|
|
||||||
qt_meta_data_ZN11WndHierachyE,
|
|
||||||
qt_static_metacall,
|
|
||||||
nullptr,
|
|
||||||
qt_incomplete_metaTypeArray<qt_meta_tag_ZN11WndHierachyE_t,
|
|
||||||
// Q_OBJECT / Q_GADGET
|
|
||||||
QtPrivate::TypeAndForceComplete<WndHierachy, std::true_type>
|
|
||||||
>,
|
|
||||||
nullptr
|
|
||||||
} };
|
|
||||||
|
|
||||||
void WndHierachy::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
auto *_t = static_cast<WndHierachy *>(_o);
|
|
||||||
(void)_t;
|
|
||||||
(void)_c;
|
|
||||||
(void)_id;
|
|
||||||
(void)_a;
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject *WndHierachy::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *WndHierachy::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return nullptr;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_ZN11WndHierachyE.stringdata0))
|
|
||||||
return static_cast<void*>(this);
|
|
||||||
return QWidget::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int WndHierachy::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QWidget::qt_metacall(_c, _id, _a);
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
QT_WARNING_POP
|
|
||||||
@@ -1,102 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'wnd_inspector.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 68 (Qt 6.8.1)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../../../../../app/src/wnd_inspector.h"
|
|
||||||
#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 'wnd_inspector.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 68
|
|
||||||
#error "This file was generated using the moc from 6.8.1. 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_ZN12WndInspectorE_t {};
|
|
||||||
} // unnamed namespace
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef QT_MOC_HAS_STRINGDATA
|
|
||||||
static constexpr auto qt_meta_stringdata_ZN12WndInspectorE = QtMocHelpers::stringData(
|
|
||||||
"WndInspector"
|
|
||||||
);
|
|
||||||
#else // !QT_MOC_HAS_STRINGDATA
|
|
||||||
#error "qtmochelpers.h not found or too old."
|
|
||||||
#endif // !QT_MOC_HAS_STRINGDATA
|
|
||||||
|
|
||||||
Q_CONSTINIT static const uint qt_meta_data_ZN12WndInspectorE[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
12, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
0, 0, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
0, // signalCount
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
Q_CONSTINIT const QMetaObject WndInspector::staticMetaObject = { {
|
|
||||||
QMetaObject::SuperData::link<QWidget::staticMetaObject>(),
|
|
||||||
qt_meta_stringdata_ZN12WndInspectorE.offsetsAndSizes,
|
|
||||||
qt_meta_data_ZN12WndInspectorE,
|
|
||||||
qt_static_metacall,
|
|
||||||
nullptr,
|
|
||||||
qt_incomplete_metaTypeArray<qt_meta_tag_ZN12WndInspectorE_t,
|
|
||||||
// Q_OBJECT / Q_GADGET
|
|
||||||
QtPrivate::TypeAndForceComplete<WndInspector, std::true_type>
|
|
||||||
>,
|
|
||||||
nullptr
|
|
||||||
} };
|
|
||||||
|
|
||||||
void WndInspector::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
auto *_t = static_cast<WndInspector *>(_o);
|
|
||||||
(void)_t;
|
|
||||||
(void)_c;
|
|
||||||
(void)_id;
|
|
||||||
(void)_a;
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject *WndInspector::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *WndInspector::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return nullptr;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_ZN12WndInspectorE.stringdata0))
|
|
||||||
return static_cast<void*>(this);
|
|
||||||
return QWidget::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int WndInspector::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QWidget::qt_metacall(_c, _id, _a);
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
QT_WARNING_POP
|
|
||||||
@@ -1,102 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'wnd_main.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 68 (Qt 6.8.1)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../../../../../app/src/wnd_main.h"
|
|
||||||
#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 'wnd_main.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 68
|
|
||||||
#error "This file was generated using the moc from 6.8.1. 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_ZN7WndMainE_t {};
|
|
||||||
} // unnamed namespace
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef QT_MOC_HAS_STRINGDATA
|
|
||||||
static constexpr auto qt_meta_stringdata_ZN7WndMainE = QtMocHelpers::stringData(
|
|
||||||
"WndMain"
|
|
||||||
);
|
|
||||||
#else // !QT_MOC_HAS_STRINGDATA
|
|
||||||
#error "qtmochelpers.h not found or too old."
|
|
||||||
#endif // !QT_MOC_HAS_STRINGDATA
|
|
||||||
|
|
||||||
Q_CONSTINIT static const uint qt_meta_data_ZN7WndMainE[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
12, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
0, 0, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
0, // signalCount
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
Q_CONSTINIT const QMetaObject WndMain::staticMetaObject = { {
|
|
||||||
QMetaObject::SuperData::link<QMainWindow::staticMetaObject>(),
|
|
||||||
qt_meta_stringdata_ZN7WndMainE.offsetsAndSizes,
|
|
||||||
qt_meta_data_ZN7WndMainE,
|
|
||||||
qt_static_metacall,
|
|
||||||
nullptr,
|
|
||||||
qt_incomplete_metaTypeArray<qt_meta_tag_ZN7WndMainE_t,
|
|
||||||
// Q_OBJECT / Q_GADGET
|
|
||||||
QtPrivate::TypeAndForceComplete<WndMain, std::true_type>
|
|
||||||
>,
|
|
||||||
nullptr
|
|
||||||
} };
|
|
||||||
|
|
||||||
void WndMain::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
auto *_t = static_cast<WndMain *>(_o);
|
|
||||||
(void)_t;
|
|
||||||
(void)_c;
|
|
||||||
(void)_id;
|
|
||||||
(void)_a;
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject *WndMain::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *WndMain::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return nullptr;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_ZN7WndMainE.stringdata0))
|
|
||||||
return static_cast<void*>(this);
|
|
||||||
return QMainWindow::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int WndMain::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QMainWindow::qt_metacall(_c, _id, _a);
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
QT_WARNING_POP
|
|
||||||
@@ -1,102 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'wnd_resource.h'
|
|
||||||
**
|
|
||||||
** Created by: The Qt Meta Object Compiler version 68 (Qt 6.8.1)
|
|
||||||
**
|
|
||||||
** WARNING! All changes made in this file will be lost!
|
|
||||||
*****************************************************************************/
|
|
||||||
|
|
||||||
#include "../../../../../app/src/wnd_resource.h"
|
|
||||||
#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 'wnd_resource.h' doesn't include <QObject>."
|
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 68
|
|
||||||
#error "This file was generated using the moc from 6.8.1. 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_ZN11WndResourceE_t {};
|
|
||||||
} // unnamed namespace
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef QT_MOC_HAS_STRINGDATA
|
|
||||||
static constexpr auto qt_meta_stringdata_ZN11WndResourceE = QtMocHelpers::stringData(
|
|
||||||
"WndResource"
|
|
||||||
);
|
|
||||||
#else // !QT_MOC_HAS_STRINGDATA
|
|
||||||
#error "qtmochelpers.h not found or too old."
|
|
||||||
#endif // !QT_MOC_HAS_STRINGDATA
|
|
||||||
|
|
||||||
Q_CONSTINIT static const uint qt_meta_data_ZN11WndResourceE[] = {
|
|
||||||
|
|
||||||
// content:
|
|
||||||
12, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
0, 0, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
0, // signalCount
|
|
||||||
|
|
||||||
0 // eod
|
|
||||||
};
|
|
||||||
|
|
||||||
Q_CONSTINIT const QMetaObject WndResource::staticMetaObject = { {
|
|
||||||
QMetaObject::SuperData::link<QWidget::staticMetaObject>(),
|
|
||||||
qt_meta_stringdata_ZN11WndResourceE.offsetsAndSizes,
|
|
||||||
qt_meta_data_ZN11WndResourceE,
|
|
||||||
qt_static_metacall,
|
|
||||||
nullptr,
|
|
||||||
qt_incomplete_metaTypeArray<qt_meta_tag_ZN11WndResourceE_t,
|
|
||||||
// Q_OBJECT / Q_GADGET
|
|
||||||
QtPrivate::TypeAndForceComplete<WndResource, std::true_type>
|
|
||||||
>,
|
|
||||||
nullptr
|
|
||||||
} };
|
|
||||||
|
|
||||||
void WndResource::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
auto *_t = static_cast<WndResource *>(_o);
|
|
||||||
(void)_t;
|
|
||||||
(void)_c;
|
|
||||||
(void)_id;
|
|
||||||
(void)_a;
|
|
||||||
}
|
|
||||||
|
|
||||||
const QMetaObject *WndResource::metaObject() const
|
|
||||||
{
|
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
|
|
||||||
}
|
|
||||||
|
|
||||||
void *WndResource::qt_metacast(const char *_clname)
|
|
||||||
{
|
|
||||||
if (!_clname) return nullptr;
|
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_ZN11WndResourceE.stringdata0))
|
|
||||||
return static_cast<void*>(this);
|
|
||||||
return QWidget::qt_metacast(_clname);
|
|
||||||
}
|
|
||||||
|
|
||||||
int WndResource::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
|
||||||
{
|
|
||||||
_id = QWidget::qt_metacall(_c, _id, _a);
|
|
||||||
return _id;
|
|
||||||
}
|
|
||||||
QT_WARNING_POP
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
// This file is autogenerated. Changes will be overwritten.
|
|
||||||
#include <UVLADIE3JM/moc_ListItemWidget.cpp>
|
|
||||||
#include <UVLADIE3JM/moc_wgt_prop_input.cpp>
|
|
||||||
#include <UVLADIE3JM/moc_wnd_create_mat.cpp>
|
|
||||||
#include <UVLADIE3JM/moc_wnd_debug.cpp>
|
|
||||||
#include <UVLADIE3JM/moc_wnd_hierachy.cpp>
|
|
||||||
#include <UVLADIE3JM/moc_wnd_inspector.cpp>
|
|
||||||
#include <UVLADIE3JM/moc_wnd_main.cpp>
|
|
||||||
#include <UVLADIE3JM/moc_wnd_resource.cpp>
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
# Install script for directory: I:/source/render/app
|
|
||||||
|
|
||||||
# Set the install prefix
|
|
||||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
|
||||||
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/render")
|
|
||||||
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 "Release")
|
|
||||||
endif()
|
|
||||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Set the component getting installed.
|
|
||||||
if(NOT CMAKE_INSTALL_COMPONENT)
|
|
||||||
if(COMPONENT)
|
|
||||||
message(STATUS "Install component: \"${COMPONENT}\"")
|
|
||||||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
|
||||||
else()
|
|
||||||
set(CMAKE_INSTALL_COMPONENT)
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
# Is this installation the result of a crosscompile?
|
|
||||||
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
|
||||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
|
||||||
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
|
||||||
if(CMAKE_INSTALL_LOCAL_ONLY)
|
|
||||||
file(WRITE "I:/source/render/build/app/install_local_manifest.txt"
|
|
||||||
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
|
||||||
endif()
|
|
||||||
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user