eigen_enthused
eigen_enthused

Reputation: 535

MS VC2010 - path with slashes in both directions

I'm getting this error in visual c++. I've gotten it before with slashes point in the wrong direction.

Here is the error:

Unable to start program
'C:\Develop\QxOrm\1.2.4\QxOrm\tes\qxDllSample\dll1\debug/dll1.dll'

Any ideas what might be causing that?

Upvotes: 0

Views: 99

Answers (1)

Mark Tolonen
Mark Tolonen

Reputation: 177715

\t is an escape code for a tab. Use \\ to escape the backslash, or use all forward slashes.

Upvotes: 3

Related Questions