c++ - Converting 'makefile.vc' to a '.sln' solution file -
i have makefile.vc using compile via .bat batch file:
echo off cls set vstools="e:\_programfiles_\ms vstudio 10\vc" call "e:\_programfiles_\microsoft sdks\windows\v7.1\bin\setenv.cmd" /x86 /xp /release call "e:\_programfiles_\microsoft directx sdk (june 2010)\utilities\bin\dx_setenv.cmd" call "e:\_programfiles_\ms vstudio 10\vc\vcvarsall.bat" path = e:\fbaxbins_v2\unixutils\bin;%path% path = e:\fbaxbins_v2\perl\bin\mswin32-x86;%path% path = e:\fbaxbins_v2\nasm-2.03.01;%path% make vc echo _ echo fb alpha compilation done. [msvc tools environment] echo _ pause how can convert makefile.vc (which called make vc) .sln solution file can use visual c++ 2010 express benefits of being able debug, step through code , use intellisense, etc?
(note: code::blocks fine, too, if it's easier.)
(answered in comments. see question no answers, issue solved in comments (or extended in chat) )
@hans passant wrote:
you'd use general + makefile project template. sure not available in express edition. there otherwise no simple way mechanically translate makefile solution.
you put there type on command line. beware make.exe not available default, microsoft version called nmake.exe. .bat file work?
the op wrote:
it's tutorial here neosource.1emu.net/forums/index.php?topic=1476.0 if want recreate it; don't type @ command line double click
.bat, thing
Comments
Post a Comment