more changes when tired
This commit is contained in:
@@ -28,9 +28,20 @@ jobs:
|
||||
python -m aqt install-qt windows desktop 6.8.3 win64_msvc2022_64 --outputdir ${{ github.workspace }}/Qt
|
||||
echo "${{ github.workspace }}/Qt/6.8.3/msvc2022_64/bin" >> $GITHUB_PATH
|
||||
|
||||
- name: Install libgit2 via vcpkg
|
||||
run: |
|
||||
vcpkg install libgit2:x64-windows
|
||||
echo "LIBGIT2_INCLUDE_DIR=C:/vcpkg/installed/x64-windows/include" >> $GITHUB_ENV
|
||||
echo "LIBGIT2_LIBRARY=C:/vcpkg/installed/x64-windows/lib/git2.lib" >> $GITHUB_ENV
|
||||
|
||||
- name: Configure CMake
|
||||
run: |
|
||||
cmake -B build -S . -DCMAKE_BUILD_TYPE=Release
|
||||
$version = "${{ github.ref_name }}" -replace '^v', ''
|
||||
cmake -B build -S . `
|
||||
-DCMAKE_BUILD_TYPE=Release `
|
||||
-DCMAKE_PREFIX_PATH="${{ github.workspace }}/Qt/6.8.3/msvc2022_64" `
|
||||
-DLIBGIT2_INCLUDE_DIR="${{ env.LIBGIT2_INCLUDE_DIR }}" `
|
||||
-DLIBGIT2_LIBRARY="${{ env.LIBGIT2_LIBRARY }}"
|
||||
|
||||
- name: Build Project
|
||||
run: |
|
||||
|
||||
+41
-11
@@ -1,8 +1,14 @@
|
||||
cmake_minimum_required(VERSION 3.5.0)
|
||||
project(GitAddonsManager LANGUAGES CXX)
|
||||
set(CMAKE_PREFIX_PATH "C:/Qt/6.11.1/msvc2022_64")
|
||||
set(LIBGIT2_INCLUDE_DIR "C:/libgit2/include")
|
||||
set(LIBGIT2_LIBRARY "C:/libgit2/lib/git2.lib")
|
||||
if(NOT DEFINED CMAKE_PREFIX_PATH)
|
||||
set(CMAKE_PREFIX_PATH "C:/Qt/6.11.1/msvc2022_64")
|
||||
endif()
|
||||
if(NOT DEFINED LIBGIT2_INCLUDE_DIR)
|
||||
set(LIBGIT2_INCLUDE_DIR "C:/libgit2/include")
|
||||
endif()
|
||||
if(NOT DEFINED LIBGIT2_LIBRARY)
|
||||
set(LIBGIT2_LIBRARY "C:/libgit2/lib/git2.lib")
|
||||
endif()
|
||||
find_package(Qt6 COMPONENTS Quick Core QuickControls2 Concurrent Network Widgets REQUIRED)
|
||||
find_package(Qt6LinguistTools)
|
||||
|
||||
@@ -140,14 +146,38 @@ install(TARGETS GitAddonsManager
|
||||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
||||
)
|
||||
|
||||
install(
|
||||
PROGRAMS ${CMAKE_CURRENT_SOURCE_DIR}/io.gitlab.woblight.GitAddonsManager.desktop
|
||||
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/applications
|
||||
)
|
||||
if(WIN32)
|
||||
# Run windeployqt and capture its output into the install tree
|
||||
find_program(WINDEPLOYQT windeployqt HINTS "${CMAKE_PREFIX_PATH}/bin")
|
||||
install(CODE "
|
||||
execute_process(
|
||||
COMMAND \"${WINDEPLOYQT}\"
|
||||
--qmldir \"${CMAKE_SOURCE_DIR}\"
|
||||
\"\${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_BINDIR}/GitAddonsManager.exe\"
|
||||
)
|
||||
")
|
||||
install(FILES C:/vcpkg/installed/x64-windows/bin/git2.dll
|
||||
DESTINATION ${CMAKE_INSTALL_BINDIR}
|
||||
)
|
||||
endif()
|
||||
|
||||
install(
|
||||
PROGRAMS ${CMAKE_CURRENT_SOURCE_DIR}/io.gitlab.woblight.GitAddonsManager.metainfo.xml
|
||||
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/metainfo
|
||||
)
|
||||
if(NOT WIN32)
|
||||
install(
|
||||
PROGRAMS ${CMAKE_CURRENT_SOURCE_DIR}/io.gitlab.woblight.GitAddonsManager.desktop
|
||||
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/applications
|
||||
)
|
||||
install(
|
||||
PROGRAMS ${CMAKE_CURRENT_SOURCE_DIR}/io.gitlab.woblight.GitAddonsManager.metainfo.xml
|
||||
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/metainfo
|
||||
)
|
||||
endif()
|
||||
|
||||
include(InstallRequiredSystemLibraries)
|
||||
set(CPACK_GENERATOR "NSIS") # or "ZIP" for a simple zip
|
||||
set(CPACK_PACKAGE_NAME "GitAddonsManager")
|
||||
set(CPACK_PACKAGE_VERSION "1.0.0")
|
||||
set(CPACK_PACKAGE_EXECUTABLES "GitAddonsManager" "GitAddonsManager")
|
||||
set(CPACK_PACKAGE_FILE_NAME "GitAddonsManager_Setup")
|
||||
include(CPack)
|
||||
|
||||
qt_finalize_executable(GitAddonsManager)
|
||||
|
||||
@@ -1,49 +0,0 @@
|
||||
name: Build and Release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*' # Trigger this workflow whenever you push a tag starting with 'v' (like v1.0.0)
|
||||
|
||||
jobs:
|
||||
build-and-release:
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up MSVC (Visual Studio Compiler)
|
||||
uses: ilammy/msvc-dev-cmd@v1
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.11'
|
||||
|
||||
- name: Install Qt via aqtinstall
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install aqtinstall
|
||||
python -m aqt install-qt windows desktop 6.8.3 win64_msvc2019 --outputdir ${{ github.workspace }}/Qt
|
||||
echo "${{ github.workspace }}/Qt/6.8.3/msvc2019_64/bin" >> $GITHUB_PATH
|
||||
|
||||
- name: Configure CMake
|
||||
run: |
|
||||
cmake -B build -S . -DCMAKE_BUILD_TYPE=Release
|
||||
|
||||
- name: Build Project
|
||||
run: |
|
||||
cmake --build build --config Release
|
||||
|
||||
- name: Run CPack (Generate Installer)
|
||||
working-directory: build
|
||||
run: |
|
||||
cpack -C Release
|
||||
|
||||
- name: Create GitHub Release and Upload Artifacts
|
||||
uses: softprops/action-gh-release@v2
|
||||
with:
|
||||
files: build/GitAddonsManager_Setup.exe # Path to where CPack spits out the installer
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
+75
-3
@@ -123,10 +123,10 @@
|
||||
},
|
||||
{
|
||||
"name" : "HELPSTRING",
|
||||
"value" : "CXX compiler"
|
||||
"value" : "No help, variable specified on the command line."
|
||||
}
|
||||
],
|
||||
"type" : "STRING",
|
||||
"type" : "FILEPATH",
|
||||
"value" : "C:/Program Files/Microsoft Visual Studio/18/Community/VC/Tools/MSVC/14.51.36231/bin/Hostx64/x64/cl.exe"
|
||||
},
|
||||
{
|
||||
@@ -1309,6 +1309,50 @@
|
||||
"type" : "BOOL",
|
||||
"value" : "FALSE"
|
||||
},
|
||||
{
|
||||
"name" : "CPACK_SOURCE_7Z",
|
||||
"properties" :
|
||||
[
|
||||
{
|
||||
"name" : "ADVANCED",
|
||||
"value" : "1"
|
||||
},
|
||||
{
|
||||
"name" : "HELPSTRING",
|
||||
"value" : "Enable to build 7-Zip source packages"
|
||||
}
|
||||
],
|
||||
"type" : "BOOL",
|
||||
"value" : "ON"
|
||||
},
|
||||
{
|
||||
"name" : "CPACK_SOURCE_ZIP",
|
||||
"properties" :
|
||||
[
|
||||
{
|
||||
"name" : "ADVANCED",
|
||||
"value" : "1"
|
||||
},
|
||||
{
|
||||
"name" : "HELPSTRING",
|
||||
"value" : "Enable to build ZIP source packages"
|
||||
}
|
||||
],
|
||||
"type" : "BOOL",
|
||||
"value" : "ON"
|
||||
},
|
||||
{
|
||||
"name" : "FIND_PACKAGE_MESSAGE_DETAILS_Git",
|
||||
"properties" :
|
||||
[
|
||||
{
|
||||
"name" : "HELPSTRING",
|
||||
"value" : "Details about finding Git"
|
||||
}
|
||||
],
|
||||
"type" : "INTERNAL",
|
||||
"value" : "[C:/Program Files/Git/cmd/git.exe][v2.54.0.windows.1()]"
|
||||
},
|
||||
{
|
||||
"name" : "FIND_PACKAGE_MESSAGE_DETAILS_Threads",
|
||||
"properties" :
|
||||
@@ -1347,7 +1391,7 @@
|
||||
}
|
||||
],
|
||||
"type" : "FILEPATH",
|
||||
"value" : "GIT_EXECUTABLE-NOTFOUND"
|
||||
"value" : "C:/Program Files/Git/cmd/git.exe"
|
||||
},
|
||||
{
|
||||
"name" : "GitAddonsManager_BINARY_DIR",
|
||||
@@ -1433,6 +1477,22 @@
|
||||
"type" : "INTERNAL",
|
||||
"value" : "1"
|
||||
},
|
||||
{
|
||||
"name" : "MSVC_REDIST_DIR",
|
||||
"properties" :
|
||||
[
|
||||
{
|
||||
"name" : "ADVANCED",
|
||||
"value" : "1"
|
||||
},
|
||||
{
|
||||
"name" : "HELPSTRING",
|
||||
"value" : "Path to a file."
|
||||
}
|
||||
],
|
||||
"type" : "PATH",
|
||||
"value" : "C:/Program Files/Microsoft Visual Studio/18/Community/VC/Redist/MSVC/14.51.36231"
|
||||
},
|
||||
{
|
||||
"name" : "QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH",
|
||||
"properties" :
|
||||
@@ -7881,6 +7941,18 @@
|
||||
"type" : "FILEPATH",
|
||||
"value" : "Vulkan_LIBRARY-NOTFOUND"
|
||||
},
|
||||
{
|
||||
"name" : "WINDEPLOYQT",
|
||||
"properties" :
|
||||
[
|
||||
{
|
||||
"name" : "HELPSTRING",
|
||||
"value" : "Path to a program."
|
||||
}
|
||||
],
|
||||
"type" : "FILEPATH",
|
||||
"value" : "C:/Qt/6.11.1/msvc2022_64/bin/windeployqt.exe"
|
||||
},
|
||||
{
|
||||
"name" : "WINDEPLOYQT_EXECUTABLE",
|
||||
"properties" :
|
||||
+23
-359
@@ -4,16 +4,6 @@
|
||||
{
|
||||
"path" : "CMakeLists.txt"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeDetermineSystem.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeSystem.cmake.in"
|
||||
},
|
||||
{
|
||||
"isGenerated" : true,
|
||||
"path" : "out/build/x64-Debug/CMakeFiles/4.3.1-msvc1/CMakeSystem.cmake"
|
||||
@@ -28,261 +18,6 @@
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Platform/Windows-Initialize.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeDetermineCXXCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeDetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Platform/Windows-Determine-CXX.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeDetermineCompilerId.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeCompilerIdDetection.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/ADSP-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/Borland-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/Clang-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/Cray-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/CrayClang-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/Diab-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/GHS-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/HP-CXX-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/IAR-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/Intel-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/MSVC-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/NVHPC-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/OrangeC-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/PGI-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/PathScale-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/Renesas-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/SCO-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/TI-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/TIClang-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/Tasking-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/Watcom-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/XL-CXX-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeFindBinUtils.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeCXXCompiler.cmake.in"
|
||||
},
|
||||
{
|
||||
"isGenerated" : true,
|
||||
"path" : "out/build/x64-Debug/CMakeFiles/4.3.1-msvc1/CMakeCXXCompiler.cmake"
|
||||
@@ -347,16 +82,6 @@
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Platform/Windows-MSVC.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeDetermineRCCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeRCCompiler.cmake.in"
|
||||
},
|
||||
{
|
||||
"isGenerated" : true,
|
||||
"path" : "out/build/x64-Debug/CMakeFiles/4.3.1-msvc1/CMakeRCCompiler.cmake"
|
||||
@@ -366,85 +91,11 @@
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeRCInformation.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeTestRCCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeCommonLanguageInclude.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeTestCXXCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeTestCompilerCommon.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeDetermineCompilerABI.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Internal/CMakeDetermineLinkerId.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeParseImplicitIncludeInfo.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeParseImplicitLinkInfo.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeParseLibraryArchitecture.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeTestCompilerCommon.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeCXXCompilerABI.cpp"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeDetermineCompilerSupport.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Internal/FeatureTesting.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Compiler/MSVC-CXX-CXXImportStd.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeCXXCompiler.cmake.in"
|
||||
},
|
||||
{
|
||||
"isGenerated" : true,
|
||||
"path" : "out/build/x64-Debug/CMakeFiles/4.3.1-msvc1/CMakeCXXCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
@@ -475,16 +126,6 @@
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Platform/Linker/Windows-MSVC.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/Internal/CMakeInspectCXXLinker.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CMakeCXXCompiler.cmake.in"
|
||||
},
|
||||
{
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Qt/6.11.1/msvc2022_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake"
|
||||
@@ -5532,6 +5173,29 @@
|
||||
{
|
||||
"path" : "qml.qrc"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/InstallRequiredSystemLibraries.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CPack.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/CPackComponent.cmake"
|
||||
},
|
||||
{
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Templates/CPackConfig.cmake.in"
|
||||
},
|
||||
{
|
||||
"isExternal" : true,
|
||||
"path" : "C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Templates/CPackConfig.cmake.in"
|
||||
},
|
||||
{
|
||||
"isGenerated" : true,
|
||||
"path" : "out/build/x64-Debug/.qt/qml_imports/GitAddonsManager_conf.cmake"
|
||||
+212
-203
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,128 @@
|
||||
{
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"install",
|
||||
"include"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"CMakeLists.txt",
|
||||
"C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/InstallRequiredSystemLibraries.cmake"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 145,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 152,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 159,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 0,
|
||||
"line" : 175,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1,
|
||||
"parent" : 4
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 1,
|
||||
"line" : 807,
|
||||
"parent" : 5
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 1,
|
||||
"line" : 812,
|
||||
"parent" : 5
|
||||
}
|
||||
]
|
||||
},
|
||||
"codemodelVersion" :
|
||||
{
|
||||
"major" : 2,
|
||||
"minor" : 10
|
||||
},
|
||||
"installers" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"component" : "Unspecified",
|
||||
"destination" : "bin",
|
||||
"paths" :
|
||||
[
|
||||
"GitAddonsManager.exe"
|
||||
],
|
||||
"targetId" : "GitAddonsManager::@6890427a1f51a3e7e1df",
|
||||
"targetIndex" : 0,
|
||||
"type" : "target"
|
||||
},
|
||||
{
|
||||
"backtrace" : 2,
|
||||
"component" : "Unspecified",
|
||||
"type" : "code"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"component" : "Unspecified",
|
||||
"destination" : "bin",
|
||||
"paths" :
|
||||
[
|
||||
"C:/vcpkg/installed/x64-windows/bin/git2.dll"
|
||||
],
|
||||
"type" : "file"
|
||||
},
|
||||
{
|
||||
"backtrace" : 6,
|
||||
"component" : "Unspecified",
|
||||
"destination" : "bin",
|
||||
"paths" :
|
||||
[
|
||||
"C:/Program Files/Microsoft Visual Studio/18/Community/VC/Redist/MSVC/14.51.36231/x64/Microsoft.VC145.CRT/msvcp140.dll",
|
||||
"C:/Program Files/Microsoft Visual Studio/18/Community/VC/Redist/MSVC/14.51.36231/x64/Microsoft.VC145.CRT/msvcp140_1.dll",
|
||||
"C:/Program Files/Microsoft Visual Studio/18/Community/VC/Redist/MSVC/14.51.36231/x64/Microsoft.VC145.CRT/msvcp140_2.dll",
|
||||
"C:/Program Files/Microsoft Visual Studio/18/Community/VC/Redist/MSVC/14.51.36231/x64/Microsoft.VC145.CRT/msvcp140_atomic_wait.dll",
|
||||
"C:/Program Files/Microsoft Visual Studio/18/Community/VC/Redist/MSVC/14.51.36231/x64/Microsoft.VC145.CRT/msvcp140_codecvt_ids.dll",
|
||||
"C:/Program Files/Microsoft Visual Studio/18/Community/VC/Redist/MSVC/14.51.36231/x64/Microsoft.VC145.CRT/vcruntime140_1.dll",
|
||||
"C:/Program Files/Microsoft Visual Studio/18/Community/VC/Redist/MSVC/14.51.36231/x64/Microsoft.VC145.CRT/vcruntime140.dll",
|
||||
"C:/Program Files/Microsoft Visual Studio/18/Community/VC/Redist/MSVC/14.51.36231/x64/Microsoft.VC145.CRT/concrt140.dll"
|
||||
],
|
||||
"type" : "file"
|
||||
},
|
||||
{
|
||||
"backtrace" : 7,
|
||||
"component" : "Unspecified",
|
||||
"destination" : "bin",
|
||||
"paths" :
|
||||
[
|
||||
""
|
||||
],
|
||||
"type" : "directory"
|
||||
}
|
||||
],
|
||||
"paths" :
|
||||
{
|
||||
"build" : ".",
|
||||
"source" : "."
|
||||
}
|
||||
}
|
||||
@@ -1,82 +0,0 @@
|
||||
{
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"install"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 139,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 143,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 148,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"codemodelVersion" :
|
||||
{
|
||||
"major" : 2,
|
||||
"minor" : 10
|
||||
},
|
||||
"installers" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"component" : "Unspecified",
|
||||
"destination" : "bin",
|
||||
"paths" :
|
||||
[
|
||||
"GitAddonsManager.exe"
|
||||
],
|
||||
"targetId" : "GitAddonsManager::@6890427a1f51a3e7e1df",
|
||||
"targetIndex" : 0,
|
||||
"type" : "target"
|
||||
},
|
||||
{
|
||||
"backtrace" : 2,
|
||||
"component" : "Unspecified",
|
||||
"destination" : "share/applications",
|
||||
"paths" :
|
||||
[
|
||||
"io.gitlab.woblight.GitAddonsManager.desktop"
|
||||
],
|
||||
"type" : "file"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"component" : "Unspecified",
|
||||
"destination" : "share/metainfo",
|
||||
"paths" :
|
||||
[
|
||||
"io.gitlab.woblight.GitAddonsManager.metainfo.xml"
|
||||
],
|
||||
"type" : "file"
|
||||
}
|
||||
],
|
||||
"paths" :
|
||||
{
|
||||
"build" : ".",
|
||||
"source" : "."
|
||||
}
|
||||
}
|
||||
+6
-6
@@ -26,7 +26,7 @@
|
||||
"objects" :
|
||||
[
|
||||
{
|
||||
"jsonFile" : "codemodel-v2-355a69971443a6715afb.json",
|
||||
"jsonFile" : "codemodel-v2-f2231bd229b0e844f0ac.json",
|
||||
"kind" : "codemodel",
|
||||
"version" :
|
||||
{
|
||||
@@ -35,7 +35,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonFile" : "cache-v2-911d6d210a30808cad0c.json",
|
||||
"jsonFile" : "cache-v2-59e183d39feb3b2974d2.json",
|
||||
"kind" : "cache",
|
||||
"version" :
|
||||
{
|
||||
@@ -44,7 +44,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonFile" : "cmakeFiles-v1-d42fd4ca73744a65a3fd.json",
|
||||
"jsonFile" : "cmakeFiles-v1-6b2f22dbf397b51eaa1f.json",
|
||||
"kind" : "cmakeFiles",
|
||||
"version" :
|
||||
{
|
||||
@@ -90,7 +90,7 @@
|
||||
"responses" :
|
||||
[
|
||||
{
|
||||
"jsonFile" : "cache-v2-911d6d210a30808cad0c.json",
|
||||
"jsonFile" : "cache-v2-59e183d39feb3b2974d2.json",
|
||||
"kind" : "cache",
|
||||
"version" :
|
||||
{
|
||||
@@ -99,7 +99,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonFile" : "cmakeFiles-v1-d42fd4ca73744a65a3fd.json",
|
||||
"jsonFile" : "cmakeFiles-v1-6b2f22dbf397b51eaa1f.json",
|
||||
"kind" : "cmakeFiles",
|
||||
"version" :
|
||||
{
|
||||
@@ -108,7 +108,7 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonFile" : "codemodel-v2-355a69971443a6715afb.json",
|
||||
"jsonFile" : "codemodel-v2-f2231bd229b0e844f0ac.json",
|
||||
"kind" : "codemodel",
|
||||
"version" :
|
||||
{
|
||||
+33
-33
@@ -74,7 +74,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 1,
|
||||
"line" : 80,
|
||||
"line" : 86,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
@@ -98,13 +98,13 @@
|
||||
{
|
||||
"command" : 4,
|
||||
"file" : 1,
|
||||
"line" : 139,
|
||||
"line" : 145,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 9,
|
||||
"file" : 1,
|
||||
"line" : 153,
|
||||
"line" : 183,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
@@ -134,19 +134,7 @@
|
||||
{
|
||||
"command" : 10,
|
||||
"file" : 1,
|
||||
"line" : 126,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 10,
|
||||
"file" : 1,
|
||||
"line" : 127,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 10,
|
||||
"file" : 1,
|
||||
"line" : 129,
|
||||
"line" : 132,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
@@ -158,13 +146,25 @@
|
||||
{
|
||||
"command" : 10,
|
||||
"file" : 1,
|
||||
"line" : 125,
|
||||
"line" : 135,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 10,
|
||||
"file" : 1,
|
||||
"line" : 139,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 10,
|
||||
"file" : 1,
|
||||
"line" : 131,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 13,
|
||||
"file" : 1,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
@@ -200,7 +200,7 @@
|
||||
{
|
||||
"command" : 10,
|
||||
"file" : 1,
|
||||
"line" : 128,
|
||||
"line" : 134,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
@@ -474,13 +474,13 @@
|
||||
{
|
||||
"command" : 10,
|
||||
"file" : 1,
|
||||
"line" : 124,
|
||||
"line" : 130,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 23,
|
||||
"file" : 1,
|
||||
"line" : 56,
|
||||
"line" : 62,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
@@ -498,19 +498,19 @@
|
||||
{
|
||||
"command" : 24,
|
||||
"file" : 1,
|
||||
"line" : 95,
|
||||
"line" : 101,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 24,
|
||||
"file" : 1,
|
||||
"line" : 52,
|
||||
"line" : 58,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 25,
|
||||
"file" : 1,
|
||||
"line" : 49,
|
||||
"line" : 55,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
@@ -586,7 +586,7 @@
|
||||
},
|
||||
{
|
||||
"backtrace" : 77,
|
||||
"define" : "GIT_DESCRIBE=\"\""
|
||||
"define" : "GIT_DESCRIBE=\"v1.0.10-0-gdc2f182-dirty\""
|
||||
},
|
||||
{
|
||||
"backtrace" : 12,
|
||||
@@ -752,14 +752,14 @@
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 72,
|
||||
"id" : "GitAddonsManager_qmlimportscan::@6890427a1f51a3e7e1df"
|
||||
},
|
||||
{
|
||||
"backtrace" : 0,
|
||||
"id" : "GitAddonsManager_autogen::@6890427a1f51a3e7e1df"
|
||||
},
|
||||
{
|
||||
"backtrace" : 72,
|
||||
"id" : "GitAddonsManager_qmlimportscan::@6890427a1f51a3e7e1df"
|
||||
},
|
||||
{
|
||||
"id" : "GitAddonsManager_autogen_timestamp_deps::@6890427a1f51a3e7e1df"
|
||||
}
|
||||
@@ -956,14 +956,14 @@
|
||||
{
|
||||
"id" : "Qt6::uic::@6890427a1f51a3e7e1df"
|
||||
},
|
||||
{
|
||||
"backtrace" : 72,
|
||||
"id" : "GitAddonsManager_qmlimportscan::@6890427a1f51a3e7e1df"
|
||||
},
|
||||
{
|
||||
"backtrace" : 0,
|
||||
"id" : "GitAddonsManager_autogen::@6890427a1f51a3e7e1df"
|
||||
},
|
||||
{
|
||||
"backtrace" : 72,
|
||||
"id" : "GitAddonsManager_qmlimportscan::@6890427a1f51a3e7e1df"
|
||||
},
|
||||
{
|
||||
"id" : "GitAddonsManager_autogen_timestamp_deps::@6890427a1f51a3e7e1df"
|
||||
}
|
||||
+4
-4
@@ -55,10 +55,6 @@
|
||||
"backtrace" : 0,
|
||||
"id" : "Qt6::Quick::@6890427a1f51a3e7e1df"
|
||||
},
|
||||
{
|
||||
"backtrace" : 0,
|
||||
"id" : "Qt6::Widgets::@6890427a1f51a3e7e1df"
|
||||
},
|
||||
{
|
||||
"backtrace" : 0,
|
||||
"id" : "Qt6::QuickControls2::@6890427a1f51a3e7e1df"
|
||||
@@ -67,6 +63,10 @@
|
||||
"backtrace" : 0,
|
||||
"id" : "Qt6::uic::@6890427a1f51a3e7e1df"
|
||||
},
|
||||
{
|
||||
"backtrace" : 0,
|
||||
"id" : "Qt6::Widgets::@6890427a1f51a3e7e1df"
|
||||
},
|
||||
{
|
||||
"backtrace" : 0,
|
||||
"id" : "GitAddonsManager_qmlimportscan::@6890427a1f51a3e7e1df"
|
||||
+1
-1
@@ -26,7 +26,7 @@
|
||||
{
|
||||
"command" : 6,
|
||||
"file" : 2,
|
||||
"line" : 153,
|
||||
"line" : 183,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+62
@@ -0,0 +1,62 @@
|
||||
{
|
||||
"abstract" : true,
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "C:/Program Files/Git/cmd/git.exe"
|
||||
}
|
||||
],
|
||||
"backtrace" : 3,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"find_package"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"C:/Program Files/Microsoft Visual Studio/18/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-4.3/Modules/FindGit.cmake",
|
||||
"CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 15,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 0,
|
||||
"parent" : 1
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 179,
|
||||
"parent" : 2
|
||||
}
|
||||
]
|
||||
},
|
||||
"codemodelVersion" :
|
||||
{
|
||||
"major" : 2,
|
||||
"minor" : 10
|
||||
},
|
||||
"id" : "Git::Git::@6890427a1f51a3e7e1df",
|
||||
"imported" : true,
|
||||
"local" : true,
|
||||
"name" : "Git::Git",
|
||||
"nameOnDisk" : "git.exe",
|
||||
"paths" :
|
||||
{
|
||||
"build" : ".",
|
||||
"source" : "."
|
||||
},
|
||||
"sources" : [],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
||||
+1
-1
@@ -49,7 +49,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 14,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 7,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -40,7 +40,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 9,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -34,7 +34,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 9,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -23,7 +23,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 2,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -24,7 +24,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 2,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 7,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -43,7 +43,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 9,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 7,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -24,7 +24,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 2,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -24,7 +24,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 2,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -24,7 +24,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 2,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -23,7 +23,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 2,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -24,7 +24,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 2,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -24,7 +24,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 2,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -24,7 +24,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 2,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -34,7 +34,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 6,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -43,7 +43,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 12,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -43,7 +43,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 12,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -43,7 +43,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 12,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -43,7 +43,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 12,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 7,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -44,7 +44,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 12,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -38,7 +38,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 12,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -42,7 +42,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -36,7 +36,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -34,7 +34,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 9,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 7,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 7,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -43,7 +43,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 9,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -34,7 +34,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 3,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -34,7 +34,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 3,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 7,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -49,7 +49,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 14,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -34,7 +34,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 3,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -40,7 +40,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 9,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -40,7 +40,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 9,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -40,7 +40,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 9,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -29,7 +29,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 2,
|
||||
"line" : 7,
|
||||
"line" : 13,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -29,7 +29,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 2,
|
||||
"line" : 7,
|
||||
"line" : 13,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -29,7 +29,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 2,
|
||||
"line" : 7,
|
||||
"line" : 13,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -29,7 +29,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 2,
|
||||
"line" : 7,
|
||||
"line" : 13,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -29,7 +29,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 2,
|
||||
"line" : 7,
|
||||
"line" : 13,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -29,7 +29,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 2,
|
||||
"line" : 7,
|
||||
"line" : 13,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -29,7 +29,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 2,
|
||||
"line" : 7,
|
||||
"line" : 13,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -40,7 +40,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 9,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -41,7 +41,7 @@
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 10,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -40,7 +40,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 9,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -40,7 +40,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 9,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -36,7 +36,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 8,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -36,7 +36,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 8,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
+1
-1
@@ -36,7 +36,7 @@
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 8,
|
||||
"line" : 6,
|
||||
"line" : 12,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user