I have an environment variable where some path is stored, let's say,
Code: Select all
MY_VAR = D:\My\Var
When I use this variable inside project settings, let's say, I use it in intermediate directory path:
Code: Select all
$(MY_VAR)\obj
, I'm getting error on linking:
Code: Select all
.../mingw-w64/mingw32/bin/ar.exe: D:MyVar/Main.cpp.o: No such file or directory
That's not normal, right? Can it be fixed?