Issue
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?
Solution
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:
Answered By - Samuel Mira Answer Checked By - Clifford M. (WPSolving Volunteer)