-
My project structure is like this:
And I seem unable to select the CMake Tools extension to detect project-b. When I use the "CMake: Select Active Folder" it lists only project-a and doesn't list project-b at all! Is the only workaround to open project-b in separate VSCode window? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
If you have two CMake projects in your workspace folder, you can specify both of them in the Example:
You can also open both workspace folders in a single VS Code window if you'd prefer to do it that way. |
Beta Was this translation helpful? Give feedback.
If you have two CMake projects in your workspace folder, you can specify both of them in the
cmake.sourceDirectory
in yoursettings.json
file (VS Code settings) so that we know you want to work with both of them.Example:
You can also open both workspace folders in a single VS Code window if you'd prefer to do it that way.