Results 1 to 4 of 4

Thread: QT Application binary

  1. #1
    Join Date
    Sep 2010
    Beans
    100

    Exclamation QT Application binary

    Hey I just learnt how to make an application in QT Creator using C++. The files I have created work on compiling in QT ..

    How do I make a binary of the files so it is executable without having to run QT ?

  2. #2
    Join Date
    Jul 2007
    Location
    Poland
    Beans
    4,499
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: QT Application binary

    look in the project directory, binary should be right there. Usually there are 2 profiles of project (debug and release) and i think binaries should be located in related subfolders.

  3. #3
    Join Date
    Sep 2010
    Beans
    100

    Re: QT Application binary

    ****. I feel retarded now. =/

  4. #4
    hakermania's Avatar
    hakermania is offline Τώρα ξέρεις τι γράφω εδώ!
    Join Date
    Aug 2009
    Location
    Greece
    Beans
    1,705
    Distro
    Ubuntu Development Release

    Re: QT Application binary

    In the directory with your source run:
    Code:
    qmake -project; qmake *.pro; qmake; make

Tags for this Thread

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
  •