Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. namespace
  2. {
  3. // Cmake generates moc files only if they contains Q_OBJECT or Q_GADGET macro (nothing for Q_NAMESPACE)
  4. // This has been fixed only in Cmake 3.10
  5. // see: https://gitlab.kitware.com/cmake/cmake/issues/17299
  6. // fix:
  7. // https://gitlab.kitware.com/cmake/cmake/merge_requests/1321/diffs?commit_id=786b5be03bf992fe78a9a6450d5665ab7233a815
  8. class CDUMMY
  9. {
  10.     Q_GADGET
  11. };
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement