转换“makefile.vc”到“.sln”解决方案文件
我有一个 makefile.vc,我用它来通过这个 .bat 批处理文件进行编译:
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 I conversion makefile.vc (这是由 MAKE vc
调用)转换为 .sln 解决方案文件,我可以将其与 Visual C++ 2010 Express 一起使用,并具有能够调试、单步执行代码和使用智能感知的所有优点, ETC?
(注意:code::blocks
也可以,如果它更简单的话。)
I have a makefile.vc which I am using to compile via this .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 I convert makefile.vc (which is called by MAKE vc
) into a .sln solution file that I can use with Visual C++ 2010 Express with all the benefits of being able to debug, step through code and use intellisense, etc?
(Note: code::blocks
is fine, too, if it's easier.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(在评论中回答。请参阅没有答案的问题,但问题已在评论中解决(或在聊天中扩展))
@Hans Passant 写道:
OP 写道:
(Answered in comments. See Question with no answers, but issue solved in the comments (or extended in chat) )
@Hans Passant wrote:
The OP wrote: