CLion plugin to execute single file .c/.cpp file quickly.
CLion is a C/C++ IDE on IntelliJ IDEA platform provided by JetBrains.
CLion is working on CMake platform, so when you want to run a single file with main() function you need to configure CMakeLists.txt file everytime. This plugin helps you to add a configuration to quickly run a single .c/.cpp file.
Links
- Document page: for more detail information.
- Official plugin page
C/C++ Single File Execution plugin is uploaded on JetBrains repositry, so you can download by navigating [File] → [Settings] → [Plugins] tab → click [Browse repositries...] in CLion.
You can find and install C/C++ Single File Execution plugin.
- Create or show C/C++ source code you want to run on the editor.
- Right click on the editor.
- Select "Add executable for single c/cpp file".
That's all! Plugin automatically insert add_executable
to CMakeLists.txt
with proper path for you.
After that, you can start coding and once it's done, run it by selecting proper executable name on the top-right panel in CLion.
Little configuration is available from [File] → [Settings] → [Tools] tab > [Single File Execution Plugin].
You may specify the executable name. As a default, it will use a name depending on the source code file name. In this case, every time you add a new source code and insert add_executable
, new executable name will be added. Build configuration tab can be messy in this case as the number of files increases.
Another way is to use "fixed" executable name here (not use %FILENAME%), in that case you can always run single source code file with same executable name.