如何编译没有项目文件的C++源代码?

How to compile source C++ code that doesn't have a project file?

在我被打之前。我刚刚开始学习更多关于 C/C++ 的知识,我正在使用 Visual Studio 2013 来管理代码。

我正在使用 Tobii EyeX 眼睛注视系统的项目要求我能够稍微调整此代码,但是我不明白如何在没有 Microsoft Visual Studio 项目文件。这是代码:

https://github.com/MastaLomaster/bkb

在源文件夹中,您可以看到项目的所有文件,但看不到实际的项目文件。我将如何编译这段代码?我从哪说起呢?我似乎无法加载这是 Visual Studio - 代码的程序员说(在 Github 页面的底部):

Compiling the source codes As for now, you have to use Microsoft Visual Studio 2012 (latest update preferred)...

谢谢!任何帮助将不胜感激。

使用 nmake 为 visual studio 创建一个 makefile(如果不存在 makefile),或者您可以使用 this link.

中提供的建议

此外,您可以通过将这些代码添加为源代码来创建项目。关注 this link.