diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2017-09-25 17:47:54 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2017-09-27 12:13:12 (GMT) |
commit | 786b5be03bf992fe78a9a6450d5665ab7233a815 (patch) | |
tree | 0036cf6097348b824aabf6835637ebe16f1da53e /Modules/CMakeGenericSystem.cmake | |
parent | 825baaa1b3698c40ac349f4d2daa45277e64397e (diff) | |
download | CMake-786b5be03bf992fe78a9a6450d5665ab7233a815.zip CMake-786b5be03bf992fe78a9a6450d5665ab7233a815.tar.gz CMake-786b5be03bf992fe78a9a6450d5665ab7233a815.tar.bz2 |
Autogen: Define all macro names in CMAKE_AUTOMOC_MACRO_NAMES
Instead of adding `Q_OBJECT` and `Q_GADGET` to the macro search list
in `Source/cmQtAutoGenerators.cxx`, add them in
`Modules/CMakeGenericSystem.cmake` to the default value of
`CMAKE_AUTOMOC_MACRO_NAMES`.
Also add `Q_NAMESPACE` to `CMAKE_AUTOMOC_MACRO_NAMES`
which closes #17299.
Diffstat (limited to 'Modules/CMakeGenericSystem.cmake')
-rw-r--r-- | Modules/CMakeGenericSystem.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/CMakeGenericSystem.cmake b/Modules/CMakeGenericSystem.cmake index 9c38f6e..3951b2c 100644 --- a/Modules/CMakeGenericSystem.cmake +++ b/Modules/CMakeGenericSystem.cmake @@ -23,6 +23,7 @@ set(CMAKE_DL_LIBS "dl") set(CMAKE_FIND_LIBRARY_PREFIXES "lib") set(CMAKE_FIND_LIBRARY_SUFFIXES ".so" ".a") +set(CMAKE_AUTOMOC_MACRO_NAMES "Q_OBJECT" "Q_GADGET" "Q_NAMESPACE") # basically all general purpose OSs support shared libs set_property(GLOBAL PROPERTY TARGET_SUPPORTS_SHARED_LIBS TRUE) |