编译 apache ignite c++ 例子

Compile apache ignite c++ examples

我想在我正在开发的 c++ 应用程序中使用 apache ignite。到目前为止,我已经从网站下载了 ignite,并按照 DEVNOTES.TXT 文件中指定的方式编译了 ignite c++:

cd platforms/cpp
libtoolize && aclocal && autoheader && automake --add-missing && autoreconf
./configure
make

它似乎有效,因为我没有收到任何错误消息。但是,我找不到示例应用程序的二进制文件,例如 putget-example 目录中的代码,这与我自己的代码中想要做的很接近。

因此,我想知道如何编译这个和其他 ignite c++ 示例。另外,假设我想将 apache ignite 与我正在编写的另一个应用程序一起使用,我该如何使用 ignite c++ 库对其进行编译?

示例应单独编译。见 platforms/cpp/examples/README.txt:

cd platforms/cpp/examples
libtoolize && aclocal && autoheader && automake --add-missing && autoreconf
./configure
make

请注意,您必须在构建示例之前编译主项目(我相信您已经完成了)。