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. Fix GLOB in CMakeLists.txt
Qt 6.11 is out! See what's new in the release blog

Fix GLOB in CMakeLists.txt

Scheduled Pinned Locked Moved Solved General and Desktop
3 Posts 2 Posters 234 Views
  • 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.
  • R Offline
    R Offline
    realroot
    wrote on last edited by
    #1
    file(GLOB RELATIVE IMAGES_FILES "${CMAKE_CURRENT_SOURCE_DIR}/src/resources/images/*.svg")
    message(STATUS "Files found: ${IMAGES_FILES}")
    message(STATUS "Current source dir: ${CMAKE_CURRENT_SOURCE_DIR}")
    
    qt_add_resources(app "images"
        PREFIX "/"
        FILES ${IMAGE_FILES}
    )
    

    {CMAKE_CURRENT_SOURCE_DIR} is correct but it does not find any file.

    -- Files found: 
    -- Current source dir: /path/app
    

    It works if I specify them manually:

    FILES
      file1.svg
      file2.svg ...
    
    1 Reply Last reply
    0
    • R realroot referenced this topic on
    • R Offline
      R Offline
      realroot
      wrote on last edited by
      #3

      Right.

      file(GLOB IMAGES_FILES RELATIVE ${CMAKE_SOURCE_DIR} "src/resources/images/*.svg")
      
      1 Reply Last reply
      0
      • Christian EhrlicherC Offline
        Christian EhrlicherC Offline
        Christian Ehrlicher
        Lifetime Qt Champion
        wrote on last edited by
        #2

        You use 'RELATIVE' wrong, please read the docs: https://cmake.org/cmake/help/latest/command/file.html#glob

        Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
        Visit the Qt Academy at https://academy.qt.io/catalog

        1 Reply Last reply
        1
        • R Offline
          R Offline
          realroot
          wrote on last edited by
          #3

          Right.

          file(GLOB IMAGES_FILES RELATIVE ${CMAKE_SOURCE_DIR} "src/resources/images/*.svg")
          
          1 Reply Last reply
          0
          • R realroot has marked this topic as solved on

          • Login

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