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

WIP: Extensions #33

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
16fef18
Install libraries to lib instead of libs. Remove mo2_configure_uibase().
Holt59 Jul 8, 2024
44457dc
Import stuff from registry and update README.
Holt59 Jul 10, 2024
8b2c068
Remove find_package(Qt6) in root to avoid needing Qt6 in Python plugin.
Holt59 Jul 10, 2024
6eaa1e0
Add extra options to mo2_python_pip_install.
Holt59 Jul 11, 2024
46170ad
Bring config file from the VCPKG registry.
Holt59 Jul 11, 2024
15edc01
Install PyQt6 automatically when needed.
Holt59 Jul 11, 2024
beb3234
Fix UI and translation file generation for Python.
Holt59 Jul 11, 2024
b9ce33e
Set imported config map.
Holt59 Jul 11, 2024
d5ee29c
Add specific files to store version-related stuff.
Holt59 Jul 13, 2024
18c4679
More flexibility to define sources of a target.
Holt59 Jul 13, 2024
45b3d8a
More flexibility Python pip install and ability to customize default …
Holt59 Jul 13, 2024
87caedb
Remove message.
Holt59 Jul 13, 2024
b2c7511
Move PyQt6 target in autogen folder.
Holt59 Jul 13, 2024
717968f
Prevent Python from using virtualenv and fix typo in mo2_python_pip_i…
Holt59 Jul 13, 2024
5705555
Allow specifying deploy directory in mo2_deploy_qt.
Holt59 Jul 14, 2024
c8ecc87
Allow specifying installation directory when adding translations.
Holt59 Jul 14, 2024
d5bf19e
Add MO2_INSTALL_IS_BIN option.
Holt59 Jul 14, 2024
19d7ca6
Bump Qt version to 6.7.1 and sip to 6.8.6.
mikael-capelle Aug 5, 2024
0185ac7
Add comments and update README.
Holt59 Aug 5, 2024
434f71f
Set working directory for tests and allow not linking to mock and mai…
Holt59 Aug 9, 2024
d3fe015
Install plugins under extensions.
Holt59 Jul 14, 2023
dfc8964
Add mo2_configure_extension().
Holt59 Jul 22, 2023
2cdf7fd
Extract and install icon from metadata.
Holt59 Jun 29, 2024
b104ea1
Do not install translations.
Holt59 Aug 10, 2024
fe13b5a
Fix installation of Python plugins.
Holt59 Aug 11, 2024
c4b01b3
Fix check for icons.
Holt59 Oct 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Bump Qt version to 6.7.1 and sip to 6.8.6.
mikael-capelle committed Aug 5, 2024
commit 19d7ca60b83be1e6ca9fed810031a204b2f882d8
5 changes: 2 additions & 3 deletions mo2_versions.cmake
Original file line number Diff line number Diff line change
@@ -7,14 +7,13 @@ endif()

set(MO2_QT_VERSION_MAJOR 6)
set(MO2_QT_VERSION_MINOR 7)
set(MO2_QT_VERSION_PATCH 0)
set(MO2_QT_VERSION_PATCH 1)
set(MO2_QT_VERSION "${MO2_QT_VERSION_MAJOR}.${MO2_QT_VERSION_MINOR}.${MO2_QT_VERSION_PATCH}")

set(MO2_PYTHON_VERSION "3.12")

set(MO2_PYQT_VERSION ${MO2_QT_VERSION})
set(MO2_SIP_VERSION "6.8.5")

set(MO2_SIP_VERSION "6.8.6")

# mark as included
set(MO2_VERSIONS_INCLUDED TRUE)