Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Qt Creator and other tools
  4. Designer configurations
Qt 6.11 is out! See what's new in the release blog

Designer configurations

Scheduled Pinned Locked Moved Unsolved Qt Creator and other tools
2 Posts 2 Posters 678 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.
  • PerdrixP Offline
    PerdrixP Offline
    Perdrix
    wrote on last edited by
    #1

    I have a project that I downloaded and built using the 6.4 MSVC2019_64 tooling and Qt Creator (this is pretty much the 1st time I've used it). It initially built a shared library (dll) but that was readily changed bu adding staticlib to the opening line of the .pro file so that it read:

    CONFIG += c++20 staticlib

    When I asked it to build all configurations, it created three output folders:

    <prjname >Desktop_Qt_6_4_0_MSVC2019_64bit-Debug
    <prjname >Desktop_Qt_6_4_0_MSVC2019_64bit-Profile
    <prjname >Desktop_Qt_6_4_0_MSVC2019_64bit-Release

    Is this the expected default behaviour?

    In what way does the Profile folder differ from the Debug folder

    D.

    JonBJ 1 Reply Last reply
    0
    • PerdrixP Perdrix

      I have a project that I downloaded and built using the 6.4 MSVC2019_64 tooling and Qt Creator (this is pretty much the 1st time I've used it). It initially built a shared library (dll) but that was readily changed bu adding staticlib to the opening line of the .pro file so that it read:

      CONFIG += c++20 staticlib

      When I asked it to build all configurations, it created three output folders:

      <prjname >Desktop_Qt_6_4_0_MSVC2019_64bit-Debug
      <prjname >Desktop_Qt_6_4_0_MSVC2019_64bit-Profile
      <prjname >Desktop_Qt_6_4_0_MSVC2019_64bit-Release

      Is this the expected default behaviour?

      In what way does the Profile folder differ from the Debug folder

      D.

      JonBJ Offline
      JonBJ Offline
      JonB
      wrote on last edited by
      #2

      @Perdrix
      The "Profile" configuration is for building your app for profiling --- instrumentation/timing analysis --- and this requires different compile or link options. Creator allows you to build & run for profiling. Under Linux this uses the perf tool. I have no idea what it might or might not do under Windows/MSVC.

      1 Reply Last reply
      0

      • Login

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