diff options
author | Johannes Schickel | 2006-06-08 20:09:46 +0000 |
---|---|---|
committer | Johannes Schickel | 2006-06-08 20:09:46 +0000 |
commit | 6f259eacc73080a85cc03b2e6395c9153d9c8c13 (patch) | |
tree | 0f4ecdbaae1839356f1cf12adfe8867f34f55b2a /dists | |
parent | 276d754443c28624d657e164ff889a1d910181ec (diff) | |
download | scummvm-rg350-6f259eacc73080a85cc03b2e6395c9153d9c8c13.tar.gz scummvm-rg350-6f259eacc73080a85cc03b2e6395c9153d9c8c13.tar.bz2 scummvm-rg350-6f259eacc73080a85cc03b2e6395c9153d9c8c13.zip |
- makes gob link again
- makes sure that nasm is able to find the files if the path has some ' ' (space) characters in it.
svn-id: r22989
Diffstat (limited to 'dists')
-rw-r--r-- | dists/msvc8/gob.vcproj | 10 | ||||
-rw-r--r-- | dists/msvc8/scummvm.vcproj | 6 |
2 files changed, 12 insertions, 4 deletions
diff --git a/dists/msvc8/gob.vcproj b/dists/msvc8/gob.vcproj index 93b36bb92b..5d81678a85 100644 --- a/dists/msvc8/gob.vcproj +++ b/dists/msvc8/gob.vcproj @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="windows-1250"?> +<?xml version="1.0" encoding="Windows-1252"?> <VisualStudioProject ProjectType="Visual C++" Version="8,00" @@ -368,6 +368,14 @@ > </File> <File + RelativePath="..\..\engines\gob\scenery_v1.cpp" + > + </File> + <File + RelativePath="..\..\engines\gob\scenery_v2.cpp" + > + </File> + <File RelativePath="..\..\engines\gob\sound.cpp" > </File> diff --git a/dists/msvc8/scummvm.vcproj b/dists/msvc8/scummvm.vcproj index 2b13b6bf04..7413e8792c 100644 --- a/dists/msvc8/scummvm.vcproj +++ b/dists/msvc8/scummvm.vcproj @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="windows-1250"?> +<?xml version="1.0" encoding="Windows-1252"?> <VisualStudioProject ProjectType="Visual C++" Version="8,00" @@ -1065,7 +1065,7 @@ > <Tool Name="VCCustomBuildTool" - CommandLine="nasm.exe -O1 -f win32 -g -o $(OutDir)\$(InputName).obj $(InputPath)
" + CommandLine="nasm.exe -O1 -f win32 -g -o "$(OutDir)\$(InputName).obj" "$(InputPath)"
" Outputs="$(OutDir)\$(InputName).obj" /> </FileConfiguration> @@ -1095,7 +1095,7 @@ > <Tool Name="VCCustomBuildTool" - CommandLine="nasm.exe -O1 -f win32 -g -o $(OutDir)\$(InputName).obj $(InputPath)
" + CommandLine="nasm.exe -O1 -f win32 -g -o "$(OutDir)\$(InputName).obj" "$(InputPath)"
" Outputs="$(OutDir)\$(InputName).obj" /> </FileConfiguration> |