I'm using CMake with cotire and Qt, and there's a bug that I'm working around. The gist of it is that I have a target, qtwallet_unity
, which depends on qtwallet_unity_automoc
. However, I instead need it to depend on qtwallet_automoc
. I've done:
add_dependencies(qtwallet_unity qtwallet_automoc)
But is there any way to remove the dependency on qtwallet_unity_automoc
? Something like:
*remove_dependencies(qtwallet_unity qtwallet_unity_automoc)