VC++6.0编译的一个dll文件,首先project-->setting-->link-->output file name,设置为C:\123\test.dll,然后project --> export makefile,打开test.makefile文件,为啥这里是相对路径?
ALL : "..\..\..\..\..\..\..\..\123\test.dll" "$(OUTDIR)\test.bsc"
但是,将output file name,设置为D:\123\test.dll,导出Makefile,在打开,又是绝对路径
ALL : "D:\123\test.dll" "$(OUTDIR)\test.bsc"
ALL : "..\..\..\..\..\..\..\..\123\test.dll" "$(OUTDIR)\test.bsc"
但是,将output file name,设置为D:\123\test.dll,导出Makefile,在打开,又是绝对路径
ALL : "D:\123\test.dll" "$(OUTDIR)\test.bsc"