跳到內容

Qt Creator and other tools

Have a question about Qt Creator, our cross-platform IDE, or any of the other tools? Ask here!
7.6k 主題 35.3k 貼文
  • MSVC2017 64bit compiler VS. MinGW 32bit compiler

    Unsolved
    4
    0 評價
    4 貼文
    1k 瀏覽
    jsulmJ
    @Pagiraff That's interesting. You could check whether this is a known issue here: https://bugreports.qt.io/secure/Dashboard.jspa You can file a bug report if this is not yet reported (preferably with a small example project demonstrating the issue).
  • Use Qbs in similar way of using autoconf/autotools

    Unsolved
    6
    0 評價
    6 貼文
    1k 瀏覽
    A
    @xylosper Yea cmake can have some issues with certain ides. Others are built for it. The new MSVC 2017 has some support for cmake natively. My favorite ide CLion by JetBrains is 100% based around cmake and integrates completely with it. For things like adding a class and all that type of stuff. But if cmake isn't for you that is fine too. :) I'm not saying there's no way to do it with qbs, just that I haven't used it. Once I found cmake it's hard to use anything else. It handles everything cross platform, and all my development is cross platform. Maybe someone else can add on to the qbs thing...
  • QtCreator on Ubuntu - bind alt keys

    Unsolved
    2
    0 評價
    2 貼文
    590 瀏覽
    jsulmJ
    @Kepler-141c This is rather a question for an Ubuntu forum.
  • QtCreator - Reconfigure CMake project from the Build Settings

    Unsolved
    3
    0 評價
    3 貼文
    973 瀏覽
    K
    This is 4.6.0 with CMake I believe 3.5.0.
  • Can I use clang with -std=c++17 in qmake?

    Solved
    10
    0 評價
    10 貼文
    24k 瀏覽
    SGaistS
    WinRT ? You should have mentioned that earlier. Why don't use one of Qt's WinRT builds ?
  • Qt Creator 3.5.1 stdin for command line with Deploy to Remote Linux Host

    Unsolved
    2
    0 評價
    2 貼文
    972 瀏覽
    S
    @Snat Solve it using different approch Using argv to send either cin or pathway to fifo file. Then using ssh remotly with echo command > myfifofile. My code do the rest Reading from file or cin Hope this help
  • QtCreator: The remote host closed the connection

    Unsolved
    1
    0 評價
    1 貼文
    919 瀏覽
    尚無回覆
  • Qt Installer Framework: Windows Quick Launch

    Unsolved
    2
    1 評價
    2 貼文
    746 瀏覽
    AndeolA
    Apparently, recent versions of windows are now preventing any kind of automatic change to the taskbar: https://superuser.com/questions/1193985/command-line-code-to-pin-program-to-taskbar-windows-10 I tried the solution presented here for adding shortcut to the taskbar, but it didn't work. It probably used to work on older windows versions, but now, shortcut is created and added to the folded, but not visible on the taskbar. It's probably going to be difficult to change this, as it comes from windows side. The taskbar is the user's territory. Only he can modify it.
  • Setting qrc file alias in Qt creator

    Unsolved creator qrc editing alias in qrc
    1
    0 評價
    1 貼文
    1k 瀏覽
    尚無回覆
  • Installing QT Creator on MAC along side older version

    Unsolved
    2
    0 評價
    2 貼文
    459 瀏覽
    SGaistS
    Hi, No, no problem having several versions of Qt Creator. Just keep them in separate folders.
  • QDoc inherit from Qt Quick Control 2 Slider

    Unsolved
    2
    0 評價
    2 貼文
    508 瀏覽
    SGaistS
    Hi, Can you provide a minimal sample project that allows to replicate that ?
  • Add resource file (*.rc) for installer in QtInstallerFramework

    Unsolved
    5
    0 評價
    5 貼文
    958 瀏覽
    O
    @koahnig Yes, I checked this page and didn't find the anwser to my question(((
  • .pro.user error

    Solved
    3
    0 評價
    3 貼文
    620 瀏覽
    S
    @koahnig Thanks! It looks like it works
  • QtCreator cross-compilation sysfs GPIO permissions

    Unsolved
    2
    0 評價
    2 貼文
    559 瀏覽
    J
    I've just added a usleep(100000) line prior to setting the direction of the GPIO, and I'm no longer receiving the permission denied error (but my application is now running very slowly!). As such I don't believe I have a particular issue with QtCreator itself. I'll leave this up in case anyone else has a similar issue. I'll be posting on SO now to try and resolve this permission/timing issue.
  • Cross-compilation

    Solved
    9
    0 評價
    9 貼文
    3k 瀏覽
    A
    yes you're right , i did not "have" to restart the Qt creator, since you just add the location of corresponding qmake.
  • Qt Creator Not Recognizing New Project Build Directory

    Solved
    5
    0 評價
    5 貼文
    1k 瀏覽
    C
    Solved the problem! The default working directory is the working directory as of the last time you closed the project (maybe save not sure). So I set the working directory to the new one by unchecking shadow build, closed the project, then re-opened it and the default shadow build working directory was updated. Now clicking shadow build works again. Somewhat unintuitive but oh well.
  • Library errors when debugging with Qt Creator

    Solved
    13
    0 評價
    13 貼文
    2k 瀏覽
    aha_1980A
    @tkansgar so please close this thread as solved now. thanks
  • How to use scc and scxml with a qmake-based project?

    Unsolved
    8
    0 評價
    8 貼文
    3k 瀏覽
    R
    @jsulm that that doc page refers to a specific class (QScxmlCompiler::Loader) which apparently was added subsequently to a class introduced in a earlier release (QScxmlCompiler, introduced in Qt 5.7). Evenso, apparently those classes cover another feature which is only orthogonaly related with generating source code from SCXML documents. Meanwhile, the Qt Creator's manual entry on Editing State Charts does not mention anywhere which Qt version is required to use this feature. This may cause some confusion as potential users may be led to believe that this feature just works, although it doesn't.
  • CurrentBuild:Type

    Solved
    3
    0 評價
    3 貼文
    753 瀏覽
    canellasC
    @sierdzio Thanks!
  • Do .pri subprojects have a name?

    已移動 Unsolved
    8
    0 評價
    8 貼文
    2k 瀏覽
    sierdzioS
    Since you mention functionality change: there is, of course, a way to use .pri cleverly. Consider this code: CONFIG += feature1 # ... feature1 { include(mySuperFeature.pri) } else { include(myOtherSuperFeature.pri) } In this simple way you can include different headers, sources, rules etc. based on some config values. However, even here, the pri file is only a simple include. You would get exactly the same results if you copy-pasted the contents of mySuperFeature.pri and myOtherSuperFeature.pri directly into the code above.