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
Post a Comment