You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rider uses these files to resolve C++, provide code insight, and create/run build configs. They also supply MSBuild/NMake metadata so projects index and build correctly.
4
+
5
+
- godot-cpp-example.sln
6
+
- Solution that groups the C++ projects and lists all Configuration|Platform pairs shown in the Solution Configuration selector.
7
+
8
+
- gdext.vcxproj
9
+
- GDExtension C++ project. Rider reads compiler options/defines/includes and also calls scons to build the extension library (.dll/.so/.dylib).
10
+
11
+
- demo.vcxproj
12
+
- Auxiliary project linking `demo` game contents. Rider plugins for Godot support provide language support, run configurations and other features for such projects.
13
+
14
+
- targets/JetBrains.Rider.Cpp.targets
15
+
- MSBuild target that resolves C++ standard library headers.
16
+
17
+
- targets/nmake.substitution.props (similar to the one in the Godot Engine)
18
+
- Used when MSBuild doesn't contain MSVC targets; substitutes Build/Rebuild/Clean targets and passes correct include/lib paths.
0 commit comments