We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aa9508 commit 70d020fCopy full SHA for 70d020f
RGF/README.md
@@ -125,6 +125,7 @@ We tested following versions of Visual Studio:
125
- Visual Studio 14 2015 [Win64]
126
- Visual Studio 15 2017 [Win64]
127
- Visual Studio 16 2019 [Win64]
128
+- Visual Studio 17 2022 [Win64]
129
130
Other versions may work but are untested.
131
python-package/setup.py
@@ -177,7 +177,8 @@ def compile_rgf():
177
else:
178
arch = 'Win32'
179
platform_toolsets = ('Windows7.1SDK', 'v100', 'v110',
180
- 'v120', 'v140', 'v141', 'v142')
+ 'v120', 'v140', 'v141', 'v142',
181
+ 'v143')
182
for platform_toolset in platform_toolsets:
183
success = silent_call(('MSBuild',
184
'rgf.sln',
@@ -200,7 +201,8 @@ def compile_rgf():
200
201
logger.info("Trying to build executable file with CMake and MSBuild.")
202
generators = ('Visual Studio 10 2010', 'Visual Studio 11 2012',
203
'Visual Studio 12 2013', 'Visual Studio 14 2015',
- 'Visual Studio 15 2017', 'Visual Studio 16 2019')
204
+ 'Visual Studio 15 2017', 'Visual Studio 16 2019',
205
+ 'Visual Studio 17 2022')
206
for generator in generators:
207
clear_folder(os.path.join(rgf_base_dir, 'build'))
208
success = silent_call(('cmake', '../', '-G', generator, '-A', arch))
0 commit comments