Skip to content
  • 0 Votes
    4 Posts
    498 Views
    R
    Thanks for the reply @Christian-Ehrlicher , may be dump question , can we install the installer that you have shared for arm64 installer(https://download.qt.io/official_releases/online_installers/) on the podman container directly ? on top of that can we customize the other lib like openssl,icu versions is it possible ?
  • 1 Votes
    4 Posts
    241 Views
    R
    @Christian-Ehrlicher is there any pre-requistic for hardware to do cross compile for the host device ...
  • Product type is not an application, not building an APK.

    Unsolved Installation and Deployment
    5
    0 Votes
    5 Posts
    393 Views
    JonBJ
    @MT34 said in Product type is not an application, not building an APK.: 13:05:09: Product type is not an application, not building an APK. I know nothing, but try see whether https://forum.qt.io/topic/162329/qtcreator-15-changing-android-application-name-breaks-build helps? Or general "delete what you have and have a go again from scratch"?
  • 0 Votes
    2 Posts
    156 Views
    SGaistS
    Hi, I think you should bring that question to the interest mailing list. You will find there Qt's developers/maintainers. This forum is more user oriented.
  • How to download 5.15? (Open source)

    Unsolved Installation and Deployment
    24
    0 Votes
    24 Posts
    18k Views
    Vahid KaraBeyV
    If you are using the Qt Maintenance Tool or the Qt Online Installer and only see Qt 6.x (for example Qt 6.9), you can still install older versions like Qt 5.15.x. By default, the installer hides archived versions. To enable them: Open the Qt Maintenance Tool (or run the Online Installer). Log in with your Qt account. On the “Select Components” page, look for the filter options at the top. Enable the “Archive” option. Now you will see older releases, including Qt 5.x.x versions. Select the version you want (e.g. Qt 5.15.2) and install it. This way you don’t need to manually download and build from source — the installer can fetch the archived packages for you.
  • Cannot find application binary in build dir

    Unsolved Installation and Deployment
    3
    0 Votes
    3 Posts
    172 Views
    M
    cmake_minimum_required(VERSION 3.16) project(PhotoStdAesthetic VERSION 0.1 LANGUAGES CXX) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_AUTOMOC ON) set(CMAKE_AUTORCC ON) set(CMAKE_AUTOUIC ON) set(CMAKE_INCLUDE_CURRENT_DIR ON) Qt paketleri (Sql'i açtım, gerekirse yorumla) find_package(Qt6 6.9 REQUIRED COMPONENTS Core Gui Quick Multimedia QuickControls2) qt_standard_project_setup(REQUIRES 6.5) Ana executable (Android’de otomatik .so üretir) qt_add_executable(appPhotoStdAesthetic main.cpp src/Camera/CameraHandler.cpp src/Camera/CameraHandler.h src/Share/ShareUtils.cpp src/Share/ShareUtils.h src/UserModel/UserModel.cpp src/UserModel/UserModel.h src/GalleryModel/GalleryModel.cpp src/GalleryModel/GalleryModel.h ) qt_add_qml_module(appPhotoStdAesthetic URI PhotoStdAesthetic VERSION 1.0 QML_FILES Main.qml qml/Pages/PageUserPro.qml qml/Pages/homePage.qml qml/Pages/CamPageNose.qml qml/Pages/PageGallery.qml qml/Pages/PageViewer.qml qml/Pages/PageRegister.qml qml/Components/ButtonCustom.qml qml/Components/DelegateThumbnail.qml qml/Components/ItemUserPro.qml RESOURCES assets/images/home_grid1.png assets/images/home_grid2.png assets/images/home_grid3.png assets/images/home_grid4.png ) Android ayarları if(ANDROID) # Android deploy dizini ve hedef ABIs set_target_properties(appPhotoStdAesthetic PROPERTIES QT_ANDROID_PACKAGE_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/android" QT_ANDROID_ABIS "arm64-v8a" QT_ANDROID_PACKAGE_NAME "com.photostdaesthetic.app" QT_ANDROID_TARGET_SDK_VERSION 34 ) # Plugin import: Debug ve Release için ayrı ayrı veya ortak qt_import_plugins(appPhotoStdAesthetic INCLUDE_BY_TYPE imageformats EXCLUDE_BY_TYPE qmltooling EXCLUDE_BY_TYPE iconengines EXCLUDE_BY_TYPE networkinformation EXCLUDE_BY_TYPE tls EXCLUDE_BY_TYPE platforminputcontexts ) # Deploy script oluştur ve yükle qt_generate_deploy_qml_app_script( TARGET appPhotoStdAesthetic OUTPUT_SCRIPT deploy_script NO_UNSUPPORTED_PLATFORM_ERROR DEPLOY_USER_QML_MODULES_ON_UNSUPPORTED_PLATFORM ) install(SCRIPT ${deploy_script}) endif() Masaüstü ayarları if(NOT ANDROID) set_target_properties(appPhotoStdAesthetic PROPERTIES MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION} MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR} MACOSX_BUNDLE TRUE WIN32_EXECUTABLE TRUE ) endif() Qt kütüphaneleri target_link_libraries(appPhotoStdAesthetic PRIVATE Qt6::Core Qt6::Gui Qt6::Quick Qt6::QuickControls2 Qt6::Multimedia )
  • Error compiling Qt 6.10

    Unsolved Installation and Deployment
    7
    0 Votes
    7 Posts
    501 Views
    Christian EhrlicherC
    In the error message you can see why it fails to link. You can also simply ignore this submodule with -skip option from ./configure
  • 1 Votes
    14 Posts
    4k Views
    bleriot13B
    Sorry for not posting before, but I had completely forgotten about this thread!!! The problem is not happening lately; now I'm using Qt Creator 17.0.0 and the latest (as of today) version of MSVC 2022. However, the last times this problem happened I could solved more or less quickly following the steps below: Go to folder %appdata%\roaming. Here, delete subfolder QtProject Still in %appdata%\roaming... I'm not sure about whether deleting subfolder Qt is necessary, since it contains your credentials to log into the Qt websites. Normally, I delete it and when finishing the process I retype the credentials once more. Then go to folder %appdata%\local. Then delete subfolder QtProject. Then go to folder %appdata%\Temp and there delete all files whose name start with "QtCreator-" (there will be quite a few!) Finally, using the Qt Maintenance Tool, uninstall Qt Creator. Once that it's been completely uninstalled, reinstall it again. As I said, this worked for me the last two or three times the problem arised. Can't guarantee that it'll work for everybody! I guess that deleting the files and folder listed above I'm cleaning all traces pointing to MSVC. Uninstalling and reinstalling forces re-creating (hopefully) correctly these links.
  • 0 Votes
    4 Posts
    264 Views
    L
    I seems that updating the conf via rcc update maintenancetool.dat but keep the old maintenancetool.ini and the ini file still contains the old repo.
  • 0 Votes
    2 Posts
    282 Views
    SGaistS
    Hi and welcome to devnet, If memory serves well you can use -I /path/to/include.
  • building Qt src code and import to vs2019

    Unsolved Installation and Deployment
    2
    0 Votes
    2 Posts
    243 Views
    jsulmJ
    @TThityou You will need tp provide more information: Do you follow the Qt build instructions? What commands exactly did you execute?
  • 0 Votes
    3 Posts
    729 Views
    3
    I have the same issue on Orin with Qt5 (Yocto Build). Did you find a solution?
  • Need to build QtCorePrivate for 6.8.,1

    Unsolved Installation and Deployment
    2
    0 Votes
    2 Posts
    235 Views
    Axel SpoerlA
    In your CMakeLists.txt, just find the package and link to it>: find_package(Qt6 REQUIRED COMPONENTS Core CorePrivate) ... target_link_libraries(target_name PRIVATE Qt6::Core Qt6::CorePrivate )
  • I can't choose anything where I install it.

    Unsolved Installation and Deployment
    1
    0 Votes
    1 Posts
    149 Views
    No one has replied
  • 0 Votes
    14 Posts
    5k Views
    cristian-adamC
    @aha_1980 said in QT Creator Failed To add files to a project with Error.: @cristian-adam is that something for you? Well yes. I just tested it, and I could reproduce the issue. I've created https://bugreports.qt.io/browse/QTCREATORBUG-33363 Thank you for mentioning it.
  • Kickstart for paid Plan

    Solved Installation and Deployment
    3
    0 Votes
    3 Posts
    2k Views
    Axel SpoerlA
    Hello, this might be interesting for you! Feel free to ping me directly, I can get you in touch with our sales.
  • 0 Votes
    2 Posts
    2k Views
    Axel SpoerlA
    Qt 5.15 isn't supported anymore, just to begin with ;-) MimeTypeDatabaseOriginalSize is a static constexpr, the absence of which suggests that somehow configure has flipped FEATURE_mimetype to OFF. Probably a dependency has been added after 5.14. Please check the configure output for more information. Please also try Qt 6 (at least 6.5, better 6.9) and see if it still happens.
  • 1 Votes
    13 Posts
    6k Views
    J
    Anyone reading this should check these instructions instead: https://forum.qt.io/topic/147272/preparing-app-for-microsoft-store-qt-6-cmake
  • Qt 6.8.3 build fails on windows

    Unsolved Installation and Deployment
    2
    0 Votes
    2 Posts
    624 Views
    Christian EhrlicherC
    @gvanvoor said in Qt 6.8.3 build fails on windows: Does someone have an idea why it's looking for clang-cl ? Because you set it in the CXX environment variable as cmake tells you some lines above.
  • Can not create a desktop shortcut

    Unsolved Installation and Deployment
    1
    0 Votes
    1 Posts
    324 Views
    No one has replied