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

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -