Skip to content

Commit 29526a7

Browse files
authored
Updated VS project files to use the 2024.0 compiler (#1930)
* Updated Windows code samples project files to use 2024.0 compiler * Updated * Update #2
1 parent 334ca06 commit 29526a7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+69
-767
lines changed

DirectProgramming/C++SYCL/CombinationalLogic/mandelbrot/mandelbrot.vcxproj

Lines changed: 2 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -30,29 +30,16 @@
3030
<WindowsTargetPlatformVersion>$(WindowsSDKVersion.Replace("\",""))</WindowsTargetPlatformVersion>
3131
</PropertyGroup>
3232
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
33-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
34-
<ConfigurationType>Application</ConfigurationType>
35-
<UseDebugLibraries>true</UseDebugLibraries>
36-
<PlatformToolset>oneAPI Data Parallel C++ Compiler</PlatformToolset>
37-
<CharacterSet>Unicode</CharacterSet>
38-
</PropertyGroup>
39-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
40-
<ConfigurationType>Application</ConfigurationType>
41-
<UseDebugLibraries>false</UseDebugLibraries>
42-
<PlatformToolset>oneAPI Data Parallel C++ Compiler</PlatformToolset>
43-
<WholeProgramOptimization>true</WholeProgramOptimization>
44-
<CharacterSet>Unicode</CharacterSet>
45-
</PropertyGroup>
4633
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4734
<ConfigurationType>Application</ConfigurationType>
4835
<UseDebugLibraries>true</UseDebugLibraries>
49-
<PlatformToolset>Intel(R) oneAPI DPC++ Compiler 2023</PlatformToolset>
36+
<PlatformToolset>Intel(R) oneAPI DPC++ Compiler 2024</PlatformToolset>
5037
<CharacterSet>Unicode</CharacterSet>
5138
</PropertyGroup>
5239
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
5340
<ConfigurationType>Application</ConfigurationType>
5441
<UseDebugLibraries>false</UseDebugLibraries>
55-
<PlatformToolset>Intel(R) oneAPI DPC++ Compiler 2023</PlatformToolset>
42+
<PlatformToolset>Intel(R) oneAPI DPC++ Compiler 2024</PlatformToolset>
5643
<WholeProgramOptimization>true</WholeProgramOptimization>
5744
<CharacterSet>Unicode</CharacterSet>
5845
</PropertyGroup>
@@ -61,45 +48,19 @@
6148
</ImportGroup>
6249
<ImportGroup Label="Shared">
6350
</ImportGroup>
64-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
65-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
66-
</ImportGroup>
67-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
68-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
69-
</ImportGroup>
7051
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
7152
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
7253
</ImportGroup>
7354
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
7455
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
7556
</ImportGroup>
7657
<PropertyGroup Label="UserMacros" />
77-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
78-
<LinkIncremental>true</LinkIncremental>
79-
</PropertyGroup>
8058
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
8159
<LinkIncremental>true</LinkIncremental>
8260
</PropertyGroup>
83-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
84-
<LinkIncremental>false</LinkIncremental>
85-
</PropertyGroup>
8661
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
8762
<LinkIncremental>false</LinkIncremental>
8863
</PropertyGroup>
89-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
90-
<ClCompile>
91-
<PrecompiledHeader>Use</PrecompiledHeader>
92-
<WarningLevel>Level3</WarningLevel>
93-
<Optimization>Disabled</Optimization>
94-
<SDLCheck>true</SDLCheck>
95-
<ConformanceMode>true</ConformanceMode>
96-
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
97-
</ClCompile>
98-
<Link>
99-
<SubSystem>Console</SubSystem>
100-
<GenerateDebugInformation>true</GenerateDebugInformation>
101-
</Link>
102-
</ItemDefinitionGroup>
10364
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
10465
<ClCompile>
10566
<PrecompiledHeader>Use</PrecompiledHeader>
@@ -116,24 +77,6 @@
11677
<GenerateDebugInformation>true</GenerateDebugInformation>
11778
</Link>
11879
</ItemDefinitionGroup>
119-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
120-
<ClCompile>
121-
<PrecompiledHeader>Use</PrecompiledHeader>
122-
<WarningLevel>Level3</WarningLevel>
123-
<Optimization>MaxSpeed</Optimization>
124-
<FunctionLevelLinking>true</FunctionLevelLinking>
125-
<IntrinsicFunctions>true</IntrinsicFunctions>
126-
<SDLCheck>true</SDLCheck>
127-
<ConformanceMode>true</ConformanceMode>
128-
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
129-
</ClCompile>
130-
<Link>
131-
<SubSystem>Console</SubSystem>
132-
<EnableCOMDATFolding>true</EnableCOMDATFolding>
133-
<OptimizeReferences>true</OptimizeReferences>
134-
<GenerateDebugInformation>true</GenerateDebugInformation>
135-
</Link>
136-
</ItemDefinitionGroup>
13780
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
13881
<ClCompile>
13982
<PrecompiledHeader>Use</PrecompiledHeader>

DirectProgramming/C++SYCL/CombinationalLogic/mandelbrot/mandelbrot.vcxproj.user

Lines changed: 0 additions & 10 deletions
This file was deleted.

DirectProgramming/C++SYCL/CombinationalLogic/mandelbrot/sample.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
}],
2121
"windows": [{
2222
"steps": [
23-
"MSBuild mandelbrot.sln /t:Rebuild /p:Configuration=\"Release\"",
24-
"cd x64/Release",
23+
"MSBuild mandelbrot.sln /t:Rebuild /p:Configuration=Release",
24+
"cd x64\\Release",
2525
"mandelbrot.exe"
2626
]
2727
}]

DirectProgramming/C++SYCL/CombinationalLogic/sepia-filter/sample.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
}],
2323
"windows": [{
2424
"steps": [
25-
"MSBuild sepia-filter.sln /t:Rebuild /p:Configuration=Debug",
26-
"cd x64\\Debug",
25+
"MSBuild sepia-filter.sln /t:Rebuild /p:Configuration=Release",
26+
"cd x64\\Release",
2727
"sepia-filter.exe ..\\..\\input\\silver512.png"
28-
]
28+
2929
}]
3030
},
3131
"expertise": "Concepts and Functionality"

DirectProgramming/C++SYCL/CombinationalLogic/sepia-filter/sepia-filter.vcxproj

Lines changed: 2 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -18,29 +18,16 @@
1818
<WindowsTargetPlatformVersion>$(WindowsSDKVersion.Replace("\",""))</WindowsTargetPlatformVersion>
1919
</PropertyGroup>
2020
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
21-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
22-
<ConfigurationType>Application</ConfigurationType>
23-
<UseDebugLibraries>true</UseDebugLibraries>
24-
<PlatformToolset>oneAPI Data Parallel C++ Compiler</PlatformToolset>
25-
<CharacterSet>Unicode</CharacterSet>
26-
</PropertyGroup>
27-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
28-
<ConfigurationType>Application</ConfigurationType>
29-
<UseDebugLibraries>false</UseDebugLibraries>
30-
<PlatformToolset>oneAPI Data Parallel C++ Compiler</PlatformToolset>
31-
<WholeProgramOptimization>true</WholeProgramOptimization>
32-
<CharacterSet>Unicode</CharacterSet>
33-
</PropertyGroup>
3421
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
3522
<ConfigurationType>Application</ConfigurationType>
3623
<UseDebugLibraries>true</UseDebugLibraries>
37-
<PlatformToolset>Intel(R) oneAPI DPC++ Compiler 2023</PlatformToolset>
24+
<PlatformToolset>Intel(R) oneAPI DPC++ Compiler 2024</PlatformToolset>
3825
<CharacterSet>Unicode</CharacterSet>
3926
</PropertyGroup>
4027
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
4128
<ConfigurationType>Application</ConfigurationType>
4229
<UseDebugLibraries>false</UseDebugLibraries>
43-
<PlatformToolset>Intel(R) oneAPI DPC++ Compiler 2023</PlatformToolset>
30+
<PlatformToolset>Intel(R) oneAPI DPC++ Compiler 2024</PlatformToolset>
4431
<WholeProgramOptimization>true</WholeProgramOptimization>
4532
<CharacterSet>Unicode</CharacterSet>
4633
</PropertyGroup>
@@ -49,45 +36,19 @@
4936
</ImportGroup>
5037
<ImportGroup Label="Shared">
5138
</ImportGroup>
52-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
53-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
54-
</ImportGroup>
55-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
56-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
57-
</ImportGroup>
5839
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
5940
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
6041
</ImportGroup>
6142
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
6243
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
6344
</ImportGroup>
6445
<PropertyGroup Label="UserMacros" />
65-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
66-
<LinkIncremental>true</LinkIncremental>
67-
</PropertyGroup>
6846
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
6947
<LinkIncremental>true</LinkIncremental>
7048
</PropertyGroup>
71-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
72-
<LinkIncremental>false</LinkIncremental>
73-
</PropertyGroup>
7449
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
7550
<LinkIncremental>false</LinkIncremental>
7651
</PropertyGroup>
77-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
78-
<ClCompile>
79-
<PrecompiledHeader>Use</PrecompiledHeader>
80-
<WarningLevel>Level3</WarningLevel>
81-
<Optimization>Disabled</Optimization>
82-
<SDLCheck>true</SDLCheck>
83-
<ConformanceMode>true</ConformanceMode>
84-
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
85-
</ClCompile>
86-
<Link>
87-
<SubSystem>Console</SubSystem>
88-
<GenerateDebugInformation>true</GenerateDebugInformation>
89-
</Link>
90-
</ItemDefinitionGroup>
9152
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
9253
<ClCompile>
9354
<PrecompiledHeader>Use</PrecompiledHeader>
@@ -105,24 +66,6 @@
10566
<AdditionalOptions>/IGNORE:4078 %(AdditionalOptions)</AdditionalOptions>
10667
</Link>
10768
</ItemDefinitionGroup>
108-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
109-
<ClCompile>
110-
<PrecompiledHeader>Use</PrecompiledHeader>
111-
<WarningLevel>Level3</WarningLevel>
112-
<Optimization>MaxSpeed</Optimization>
113-
<FunctionLevelLinking>true</FunctionLevelLinking>
114-
<IntrinsicFunctions>true</IntrinsicFunctions>
115-
<SDLCheck>true</SDLCheck>
116-
<ConformanceMode>true</ConformanceMode>
117-
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
118-
</ClCompile>
119-
<Link>
120-
<SubSystem>Console</SubSystem>
121-
<EnableCOMDATFolding>true</EnableCOMDATFolding>
122-
<OptimizeReferences>true</OptimizeReferences>
123-
<GenerateDebugInformation>true</GenerateDebugInformation>
124-
</Link>
125-
</ItemDefinitionGroup>
12669
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
12770
<ClCompile>
12871
<PrecompiledHeader>Use</PrecompiledHeader>

DirectProgramming/C++SYCL/CombinationalLogic/sepia-filter/sepia-filter.vcxproj.user

Lines changed: 0 additions & 13 deletions
This file was deleted.

DirectProgramming/C++SYCL/DenseLinearAlgebra/complex_mult/complex_mult.vcxproj

Lines changed: 2 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -30,29 +30,16 @@
3030
<WindowsTargetPlatformVersion>$(WindowsSDKVersion.Replace("\",""))</WindowsTargetPlatformVersion>
3131
</PropertyGroup>
3232
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
33-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
34-
<ConfigurationType>Application</ConfigurationType>
35-
<UseDebugLibraries>true</UseDebugLibraries>
36-
<PlatformToolset>oneAPI Data Parallel C++ Compiler</PlatformToolset>
37-
<CharacterSet>Unicode</CharacterSet>
38-
</PropertyGroup>
39-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
40-
<ConfigurationType>Application</ConfigurationType>
41-
<UseDebugLibraries>false</UseDebugLibraries>
42-
<PlatformToolset>oneAPI Data Parallel C++ Compiler</PlatformToolset>
43-
<WholeProgramOptimization>true</WholeProgramOptimization>
44-
<CharacterSet>Unicode</CharacterSet>
45-
</PropertyGroup>
4633
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
4734
<ConfigurationType>Application</ConfigurationType>
4835
<UseDebugLibraries>true</UseDebugLibraries>
49-
<PlatformToolset>Intel(R) oneAPI DPC++ Compiler 2023</PlatformToolset>
36+
<PlatformToolset>Intel(R) oneAPI DPC++ Compiler 2024</PlatformToolset>
5037
<CharacterSet>Unicode</CharacterSet>
5138
</PropertyGroup>
5239
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
5340
<ConfigurationType>Application</ConfigurationType>
5441
<UseDebugLibraries>false</UseDebugLibraries>
55-
<PlatformToolset>Intel(R) oneAPI DPC++ Compiler 2023</PlatformToolset>
42+
<PlatformToolset>Intel(R) oneAPI DPC++ Compiler 2024</PlatformToolset>
5643
<WholeProgramOptimization>true</WholeProgramOptimization>
5744
<CharacterSet>Unicode</CharacterSet>
5845
</PropertyGroup>
@@ -61,45 +48,19 @@
6148
</ImportGroup>
6249
<ImportGroup Label="Shared">
6350
</ImportGroup>
64-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
65-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
66-
</ImportGroup>
67-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
68-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
69-
</ImportGroup>
7051
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
7152
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
7253
</ImportGroup>
7354
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
7455
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
7556
</ImportGroup>
7657
<PropertyGroup Label="UserMacros" />
77-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
78-
<LinkIncremental>true</LinkIncremental>
79-
</PropertyGroup>
8058
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
8159
<LinkIncremental>true</LinkIncremental>
8260
</PropertyGroup>
83-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
84-
<LinkIncremental>false</LinkIncremental>
85-
</PropertyGroup>
8661
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
8762
<LinkIncremental>false</LinkIncremental>
8863
</PropertyGroup>
89-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
90-
<ClCompile>
91-
<PrecompiledHeader>Use</PrecompiledHeader>
92-
<WarningLevel>Level3</WarningLevel>
93-
<Optimization>Disabled</Optimization>
94-
<SDLCheck>true</SDLCheck>
95-
<ConformanceMode>true</ConformanceMode>
96-
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
97-
</ClCompile>
98-
<Link>
99-
<SubSystem>Console</SubSystem>
100-
<GenerateDebugInformation>true</GenerateDebugInformation>
101-
</Link>
102-
</ItemDefinitionGroup>
10364
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
10465
<ClCompile>
10566
<PrecompiledHeader>Use</PrecompiledHeader>
@@ -116,24 +77,6 @@
11677
<SpecifyDevCmplAdditionalOptions>/Od</SpecifyDevCmplAdditionalOptions>
11778
</Link>
11879
</ItemDefinitionGroup>
119-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
120-
<ClCompile>
121-
<PrecompiledHeader>Use</PrecompiledHeader>
122-
<WarningLevel>Level3</WarningLevel>
123-
<Optimization>MaxSpeed</Optimization>
124-
<FunctionLevelLinking>true</FunctionLevelLinking>
125-
<IntrinsicFunctions>true</IntrinsicFunctions>
126-
<SDLCheck>true</SDLCheck>
127-
<ConformanceMode>true</ConformanceMode>
128-
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
129-
</ClCompile>
130-
<Link>
131-
<SubSystem>Console</SubSystem>
132-
<EnableCOMDATFolding>true</EnableCOMDATFolding>
133-
<OptimizeReferences>true</OptimizeReferences>
134-
<GenerateDebugInformation>true</GenerateDebugInformation>
135-
</Link>
136-
</ItemDefinitionGroup>
13780
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
13881
<ClCompile>
13982
<PrecompiledHeader>Use</PrecompiledHeader>

DirectProgramming/C++SYCL/DenseLinearAlgebra/complex_mult/complex_mult.vcxproj.user

Lines changed: 0 additions & 4 deletions
This file was deleted.

DirectProgramming/C++SYCL/DenseLinearAlgebra/complex_mult/sample.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
"windows": [
2222
{
2323
"steps": [
24-
"MSBuild complex_mult.sln /t:Rebuild /p:Configuration=\"debug\"",
25-
"cd x64\\Debug",
24+
"MSBuild complex_mult.sln /t:Rebuild /p:Configuration=Release",
25+
"cd x64\\Release",
2626
"complex_mult.exe"
2727
]
2828
}

DirectProgramming/C++SYCL/GraphAlgorithms/all-pairs-shortest-paths/all-pairs-shortest-paths.vcxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
2121
<ConfigurationType>Application</ConfigurationType>
2222
<UseDebugLibraries>true</UseDebugLibraries>
23-
<PlatformToolset>Intel(R) oneAPI DPC++ Compiler 2023</PlatformToolset>
23+
<PlatformToolset>Intel(R) oneAPI DPC++ Compiler 2024</PlatformToolset>
2424
<CharacterSet>Unicode</CharacterSet>
2525
</PropertyGroup>
2626
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
2727
<ConfigurationType>Application</ConfigurationType>
2828
<UseDebugLibraries>false</UseDebugLibraries>
29-
<PlatformToolset>Intel(R) oneAPI DPC++ Compiler 2023</PlatformToolset>
29+
<PlatformToolset>Intel(R) oneAPI DPC++ Compiler 2024</PlatformToolset>
3030
<WholeProgramOptimization>true</WholeProgramOptimization>
3131
<CharacterSet>Unicode</CharacterSet>
3232
</PropertyGroup>

0 commit comments

Comments
 (0)