In my C++ microsoft visual studio 2010 project, I would like to add a directory to search the dlls while running my project application. In Configuration properties > Debugging > Environment I can't change the default value: PATH=$(QTDIR)\bin%3b$(PATH) I am trying to set this value: PATH=C:\my\path\dll;$(QTDIR)\bin%3b$(PATH) Then I apply the change, run my project and the value come back to PATH=$(QTDIR)\bin%3b$(PATH)
Anyone know how I could do that properly?
Thanks in advance