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. [SOLVED]can't find the "src" directory to build my QPSQL driver
QtWS25 Last Chance

[SOLVED]can't find the "src" directory to build my QPSQL driver

Scheduled Pinned Locked Moved General and Desktop
63 Posts 3 Posters 28.4k 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.
  • K Offline
    K Offline
    k_arnaud
    wrote on 12 Apr 2014, 17:05 last edited by
    #21

    may be the problem is from here QTSDK_SQLDRIVERS_PATH=C:\Qt\Qt5.2.0\5.2.1\mingw48_32\plugins\sqldrivers i don't know wehter i should replace "QTSDK_SQLDRIVERS_PATH" with anything

    1 Reply Last reply
    0
    • C Offline
      C Offline
      clochydd
      wrote on 12 Apr 2014, 17:48 last edited by
      #22

      Hi k_arnaud, with "set QTSDK_SQLDRIVERS_PATH=C:\Qt\Qt5.2.0\5.2.1\mingw48_32\plugins\sqldrivers" you create the environment-variable QTSDK_SQLDRIVERS_PATH, which you need later (#12.). Where appropriate you must modify the path itself - according to your system.
      These variables are for your comfort - you may use the complete pathname instead.

      1 Reply Last reply
      0
      • K Offline
        K Offline
        k_arnaud
        wrote on 12 Apr 2014, 17:54 last edited by
        #23

        that is what i did, i entered QTSDK_SQLDRIVERS_PATH=C:\Qt\Qt5.2.0\5.2.1\mingw48_32\plugins\sqldrivers in the CMD-windows without any change

        1 Reply Last reply
        0
        • C Offline
          C Offline
          clochydd
          wrote on 12 Apr 2014, 18:04 last edited by
          #24

          maybe a silly question: did you enter "set QTSDK..." and is that visible in your environment if you type SET in the cmd?

          1 Reply Last reply
          0
          • K Offline
            K Offline
            k_arnaud
            wrote on 12 Apr 2014, 18:14 last edited by
            #25

            No, i ca'nt see that

            1 Reply Last reply
            0
            • C Offline
              C Offline
              clochydd
              wrote on 12 Apr 2014, 18:25 last edited by
              #26

              But - do you use SET to bring it to the environment?

              1 Reply Last reply
              0
              • K Offline
                K Offline
                k_arnaud
                wrote on 12 Apr 2014, 18:33 last edited by
                #27

                i tried again, and i can see the three variables; QTSDK_SQLDRIVERS_PATH, QT_SRC_PATH and
                POSTGRES32

                1 Reply Last reply
                0
                • C Offline
                  C Offline
                  clochydd
                  wrote on 12 Apr 2014, 18:42 last edited by
                  #28

                  are you able to build the plugin now? You should not see the "recipe" message again.

                  1 Reply Last reply
                  0
                  • K Offline
                    K Offline
                    k_arnaud
                    wrote on 12 Apr 2014, 18:50 last edited by
                    #29

                    sorry i can't. "qmake is not a command line", that is the error message when i try to buld with CMD-window. But when i try with the the "qt-cmd" i get the same error message "recipe..."

                    1 Reply Last reply
                    0
                    • C Offline
                      C Offline
                      clochydd
                      wrote on 12 Apr 2014, 19:22 last edited by
                      #30

                      must be a wrong path, too:
                      your_qt_path is something like C:\Qt\Qt5.2.1\5.2.1 and
                      qmake.exe is located in your_qt_path\mingw48_32\bin
                      so you must start qmake by:
                      your_qt_path\mingw48_32\bin\qmake “INCLUDEPATH+=%POSTGRES32%\include” “LIBS+=%POSTGRES32%\lib\libpq.lib” psql.pro

                      when this task is done, you will continue with:
                      mingw32-make debug
                      mingw32-make release

                      1 Reply Last reply
                      0
                      • K Offline
                        K Offline
                        k_arnaud
                        wrote on 12 Apr 2014, 19:41 last edited by
                        #31

                        here is the error message when i did what you said : cannot find file psql.pro.
                        that file is not in the qmake.exe directory so when i enter cd C:\Qt\Qt5.2.1\5.2.1\mingw48_32\bin\qmake “INCLUDEPATH+=%POSTGRES32%\include” “LIBS+=%POSTGRES32%\lib\libpq.lib” psql.pro, i get an error message

                        1 Reply Last reply
                        0
                        • C Offline
                          C Offline
                          clochydd
                          wrote on 12 Apr 2014, 19:56 last edited by
                          #32

                          the psql.pro is in the sources, in the plugin\sqldrivers directory (see above cd QT_SRC_PATH\src\plugins\sqldrivers\psql)
                          you should start your qmake from THIS directory, not from the ...bin dir!

                          1 Reply Last reply
                          0
                          • K Offline
                            K Offline
                            k_arnaud
                            wrote on 12 Apr 2014, 20:06 last edited by
                            #33

                            When i try to start qmake there, i get an error message "qmake is not a command line..."

                            1 Reply Last reply
                            0
                            • C Offline
                              C Offline
                              clochydd
                              wrote on 12 Apr 2014, 20:18 last edited by
                              #34

                              Do you call qmake with the complete path:
                              C:\Qt\Qt5.2.1\5.2.1\mingw48_32\bin\qmake
                              remember to use the path for your machine - maybe you have to modify slightly

                              1 Reply Last reply
                              0
                              • K Offline
                                K Offline
                                k_arnaud
                                wrote on 12 Apr 2014, 20:37 last edited by
                                #35

                                always the same error "recipe for target 'debug' failed"

                                1 Reply Last reply
                                0
                                • C Offline
                                  C Offline
                                  clochydd
                                  wrote on 12 Apr 2014, 20:49 last edited by
                                  #36

                                  You must be sure, that all pathnames are correct and the commands are called from the right directories.

                                  1 Reply Last reply
                                  0
                                  • K Offline
                                    K Offline
                                    k_arnaud
                                    wrote on 12 Apr 2014, 20:58 last edited by
                                    #37

                                    about "Program~2", for my system it is Program Files (x86). what shall i use ?

                                    1 Reply Last reply
                                    0
                                    • C Offline
                                      C Offline
                                      clochydd
                                      wrote on 12 Apr 2014, 22:30 last edited by
                                      #38

                                      This follows the 8.3 format, a relict from DOS-times. I think you should use the same name but you can test it in the command window with cd.

                                      1 Reply Last reply
                                      0
                                      • K Offline
                                        K Offline
                                        k_arnaud
                                        wrote on 13 Apr 2014, 07:30 last edited by
                                        #39

                                        both work, so i will use Program Files (x86)

                                        1 Reply Last reply
                                        0
                                        • C Offline
                                          C Offline
                                          clochydd
                                          wrote on 13 Apr 2014, 07:54 last edited by
                                          #40

                                          Hi k_arnaud, you only need the 8.3 format if you have problems with building the plugins - as Windows may refuse to work with spaces in the pathnames.
                                          Did you succeed in building your plugin now?

                                          1 Reply Last reply
                                          0

                                          21/63

                                          12 Apr 2014, 17:05

                                          • Login

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