mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 20:36:27 +02:00
7 lines
337 B
CMake
7 lines
337 B
CMake
# adds a custom path and local path to the inserted CUSTOM_PATHS_VAR list which
|
|
# can be given to the GENERATE_QRC command
|
|
|
|
function(ADD_CUSTOM_QRC_PATH CUSTOM_PATHS_VAR IMPORT_PATH LOCAL_PATH)
|
|
list(APPEND ${CUSTOM_PATHS_VAR} "${IMPORT_PATH}=${LOCAL_PATH}")
|
|
set(${CUSTOM_PATHS_VAR} ${${CUSTOM_PATHS_VAR}} PARENT_SCOPE)
|
|
endfunction()
|