How to escape white space in nmake -


i´m trying use nmake call mstest

test="%vs90comntools%..\ide\mstest.exe" test:   $(test) /testcontainer:test.dll 

when run nmake got:

$ nmake test 'c:\program' not recognized internal or external command, 

double quote doesn´t work right

edit:

thanks "eric melski". created like:

test_="%vs90comntools%..\ide\mstest.exe"  test="$(test_)" /nologo /noresults  test:    $(test) /testcontainer:test.dll 

put double quotes around usage of $(test) well:

test="%vs90comntools%..\ide\mstest.exe" test:   "$(test)" /testcontainer:test.dll 

works nmake 7 , 8.


Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -