@@ -45,75 +45,75 @@ jobs:
4545 - task : CMake@1
4646 displayName : ' CMake (MSVC): Config x64'
4747 inputs :
48- cwd : ' '
48+ cwd : ' $(Build.SourcesDirectory) '
4949 cmakeArgs : ' -G "$(VS_GENERATOR)" -A x64 -B out -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)'
5050 - task : CMake@1
5151 displayName : ' CMake (MSVC): Build x64 Debug'
5252 inputs :
53- cwd : ' '
53+ cwd : ' $(Build.SourcesDirectory) '
5454 cmakeArgs : --build out -v --config Debug
5555 - task : CMake@1
5656 displayName : ' CMake (MSVC): Build x64 Release'
5757 inputs :
58- cwd : ' '
58+ cwd : ' $(Build.SourcesDirectory) '
5959 cmakeArgs : --build out -v --config RelWithDebInfo
6060 - task : CMake@1
6161 displayName : ' CMake (MSVC): Config x86'
6262 inputs :
63- cwd : ' '
63+ cwd : ' $(Build.SourcesDirectory) '
6464 cmakeArgs : ' -G "$(VS_GENERATOR)" -A Win32 -B out2 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)'
6565 - task : CMake@1
6666 displayName : ' CMake (MSVC): Build x86 Debug'
6767 inputs :
68- cwd : ' '
68+ cwd : ' $(Build.SourcesDirectory) '
6969 cmakeArgs : --build out2 -v --config Debug
7070 - task : CMake@1
7171 displayName : ' CMake (MSVC): Build x86 Release'
7272 inputs :
73- cwd : ' '
73+ cwd : ' $(Build.SourcesDirectory) '
7474 cmakeArgs : --build out2 -v --config RelWithDebInfo
7575 - task : CMake@1
7676 displayName : ' CMake (MSVC): Config ARM64'
7777 inputs :
78- cwd : ' '
78+ cwd : ' $(Build.SourcesDirectory) '
7979 cmakeArgs : ' -G "$(VS_GENERATOR)" -A ARM64 -B out3 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)'
8080 - task : CMake@1
8181 displayName : ' CMake (MSVC): Build ARM64 Debug'
8282 inputs :
83- cwd : ' '
83+ cwd : ' $(Build.SourcesDirectory) '
8484 cmakeArgs : --build out3 -v --config Debug
8585 - task : CMake@1
8686 displayName : ' CMake (MSVC): Build ARM64 Release'
8787 inputs :
88- cwd : ' '
88+ cwd : ' $(Build.SourcesDirectory) '
8989 cmakeArgs : --build out3 -v --config RelWithDebInfo
9090 - task : CMake@1
9191 displayName : ' CMake (ClangCl): Config x64'
9292 inputs :
93- cwd : ' '
93+ cwd : ' $(Build.SourcesDirectory) '
9494 cmakeArgs : ' -G "$(VS_GENERATOR)" -A x64 -T clangcl -B out4 -DCMAKE_SYSTEM_VERSION=$(WIN10_SDK)'
9595 - task : CMake@1
9696 displayName : ' CMake (ClangCl): Build x64 Debug'
9797 inputs :
98- cwd : ' '
98+ cwd : ' $(Build.SourcesDirectory) '
9999 cmakeArgs : --build out4 -v --config Debug
100100 - task : CMake@1
101101 displayName : ' CMake (ClangCl): Build x64 Release'
102102 inputs :
103- cwd : ' '
103+ cwd : ' $(Build.SourcesDirectory) '
104104 cmakeArgs : --build out4 -v --config RelWithDebInfo
105105 - task : CMake@1
106106 displayName : ' CMake (ClangCl): Config ARM64'
107107 inputs :
108- cwd : ' '
108+ cwd : ' $(Build.SourcesDirectory) '
109109 cmakeArgs : ' -G "$(VS_GENERATOR)" -A ARM64 -T clangcl -B out5 -DCMAKE_SYSTEM_VERSION=$(WIN11_SDK)'
110110 - task : CMake@1
111111 displayName : ' CMake (ClangCl): Build ARM64 Debug'
112112 inputs :
113- cwd : ' '
113+ cwd : ' $(Build.SourcesDirectory) '
114114 cmakeArgs : --build out5 -v --config Debug
115115 - task : CMake@1
116116 displayName : ' CMake (ClangCl): Build ARM64 Release'
117117 inputs :
118- cwd : ' '
118+ cwd : ' $(Build.SourcesDirectory) '
119119 cmakeArgs : --build out5 -v --config RelWithDebInfo
0 commit comments