Skip to content

Commit

Permalink
Fix quotes for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
r-zenine committed Feb 11, 2020
1 parent 5019f7b commit e28425a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def _build_cmake_dependency(directory, args=""):
os.chdir(directory)
if sys.platform == 'win32':
os.system("cmake.exe --clean .")
os.system("cmake.exe -G='Visual Studio 16 2019' {} .".format(args) )
os.system('cmake.exe -G="Visual Studio 16 2019" {} .'.format(args) )
os.system("cmake.exe --build .")
else:
os.system("cmake --clean .")
Expand Down

0 comments on commit e28425a

Please sign in to comment.