ライブラリや実行ファイルはビルド構成別のディレクトリに格納されている。
現在提供されている構成は次のものがある:
ヘッダは以下のものがあるので、必要なものを使用する:
また、pthread を利用しているので、コンパイル時に pthread を参照する必要がある。gcc では -pthread オプションを使う。
$ g++ -C -o sample.o -I../nine/include -pthread sample.cpp
ライブラリは以下のものがあるので、必要なものをリンクする:
$ g++ -o sample -L../nine/linux-i686 -lnine -lprotobuf sample.o