satng / curlpp

Automatically exported from code.google.com/p/curlpp
0 stars 0 forks source link

VC9 solution script generates incorrect names #8

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
If I extract curlpp-0.7.3-pre2 and go to the win32 directory and run the
“create-vc-solution.bat 9” and the try to load the generated project I get
the following 2 errors:

Project file ‘…\curlpp-0.7.3-pre2\curlpp.VC9.vcproj’ could not be loaded.
Project file ‘…\curlpp-0.7.3-pre2\curlpp.examples.VC9.vcproj’ could not be
loaded.

That’s because the generated files are not named that way. If I try to load
the generated files instead I get more errors because they refer to names
with different names. The fix I used is to rename the generated files as:
Curlpp.lib.vsprops -> Curlpp.VC9.vsprops (note the lib is gone)
Curlpp.lib.vcproj -> Curlpp.VC9.vproj (note the lib is gone)
Curlpp.common.vsprops -> Curlpp.common.VC9.vsprops
Curlpp.examples.vcproj -> Curlpp.examples.VC9.vcproj
Curlpp.examples.vsprops -> Curlpp.examples.VC9.vsprops
I also renamed (for symmetry only)
Curlpp.sln -> Curlpp.VC9.sln

Original issue reported on code.google.com by cque...@gmail.com on 28 May 2009 at 7:19