Skip to content

Commit

Permalink
Bat files now handle spaces in directory
Browse files Browse the repository at this point in the history
Batch files used to generate VS solutions can now handle spaces in the
directory path.
  • Loading branch information
Daniel Maloney committed Jul 25, 2012
1 parent 7ce1723 commit a177ee7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Visual_Studio32.bat
Expand Up @@ -2,6 +2,6 @@
mkdir build-32
cd build-32
REM Get value for %args%
call %~dp0/cmake/Visual_Studio_arguments.bat
call "%~dp0/cmake/Visual_Studio_arguments.bat"
cmake -C../cmake/Visual_Studio32.cmake %args% -G "Visual Studio 10" ..
pause
4 changes: 2 additions & 2 deletions Visual_Studio64.bat
Expand Up @@ -2,6 +2,6 @@
mkdir build-64
cd build-64
REM Get value for %args%
call %~dp0/cmake/Visual_Studio_arguments.bat
call "%~dp0/cmake/Visual_Studio_arguments.bat"
cmake -C../cmake/Visual_Studio64.cmake %args% -G "Visual Studio 10 Win64" ..
pause
pause

0 comments on commit a177ee7

Please sign in to comment.