microsoftarchive / redis

Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes
http://redis.io
Other
20.84k stars 5.38k forks source link

Can't build solution when the solution is located in a file path that includes spaces #412

Open muratersan opened 8 years ago

muratersan commented 8 years ago

It is common practice to place VS projects under C:\Users\JonSnow\Documents\Visual Studio 2013\Projects\ However the solution fails to build with the following error: LINK : fatal error LNK1181: cannot open input file 'Studio.obj' [C:\Users\JonSnow\Documents\Visual Studio 2013\Projects\redis-3.0\src\Win32_Interop\Win32_Interop.vcxproj]

Took me hours to figure out that the issue was the file path of the solution. Moving the solution to a file path with no spaces resolved the issue. To avoid others living through the same pain please fix the solution.

enricogior commented 8 years ago

Hi @muratersan thank you for reporting the issue, feel free to submit a pull request with the fix. Thanks.