Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. where can i find a list of default install locations for all the various qt5 AND QML library binaries/headers

where can i find a list of default install locations for all the various qt5 AND QML library binaries/headers

Scheduled Pinned Locked Moved Solved General and Desktop
12 Posts 2 Posters 743 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • P Offline
    P Offline
    pgiovanni
    wrote on 14 Jul 2021, 20:00 last edited by pgiovanni
    #1

    where can i find a list of default install locations for all the various qt5 AND QML library binaries/headers? I find qml and qt5 are separate. I can't find things such as QQmlApplicationEngine, QQmlContext, or QQuickStyle. QApplication and QCommandLineParser have showed up. I'm attempting to build an open source project that uses qt libraries, along with some other libs I haven't identified yet. I'm using vscode and attempting to edit up the json files.

    I'm using linux mint x86_64.

    1 Reply Last reply
    0
    • P Offline
      P Offline
      pgiovanni
      wrote on 15 Jul 2021, 04:07 last edited by pgiovanni
      #8

      ah, i found some of the libs within my /home subdirectories for some reason.

      edit: the extra q libs were apart of the kde api i installed. Searching for dependencies can be a bother!

      M 1 Reply Last reply 15 Jul 2021, 05:07
      1
      • M Offline
        M Offline
        mrjj
        Lifetime Qt Champion
        wrote on 14 Jul 2021, 20:07 last edited by
        #2

        Hi
        You mean like
        C:\Qt\5.15.2\msvc2019_64\include
        and
        C:\Qt\5.15.2\msvc2019_64\lib

        1 Reply Last reply
        0
        • P Offline
          P Offline
          pgiovanni
          wrote on 14 Jul 2021, 20:18 last edited by
          #3

          yes, but i'm using linux so those paths aren't relevant. i've used commands like find . -name QQmlApplicationEngine in the terminal to search my filesystem for the libs. Ive found two of them in the /usr directory. The rest just don't exist anywhere in the /usr directory. I want to know how to install each specific lib so I can build this app. I know I have qt5 and qml installed via sudo apt-get install -y qml-module-qtquick-controls2 and sudo apt-get install qt5-default.

          M 1 Reply Last reply 14 Jul 2021, 20:26
          0
          • P pgiovanni
            14 Jul 2021, 20:18

            yes, but i'm using linux so those paths aren't relevant. i've used commands like find . -name QQmlApplicationEngine in the terminal to search my filesystem for the libs. Ive found two of them in the /usr directory. The rest just don't exist anywhere in the /usr directory. I want to know how to install each specific lib so I can build this app. I know I have qt5 and qml installed via sudo apt-get install -y qml-module-qtquick-controls2 and sudo apt-get install qt5-default.

            M Offline
            M Offline
            mrjj
            Lifetime Qt Champion
            wrote on 14 Jul 2021, 20:26 last edited by
            #4

            Hi
            Ok so that would been worth mentioning. :)

            What does

            dpkg -L qt5-default
            

            gives ?

            1 Reply Last reply
            1
            • P Offline
              P Offline
              pgiovanni
              wrote on 14 Jul 2021, 21:05 last edited by pgiovanni
              #5

              that command out puts:

              paul@pauls-computer:~$ dpkg -L qt5-default
              
              /.
              /usr
              /usr/lib
              /usr/lib/x86_64-linux-gnu
              /usr/lib/x86_64-linux-gnu/qtchooser
              /usr/share
              /usr/share/doc
              /usr/share/doc/qt5-default
              /usr/share/doc/qt5-default/copyright
              /usr/lib/x86_64-linux-gnu/qtchooser/default.conf
              /usr/share/doc/qt5-default/changelog.Debian.gz
              
              M 1 Reply Last reply 14 Jul 2021, 21:07
              0
              • P pgiovanni
                14 Jul 2021, 21:05

                that command out puts:

                paul@pauls-computer:~$ dpkg -L qt5-default
                
                /.
                /usr
                /usr/lib
                /usr/lib/x86_64-linux-gnu
                /usr/lib/x86_64-linux-gnu/qtchooser
                /usr/share
                /usr/share/doc
                /usr/share/doc/qt5-default
                /usr/share/doc/qt5-default/copyright
                /usr/lib/x86_64-linux-gnu/qtchooser/default.conf
                /usr/share/doc/qt5-default/changelog.Debian.gz
                
                M Offline
                M Offline
                mrjj
                Lifetime Qt Champion
                wrote on 14 Jul 2021, 21:07 last edited by
                #6

                @pgiovanni
                Ok. so that is its install paths.
                So the files should be there.

                1 Reply Last reply
                0
                • P Offline
                  P Offline
                  pgiovanni
                  wrote on 14 Jul 2021, 22:04 last edited by pgiovanni
                  #7

                  cool, so what about the missing libraries? how can i find those? i've searched all of /usr's subdirectories for them.

                  here is a link to the qt docs for one of the libs i'm missing:

                  1 Reply Last reply
                  0
                  • P Offline
                    P Offline
                    pgiovanni
                    wrote on 15 Jul 2021, 04:07 last edited by pgiovanni
                    #8

                    ah, i found some of the libs within my /home subdirectories for some reason.

                    edit: the extra q libs were apart of the kde api i installed. Searching for dependencies can be a bother!

                    M 1 Reply Last reply 15 Jul 2021, 05:07
                    1
                    • P pgiovanni
                      15 Jul 2021, 04:07

                      ah, i found some of the libs within my /home subdirectories for some reason.

                      edit: the extra q libs were apart of the kde api i installed. Searching for dependencies can be a bother!

                      M Offline
                      M Offline
                      mrjj
                      Lifetime Qt Champion
                      wrote on 15 Jul 2021, 05:07 last edited by
                      #9

                      @pgiovanni
                      Hi
                      Yes, it seems quite some excises you are into.

                      hmm /home i would not have guessed at :)

                      • Searching for dependencies can be a bother!
                        Yes it can. also when you dont have an exe to go from but must find all needed libs manually.

                      What open source project are you building if i may ask ?

                      1 Reply Last reply
                      0
                      • P Offline
                        P Offline
                        pgiovanni
                        wrote on 15 Jul 2021, 05:12 last edited by pgiovanni
                        #10

                        kdeconnect application. I just wanna make it so you can click on the notification popups lol. my real goal is to build up my resume to eventually get a job. i'm out of work due to an injury right now.

                        M 1 Reply Last reply 15 Jul 2021, 05:24
                        0
                        • P pgiovanni
                          15 Jul 2021, 05:12

                          kdeconnect application. I just wanna make it so you can click on the notification popups lol. my real goal is to build up my resume to eventually get a job. i'm out of work due to an injury right now.

                          M Offline
                          M Offline
                          mrjj
                          Lifetime Qt Champion
                          wrote on 15 Jul 2021, 05:24 last edited by
                          #11

                          @pgiovanni

                          Oh that seems like a nice app.

                          So you are following this
                          https://community.kde.org/KDEConnect#Linux_Desktop

                          and sounds like you soon have it working.

                          Hehe quit some effort to have a an extra click handler :)

                          • my real goal is to build up my resume to eventually get a job.

                          Oh, well training is the best way. and altering a complete project is a good way. IMHO.

                          Im sorry about your injury and hope you are all right now.

                          You are in Italy?

                          P 1 Reply Last reply 15 Jul 2021, 13:14
                          0
                          • M mrjj
                            15 Jul 2021, 05:24

                            @pgiovanni

                            Oh that seems like a nice app.

                            So you are following this
                            https://community.kde.org/KDEConnect#Linux_Desktop

                            and sounds like you soon have it working.

                            Hehe quit some effort to have a an extra click handler :)

                            • my real goal is to build up my resume to eventually get a job.

                            Oh, well training is the best way. and altering a complete project is a good way. IMHO.

                            Im sorry about your injury and hope you are all right now.

                            You are in Italy?

                            P Offline
                            P Offline
                            pgiovanni
                            wrote on 15 Jul 2021, 13:14 last edited by
                            #12

                            @mrjj no im not am italy. Im in rhe USA.

                            1 Reply Last reply
                            0

                            1/12

                            14 Jul 2021, 20:00

                            • Login

                            • Login or register to search.
                            1 out of 12
                            • First post
                              1/12
                              Last post
                            0
                            • Categories
                            • Recent
                            • Tags
                            • Popular
                            • Users
                            • Groups
                            • Search
                            • Get Qt Extensions
                            • Unsolved