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. Adding qrc icon resource to a CMake Qt project
Forum Updated to NodeBB v4.3 + New Features

Adding qrc icon resource to a CMake Qt project

Scheduled Pinned Locked Moved Unsolved General and Desktop
14 Posts 4 Posters 17.3k 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.
  • S Offline
    S Offline
    Slei
    wrote on last edited by
    #3

    ok it generated a resource .cpp now with all the icon data, which seems to be good. bit it still doen't display an icon in the systemtray so something else might be wrong

    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #4

      Hi,

      Did you ensure that the generated cpp file gets compiled and linked properly ?

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      0
      • S Offline
        S Offline
        Slei
        wrote on last edited by
        #5

        do I have to do anything special with cmake or should this be done automatically with one of those

        	set(CMAKE_AUTOMOC ON)
        	set(CMAKE_AUTORCC ON)
        	set(CMAKE_AUTOUIC ON)
        
        1 Reply Last reply
        2
        • S Offline
          S Offline
          Slei
          wrote on last edited by Slei
          #6

          i probably should add that I'm currently using a source build, maybe the there is no .ico support by default?
          but I've alos tried it with png and jpg

          1 Reply Last reply
          0
          • SGaistS Offline
            SGaistS Offline
            SGaist
            Lifetime Qt Champion
            wrote on last edited by
            #7

            Can you show your CMakeList.txt file ?

            Interested in AI ? www.idiap.ch
            Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

            S 1 Reply Last reply
            0
            • S Offline
              S Offline
              Slei
              wrote on last edited by Slei
              #8
              This post is deleted!
              1 Reply Last reply
              0
              • SGaistS SGaist

                Can you show your CMakeList.txt file ?

                S Offline
                S Offline
                Slei
                wrote on last edited by
                #9

                @SGaist said in Adding qrc icon resource to a CMake Qt project:

                Can you show your CMakeList.txt file ?

                I've tried it with GLOB for qrc or directly adding a qrc to the executable (custom cmake function in my case)

                /       file(GLOB source_files *.c *.cpp *.qrc)
                       file(GLOB header_files *.h *.hpp *.txt)
                
                	set(CMAKE_INCLUDE_CURRENT_DIR ON)
                	set(CMAKE_AUTOMOC ON)
                	set(CMAKE_AUTORCC ON)
                	set(CMAKE_AUTOUIC ON)
                	find_package(Qt5Widgets REQUIRED)
                	find_package(Qt5WebEngineWidgets REQUIRED)
                	find_package(Qt5WebChannel REQUIRED)
                
                
                	qt5_add_resources(COLYOO_QT_RESOURCES app.qrc web.qrc)
                
                	message(STATUS "SLEIDEBUG:${COLYOO_QT_RESOURCES}")
                
                
                       # add the GUI WIN32 executable
                       cyo_add_executable(${PROJECT_NAME} WIN32 ${source_files} ${header_files} chatwidget.ui ${COLYOO_QT_RESOURCES})
                
                1 Reply Last reply
                0
                • VRoninV Offline
                  VRoninV Offline
                  VRonin
                  wrote on last edited by VRonin
                  #10

                  if you have set(CMAKE_AUTORCC ON) then there's no need to call qt5_add_resources just add your .qrc files to the list of sources for the target as they were .cpp files

                  "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
                  ~Napoleon Bonaparte

                  On a crusade to banish setIndexWidget() from the holy land of Qt

                  S 2 Replies Last reply
                  2
                  • VRoninV VRonin

                    if you have set(CMAKE_AUTORCC ON) then there's no need to call qt5_add_resources just add your .qrc files to the list of sources for the target as they were .cpp files

                    S Offline
                    S Offline
                    Slei
                    wrote on last edited by
                    #11

                    @VRonin

                    I've heard about that but it still doesn't work :o

                    1 Reply Last reply
                    0
                    • VRoninV VRonin

                      if you have set(CMAKE_AUTORCC ON) then there's no need to call qt5_add_resources just add your .qrc files to the list of sources for the target as they were .cpp files

                      S Offline
                      S Offline
                      Slei
                      wrote on last edited by Slei
                      #12

                      @VRonin do I still have to add it to the executable and GLOB it then? or is this also done automatically with the AUTORCC

                      1 Reply Last reply
                      0
                      • VRoninV Offline
                        VRoninV Offline
                        VRonin
                        wrote on last edited by
                        #13

                        you don't have to GLOB it, you can GLOB it. You could also add .qrc files in the same way you are adding chatwidget.ui at the moment

                        "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
                        ~Napoleon Bonaparte

                        On a crusade to banish setIndexWidget() from the holy land of Qt

                        1 Reply Last reply
                        1
                        • S Offline
                          S Offline
                          Slei
                          wrote on last edited by
                          #14

                          @Slei said in Adding qrc icon resource to a CMake Qt project:

                          COLYOO_QT_RESOURCES

                          ok i think it works now, for whatever reason I'll test it a few times to be 100% sure, thsi is my current cmakelists.txt

                              # search all source and header files
                              file(GLOB source_files *.c *.cpp *.qrc)
                              file(GLOB header_files *.h *.hpp *.txt)
                          
                          	set(CMAKE_INCLUDE_CURRENT_DIR ON)
                          	set(CMAKE_AUTOMOC ON)
                          	set(CMAKE_AUTORCC ON)
                          	set(CMAKE_AUTOUIC ON)
                          	find_package(Qt5Widgets REQUIRED)
                          	find_package(Qt5WebEngineWidgets REQUIRED)
                          	find_package(Qt5WebChannel REQUIRED)
                          
                          
                          	#qt5_add_resources(COLYOO_QT_RESOURCES app.qrc web.qrc)
                          
                          	message(STATUS "SLEIDEBUG:${COLYOO_QT_RESOURCES}")
                          
                          
                              # add the GUI WIN32 executable
                              cyo_add_executable(${PROJECT_NAME} WIN32 ${source_files} ${header_files} chatwidget.ui ${COLYOO_QT_RESOURCES})
                          

                          but i think i tried this version once before and it didn't work lol ._.

                          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