0

Is it possible to create C++ Desktop Application template in JetBrains Rider?


How I can create Desktop Application with start files and C++ code like in Visual Studio? Visual Studio 2022 - project creating

In Rider project creating menu I only find Library, Console app or Unit test. Rider 2023.1.2 - project creating

I try find plugins or target settings, but find nothing. Easy solution is to create project in Visual Studio and open it in Rider, but this is not as convenient as I created the project right away in the Rider.

Andrew
  • 3
  • 1

1 Answers1

-2

No because Jetbrains developed a separate IDE called CLion for creating C/C++ projects.

Son of Man
  • 1,213
  • 2
  • 7
  • 27
  • 1
    Thanks for answer! CLion suggests creating "C++ executable" with "Hello world" start code. May be I need to special plugin to choose project type? – Andrew Jun 05 '23 at 05:32
  • yes choose that and then you can remove the hello world code snippet by editing the file – Son of Man Jun 05 '23 at 05:45
  • you can also edit the CMakeLists to add libraries and linkers – Son of Man Jun 05 '23 at 05:46
  • Thanks for accepting my answer, if you have encounter issues adding the include or library folders or linking the libraries, I am here to help. – Son of Man Jun 05 '23 at 06:15