diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2017-08-31 14:32:14 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2017-09-07 15:53:19 (GMT) |
commit | 37ef18a468149ba579b96a763ea3042a360652d7 (patch) | |
tree | 5e83e53948d42c288d473690886ba9c24f9bfc34 /Modules | |
parent | 761b3d79746ab91219d6478a021ba3a1c56f05c8 (diff) | |
download | CMake-37ef18a468149ba579b96a763ea3042a360652d7.zip CMake-37ef18a468149ba579b96a763ea3042a360652d7.tar.gz CMake-37ef18a468149ba579b96a763ea3042a360652d7.tar.bz2 |
Autogen: Pass RCC build names and function names in info file
- The output file name of the `rcc` command get computed once
in the AUTOGEN initializer and is passed in the info file.
- The function name for the `-name` option of `rcc` gets computed
once in the AUTOGEN initializer and is passed along with the
other `rcc` options in the info file.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/AutogenInfo.cmake.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/AutogenInfo.cmake.in b/Modules/AutogenInfo.cmake.in index 80522ab..484dc93 100644 --- a/Modules/AutogenInfo.cmake.in +++ b/Modules/AutogenInfo.cmake.in @@ -30,6 +30,6 @@ set(AM_UIC_OPTIONS_OPTIONS @_qt_uic_options_options@) set(AM_UIC_SEARCH_PATHS @_uic_search_paths@) # RCC settings set(AM_RCC_SOURCES @_rcc_files@) +set(AM_RCC_BUILDS @_rcc_builds@) +set(AM_RCC_OPTIONS @_rcc_options@) set(AM_RCC_INPUTS @_rcc_inputs@) -set(AM_RCC_OPTIONS_FILES @_rcc_options_files@) -set(AM_RCC_OPTIONS_OPTIONS @_rcc_options_options@) |