#CLion Arduino Plugin
This is a JetBrains CLion plugin that integrates Arduino CMake into the IDE.
The current features are to convert a default CLion project into an Arduino CMake one in one click, and to create new sketch files. When CLion adds the ability to hook into project creation directly, I will be able to make it selectable at project creation time, but for now, we're stuck with having to create a new CLion project and then convert it.
Future features are to add menu option to easily change the board type, port number, etc.
1.0.2
- Removed Groovy runtime, no longer necessary
1.0.1
- Fixed organization
1.0
- Convert a project to Arduino CMake. This replaces CMakeLists.txt with a default one, deletes the default main.cpp file, copies in the Arduino CMake toolchain files, and deletes the build direcory to start fresh
- Associates .ino and .pde files as C++ source, so you get syntax highlighting and prediction, etc.
- Create a new sketch file in any directory. If you omit the extension, it will add .ino automatically
- Adds import for Arduino.h to all newly created sketch files to enable code completion
- Compiled with Java 6 for compatibility with OS X out of the box