qmake: Generating nested project folders in Visual Studio -


i have visual studio solution containing multiple projects. in following manner:

* solution   * library_project   * cli_project   * gui_project   * test_library   * test_cli   * test_gui   * device_foo   * device_bar   * device_baz 

some projects logically grouped in nested folders. when generating solution file qmake, flat project structure shown in example above. want achieve in likes of following:

* solution   * library_project   * cli_project   * gui_project   * test_folder/     * test_library     * test_cli     * test_gui   * device_folder/     * device_foo     * device_bar     * device_baz 

reading similar posts have suggested adding config -= flat subdirs .pro file; however, still generates same flat solution. @ possible generate nested project folders qmake?


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -