2

i have project that supply me only the nmake files , and i like to load the project to Visual studio express 9 , how can convert the nmake to vaild vcproj files ?

user63898
  • 29,839
  • 85
  • 272
  • 514
  • The retail edition has the Makefile project template. Sooner or later you discover that your time is worth money too. – Hans Passant Feb 02 '11 at 13:10

1 Answers1

1

One of the easisest way of creating a Visual Studio project from existing code is going to the New->Project from Exisiting Code menu item and following the wizard. This won't actually create the project from the data in the nmake file, but its a nice start.

heavyd
  • 17,303
  • 5
  • 56
  • 74