We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently PlatformIO projects look like this when they are opened with CLion:
lib
src
This is what they should look like:
.pioenvs
.piolibdeps
To accomplish this, the CLion project builder should also create the following file: .idea/misc.xml
.idea/misc.xml
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="CMakeWorkspace" PROJECT_DIR="$PROJECT_DIR$" /> <component name="CidrRootsConfiguration"> <sourceRoots> <file path="$PROJECT_DIR$/src" /> </sourceRoots> <libraryRoots> <file path="$PROJECT_DIR$/lib" /> </libraryRoots> <excludeRoots> <file path="$PROJECT_DIR$/.pioenvs" /> <file path="$PROJECT_DIR$/.piolibdeps" /> </excludeRoots> </component> </project>
The text was updated successfully, but these errors were encountered:
0c2f973
Please re-test with the latest PIO Core and re-init project:
pio upgrade --dev pio init
Sorry, something went wrong.
No branches or pull requests
Currently PlatformIO projects look like this when they are opened with CLion:
lib
is marked as a source directorysrc
is not marked at allThis is what they should look like:
.pioenvs
and.piolibdeps
are excluded (CLion won't index them)lib
is marked as a library rootsrc
is marked as a source directoryTo accomplish this, the CLion project builder should also create the following file:
.idea/misc.xml
The text was updated successfully, but these errors were encountered: