Skip to content
  • 143k Topics
    719k Posts
    R
    @KH-219Design and @SGaist : Thank you very much! This is fantastic information. I assume that the syntax of the .qmake.conf file is the same as that of any .pro file? I think my main problem is still not quite solved. I have a project where the directory structure looks like this: Project_Dir |__app <== (under source-code management) |__src |__app.pro <== has "TEMPLATE=app" MyApp.pro <== has "TEMPLATE=subdirs", but is this OK?? |__3rd_party <== (also under SCM, but in a different repository) |__A_lib |__src A_lib.pro |__B_lib |__src B_lib.pro |__C_lib |__src C_lib.pro |__build <== (not under SCM) |__<QtVersion> |__Debug <== build folders for "MyApp" |__Release <== "" |__libs <== (build folder for "A_lib + B_lib + C_lib" Each of the 3rd party projects is built as a static library. Presently, I have the default build folder in Qt Creator defined so that up to now, everything in 'MyApp' is built in the correct folder under 'Project_Dir/build'. I can change the build folder for each of the libraries to get what I want, but I have to do that manually in Qt Creator for each library (only the Release configuration is built for the libraries). How can I prevent qmake from creating a "build" folder for the libraries under the "3rd_party" folder which is under SCM and direct it to build under "Project_Dir/build/<QtVersion>/libs" instead, without requiring a manual edit of the shadow build folder in Qt Creator? Even with a .qmake.conf file in each folder next to the lib's .pro file, how would that work? I can use OBJECT_DIR etc. to keep out the artifacts of the build, but the directory itself will be created to contain the Makefile. Maybe SUBDIRS is not the right way to do this?
  • Jobs, project showcases, announcements - anything that isn't directly development
    4k 23k
    4k Topics
    23k Posts
    V
    Everyone who is trying to cross-compile Qt for Orange Pi 3B can follow this tutorial: https://github.com/vverenich/CrossCompileQtForOpi
  • Everything related to designing and design tools

    129 391
    129 Topics
    391 Posts
    J
    In QT Design Studio, Tab Buttons are mostly for navigation within the UI, but each tab doesn’t automatically hide other content. Usually, a StackView or Loader is needed to switch visible content depending on the active tab.
  • Everything related to the QA Tools

    81 219
    81 Topics
    219 Posts
    H
    @IamSumit can you reproduce the issue and share the Support Information logs. Please refer to the following Knowledge Base Article regarding how to obtain the Support Information is https://qatools.knowledgebase.qt.io/misc/collecting-support-info/collecting-support-information-linux-mac-windows/
  • Everything related to learning Qt.

    389 2k
    389 Topics
    2k Posts
    C
    I am looking for a teammate for this competition, an English-speaking person preferred living in Germany.
  • 2k Topics
    13k Posts
    T
    In qnamespace.h, I add some key_code mappings : For example : enum Key { [...] KEY_CLEYVER_F1 = 0x01002122, // unused Qt keycode map for Cleyver XTremTab8 F1 Key KEY_CLEYVER_F2 = 0x01002121, // unused Qt keycode map for Cleyver XTremTab8 F2 Key [...] } And in androidjniinput, I add switches in static QKeyCombination mapAndroidKey(int key) { [...] switch (key) { case 0x00000122: // XTREMTAB f1 return Qt::KEY_CLEYVER_F1 ; [...] } I have four android keycodes : 0x121, 0x122 (for Cleyver) , 0x1a0 and 0x1a1 (for Crosscall).
  • 4k Topics
    18k Posts
    GrecKoG
    Le [=] n'étant pas nécessaire ici vu qu'il n'y a rien à capturer dans la lambda. connect(obj1, &MyObject::mySignal , this, [](int arg1){ qDebug() << arg1; });
  • This is where all the posts related to the Qt web services go. Including severe sillyness.
    1k 10k
    1k Topics
    10k Posts
    SGaistS
    Hi, I think you can use https://forum.qt.io/category/5/qt-io-webservices category for this type of question (moved there by the way). Are these in your "unread" section ? Are they marked as you following them ?