Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Port to Qt 6 #96

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

Port to Qt 6 #96

wants to merge 5 commits into from

Commits on May 14, 2022

  1. Port to Qt 6

    The PatternSyntax enum had to be removed as QRegularExpression only
    supports Perl-compatible regular expressions.
    
    As QVariant's comparison operators were removed, a simplified
    comparison is now done as a starting point, but should probably
    be extended to support more types.
    
    Fixes oKcerG#84
    Fixes oKcerG#86
    mitchcurtis committed May 14, 2022
    Configuration menu
    Copy the full SHA
    fe50203 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2022

  1. Configuration menu
    Copy the full SHA
    1873b48 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2022

  1. Configuration menu
    Copy the full SHA
    f336b3c View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2022

  1. Merge pull request #1 from atraczyk/qt-6

    cmake: fix c++17 build requirement for msvc
    mitchcurtis committed Aug 4, 2022
    Configuration menu
    Copy the full SHA
    994900b View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2022

  1. Fix build with ASAN on Linux

    I was getting the following error:
    
    /usr/bin/ld: isle/3rdparty/SortFilterProxyModel/CMakeFiles/SortFilterProxyModel.dir/SortFilterProxyModel_autogen/mocs_compilation.cpp.o: relocation R_X86_64_PC32 against symbol `__asan_option_detect_stack_use_after_return' can not be used when making a shared object; recompile with -fPIC
    
    And:
    
    /home/mitch/dev/bgv/isle/3rdparty/SortFilterProxyModel/qqmlsortfilterproxymodel.cpp:1: error: In included file: "You must build your code with position independent code if Qt was configured with -reduce-relocations. "         "Compile your code with -fPIC (and not with -fPIE)."
    
    Initially I fixed this with:
    
        set(CMAKE_POSITION_INDEPENDENT_CODE ON)
    
    but was told the proper solution is to add the missing
    target_link_libraries.
    mitchcurtis committed Aug 18, 2022
    Configuration menu
    Copy the full SHA
    f288149 View commit details
    Browse the repository at this point in the history