lizh06 / ticpp

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

VS2003 project file containing intermediate dir with "." does not build #3

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
premake targeting vs2003 generates a project file (.vcproj) with
IntermediateDirectory values containing "." (i.e. ".objs"). Resulting
project file compiles, but VCLibrarianTool never runs.

It appears the Visual Studio doesn't support intermediate directories
starting with "."

To reproduce:
1. premake --target vs2003 --unicode
2. devenv TiCPP.vcproj /BUILD Release

Expected output:
  Compiling...
  tinyxmlparser.cpp
  tinyxmlerror.cpp
  etc...
  Creating library...     <=========== I don't get this
  TiCPP - 0 error(s), 10 warning(s)
  ---------------------- Done ----------------------
  Build: 1 succeeded, 0 failed, 0 skipped

What I see:
  Compiling...
  tinyxmlparser.cpp
  tinyxmlerror.cpp
  etc...
  TiCPP - 0 error(s), 10 warning(s)
  ---------------------- Done ----------------------
  Build: 1 succeeded, 0 failed, 0 skipped

Environment:
  MSVC 2003 (no SP), Windows XP SP2

Original issue reported on code.google.com by rog...@gmail.com on 13 Mar 2007 at 11:08

GoogleCodeExporter commented 9 years ago

Original comment by rjmy...@gmail.com on 1 Oct 2007 at 2:31

GoogleCodeExporter commented 9 years ago
Fixed in SVN revision 81.

Original comment by rpusz...@gmail.com on 5 Nov 2007 at 2:39