Skip to content

Commit 4e8d4b4

Browse files
committed
Update support for VS 2026
1 parent be5d949 commit 4e8d4b4

5 files changed

Lines changed: 5 additions & 47 deletions

File tree

Bin/BuildMSVC2022.cmd

Lines changed: 0 additions & 33 deletions
This file was deleted.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@echo off
2-
call GenerateMSVC2019.cmd
2+
call GenerateMSVC2026.cmd
33
cd ..
44

55
IF NOT EXIST Build (
@@ -9,14 +9,14 @@ goto ERROR
99

1010
cd Build
1111

12-
MSBuild Scs.sln /p:Configuration=Debug && (
12+
MSBuild Scs.slnx /p:Configuration=Debug && (
1313
echo Debug build succeeded
1414
) || (
1515
echo Debug build failed
1616
goto ERROR
1717
)
1818

19-
MSBuild Scs.sln /p:Configuration=Release && (
19+
MSBuild Scs.slnx /p:Configuration=Release && (
2020
echo Release build succeeded
2121
) || (
2222
echo Release build failed

Bin/GenerateMSVC2022.cmd

Lines changed: 0 additions & 10 deletions
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ echo Creating Build/ folder
55
mkdir Build
66
)
77
cd Build/
8-
cmake ../ -G "Visual Studio 16 2019" -A x64
8+
cmake ../ -G "Visual Studio 18 2026" -A x64
99
cd ..
1010
cd Bin

Source/ScsInternal.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ typedef __int64 ssize_t;
9292
#include <cassert>
9393
#include <cstring>
9494
#include <cstdarg>
95+
#include <chrono>
9596

9697
#include "ScsCommon.h"
9798
#include "ScsAddress.h"

0 commit comments

Comments
 (0)