-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
26 lines (24 loc) · 1.13 KB
/
Copy pathDirectory.Build.props
File metadata and controls
26 lines (24 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="utf-8"?>
<Project>
<!-- ──────────────────────────────────────────────
VS IntelliSense Configuration for RayTracing
Auto-discovered by MSBuild from project root.
Only fills gaps the xmake-generated vcxproj
doesn't cover. Include paths are provided by
the vcxproj's XmakeIncludeDirs.
Regenerate vcxproj after xmake config changes:
xmake project -k vsxmake -y -m release
────────────────────────────────────────────── -->
<ItemDefinitionGroup>
<ClCompile>
<!-- Defines missing from XmakeDefines but required for correct parsing -->
<PreprocessorDefinitions>
GLFW_INCLUDE_NONE;
IMGUI_DEFINE_MATH_OPERATORS;
%(PreprocessorDefinitions)
</PreprocessorDefinitions>
<!-- C++23 Standard — ensure IntelliSense matches build -->
<LanguageStandard>stdcpplatest</LanguageStandard>
</ClCompile>
</ItemDefinitionGroup>
</Project>