lsalamon / slimgen

Automatically exported from code.google.com/p/slimgen
MIT License
0 stars 0 forks source link

Post Build Command Errors #5

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
The post build commands for copying should use " " for paths. For example, 
change

copy /Y $(SolutionDir)cpuid\x64\$(ConfigurationName)\cpuid.dll 
$(TargetDir)cpuid.dll

to

copy /Y "$(SolutionDir)cpuid\x64\$(ConfigurationName)\cpuid.dll" 
"$(TargetDir)cpuid.dll"

Problem exists on the Builder and Test projects.

Original issue reported on code.google.com by Jorgy...@gmail.com on 30 Jun 2010 at 6:29