Results 1 to 20 of 35

Thread: use qpsql

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #34
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    5,372
    Thanks
    28
    Thanked 976 Times in 912 Posts
    Qt products
    Qt3 Qt4
    Platforms
    Unix/X11 Windows

    Default Re: use qpsql

    Quote Originally Posted by raphaelf
    Why do i get my exe file under the debug folder and not under the release folder?And what is the diference?
    Under windows, qmake creates two Makefiles: Makefile.Release and Makefile.Debug. The latter is the default one and it compiles application with debugging symbols. To compile your application in "release" mode (i.e. optimized and without debugging information), you must run "make -f Makefile.Release".

    You can switch that feature off by adding:
    Qt Code:
    1. CONFIG -= debug_and_release
    2. CONFIG += release # or debug
    To copy to clipboard, switch view to plain text mode 
    to your .pro file.

  2. The following user says thank you to jacek for this useful post:

    raphaelf (22nd August 2006)

Similar Threads

  1. Qt 4.1.4 plugin QPSQL
    By jcr in forum Installation and Deployment
    Replies: 4
    Last Post: 22nd June 2006, 22:55

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.