Reputation: 361
In qmake-project i can use OTHER_FILES += "android/AndroidManifest.xml"
to display AndroidManifest.xml at QtCreator's project tree,
how to do similar with CMake project?
Upvotes: 2
Views: 229
Reputation: 46
You can use the add_custom_target in cmake. Example:
add_custom_target(android-related-files SOURCES "android/AndroidManifest.xml")
will show something like this:
Upvotes: 2