Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 356241
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T12:05:35+00:00 2026-05-12T12:05:35+00:00

I’m starting to learn Qt. I’m moving from the Visual Studio world and I

  • 0

I’m starting to learn Qt. I’m moving from the Visual Studio world and I am looking for a way to organize my project’s structure using QMake. I’ve found the ‘subdirs’ template but I have quite a hard time understanding it.

My project structure looks like this:

project_dir/
    main.cpp
    project.pro
    logic/
      logic.pro
      some logic files
    gui/
      gui.pro
      gui files

My project.pro looks like this

TEMPLATE = subdirs
SUBDIRS = logic \
          gui
SOURCES += main.cpp

In the .pro files for the subdirectories I have appropriate SOURCES, HEADERS and RESOURCES variables set.

Please tell me what TARGET, TEMPLATE and other necessary values I should set in the .pro files.

Also, is there some good QMake tutorial other than the official one?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T12:05:36+00:00Added an answer on May 12, 2026 at 12:05 pm

    In addition to Troubadour’s comment, I would note that the SUBDIRS target is only good for specifying subdirectories. Therefore, your extra line of

    SOURCES += main.cpp
    

    in your project.pro file is incorrect, and will likely fail to build your main.cpp file, at worst. At best, qmake will refuse to parse the file, since it has conflicting specifications in it.

    I’ve used the SUBDIRS template a few times, and it does well if you can build parts into more-or-less independent libraries, apparently like you have with the logic and the gui separate. Here is one way to do this:

    project_dir/
    -project.pro
    -common.pri
    -logic/
    ----logic.pro
    ----some logic files
    -gui/
    ----gui.pro
    ----gui files
    -build/
    ----build.pro
    ----main.cpp
    

    project.pro:

    TEMPLATE = subdirs
    SUBDIRS = logic \
              gui
    
    # build must be last:
    CONFIG += ordered
    SUBDIRS += build
    

    common.pri:

    #Includes common configuration for all subdirectory .pro files.
    INCLUDEPATH += . ..
    WARNINGS += -Wall
    
    TEMPLATE = lib
    
    # The following keeps the generated files at least somewhat separate 
    # from the source files.
    UI_DIR = uics
    MOC_DIR = mocs
    OBJECTS_DIR = objs
    

    logic/logic.pro:

    # Check if the config file exists
    ! include( ../common.pri ) {
        error( "Couldn't find the common.pri file!" )
    }
    
    HEADERS += logic.h
    SOURCES += logic.cpp
    
    # By default, TARGET is the same as the directory, so it will make 
    # liblogic.a (in linux).  Uncomment to override.
    # TARGET = target
    

    gui/gui.pro:

    ! include( ../common.pri ) {
        error( "Couldn't find the common.pri file!" )
    }
    
    FORMS += gui.ui
    HEADERS += gui.h
    SOURCES += gui.cpp
    
    # By default, TARGET is the same as the directory, so it will make 
    # libgui.a (in linux).  Uncomment to override.
    # TARGET = target
    

    build/build.pro:

    TEMPLATE = app
    
    SOURCES += main.cpp
    
    LIBS += -L../logic -L../gui -llogic -lgui
    
    # Will build the final executable in the main project directory.
    TARGET = ../project
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
For some reason, after submitting a string like this Jack’s Spindle from a text
I have a jquery bug and I've been looking for hours now, I can't
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I am reading a book about Javascript and jQuery and using one of the
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
We're building an app, our first using Rails 3, and we're having to build
We are using XSLT to translate a RIXML file to XML. Our RIXML contains

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.