0

我正在尝试将一个广泛的 Visual Studio (2008) 项目移植到 Linux 系统。

有人知道它是否存在一种轻松将文件“转换”为..vcprojmakefile

4

3 回答 3

0

You can use Winemaker, which is part of WINE: something all major distributions already include.

On Fedora, which use yum, you can, as root, run yum install /usr/bin/winemaker to install it. This will probably also work on other yum based operating system, but you may have to provide another path, if winemaker is packaged to install in /usr/bin (which I doubt will be the case).

Once you have converted the project, consider using Autotools instead -- it's, in my experience, by far the simplest build tool available and is very easy to learn and use. Just don't be scared to poor documentation you will often find lying around. The only files you have to edit are configure.ac and Makefile.am files.

于 2014-12-13T12:19:06.397 回答
0

也许这可以帮助你,但你需要处理原始代码中的输出

做到这一点

http://code.google.com/p/make-it-so/

或 sln2mak

http://www.codeproject.com/Articles/28908/Tool-for-Converting-VC-2005-Project-to-Linux-Makef

我希望这可以帮助你

于 2013-02-14T17:37:31.243 回答
0

最简单的方法就是学习如何编写自己的 Makefile。这很简单。

但除此之外,您可以尝试http://www.codeproject.com/Articles/28908/Tool-for-Converting-VC-2005-Project-to-Linux-Makef

于 2012-12-11T00:41:25.377 回答