Reputation: 132
Hey so I will be learning C Language and will be using CLion from Jetbrains. I have already used their IntelliJ IDEA IDE for Java. With IntelliJ, there is an option during the install to add a dialogue to the system so you can open folders as projects in IntelliJ. Is it possible to do the same thing with CLion?
Upvotes: 0
Views: 2045
Reputation: 36
Even if the question is already older, there is a way to add a subsequent entry. This works also when installed via Toolbox.
Here's an example using CLion Nova:
Win + R
and then type regedit
)Computer\HKEY_CLASSES_ROOT\Directory\Background\shell
CLionNova
(or another name)command
Open Folder as CLion Nova Project
Icon.
Icon
to the path of the tool executable or the icon file. E.g. C:\_Entwicklung\Jetbrains\CLion Nova\bin\clion.ico
command
subkey, set the path to the executable with the argument '%V,' for example, "C:\_Entwicklung\Jetbrains\CLion Nova\bin\clion64.exe" "%V"
Computer\HKEY_CLASSES_ROOT\Directory\shell
and replace command %V
with %1
Now the entry should be available.
Upvotes: 0
Reputation: 61
Yes, in CLion you need to check the Add “Open Folder as Project” option during the installation process:
Upvotes: 1