Home > OS >  How to Display extra files in QtCreator project tree (CMake-project)?
How to Display extra files in QtCreator project tree (CMake-project)?

Time:05-04

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?

CodePudding user response:

You can use the add_custom_target result example

  • Related