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. Declare variable of path in .pro file
Qt 6.11 is out! See what's new in the release blog

Declare variable of path in .pro file

Scheduled Pinned Locked Moved Unsolved General and Desktop
2 Posts 2 Posters 367 Views 1 Watching
  • 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.
  • C Offline
    C Offline
    Creatorczyk
    wrote on last edited by
    #1

    Hi,

    I have repeated "../../GreenhouseApp/src" in the code very many times, how can I create a variable that holds the path value. And how to insert it into the path declaration in SOURCES?

    SOURCES += \ 
        testsection.cpp \
        ../../GreenhouseApp/src/SectionWidget/section.cpp \
        ../../GreenhouseApp/src/SectionWidget/device.cpp \
        ../../GreenhouseApp/src/SectionWidget/settingsdialog.cpp \
        ../../GreenhouseApp/src/messenger.cpp
    
    1 Reply Last reply
    0
    • mrjjM Offline
      mrjjM Offline
      mrjj
      Lifetime Qt Champion
      wrote on last edited by mrjj
      #2

      Hi

      COMMONDIR=../../../Common
      SOURCES +=  $$COMMONDIR/path/xxx.cpp \
      $$COMMONDIR/otherpath/yyy.cpp 
      
      
      1 Reply Last reply
      1

      • Login

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