Skip to content

Commit

Permalink
Set default MSVC version to 14
Browse files Browse the repository at this point in the history
  • Loading branch information
micbou committed Sep 24, 2015
1 parent 4e0dae0 commit 5dea917
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def ParseArguments():
help = 'Use the system boost instead of bundled one. '
'NOT RECOMMENDED OR SUPPORTED!')
parser.add_argument( '--msvc', type = int, choices = [ 11, 12, 14 ],
default = 12, help = 'Choose the Microsoft Visual '
default = 14, help = 'Choose the Microsoft Visual '
'Studio version (default: %(default)s).' )
parser.add_argument( '--arch', type = int, choices = [ 32, 64 ],
help = 'Force architecture to 32 or 64 bits on '
Expand Down
2 changes: 1 addition & 1 deletion run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def ParseArguments():
help = 'Do not build ycmd before testing.' )
parser.add_argument( '--msvc', type = int, choices = [ 11, 12, 14 ],
help = 'Choose the Microsoft Visual '
'Studio version. (default: 12).' )
'Studio version. (default: 14).' )
parser.add_argument( '--arch', type = int, choices = [ 32, 64 ],
help = 'Force architecture to 32 or 64 bits on '
'Windows (default: python interpreter architecture).' )
Expand Down

0 comments on commit 5dea917

Please sign in to comment.