diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-06-12 22:45:15 +0200 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-06-13 16:29:50 +0200 |
commit | fad6ac5fdee53c349c69afd0ad5e57f340228c6b (patch) | |
tree | 44876eb5fb4816c44c51596da7eb76c4a8920ebb | |
parent | faf0122db53e4d010ec1f9f00f40feedd6786e71 (diff) | |
download | libquotient-fad6ac5fdee53c349c69afd0ad5e57f340228c6b.tar.gz libquotient-fad6ac5fdee53c349c69afd0ad5e57f340228c6b.zip |
Generate a moc file for quotient_common.h
Previously Q_NAMESPACE did not require its own moc, somehow blending
into others; now it does.
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9b53a53a..dfb60ea6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -81,6 +81,7 @@ endif() if (NOT Qt5Core_FOUND OR BUILD_WITH_Qt6) find_package(Qt6 6.2 REQUIRED Core Network Gui Test) # TODO: Multimedia set(Qt Qt6) + qt6_wrap_cpp(lib_SRCS lib/quotient_common.h) else() find_package(Qt5 5.12 REQUIRED Core Network Gui Multimedia Test) set(Qt Qt5) @@ -124,7 +125,7 @@ if (${PROJECT_NAME}_ENABLE_E2EE) endif () # Set up source files -set(lib_SRCS +list(APPEND lib_SRCS lib/networkaccessmanager.cpp lib/connectiondata.cpp lib/connection.cpp |