I followed the instructions to build arrow
which is
git clone https://github.com/apache/arrow.git
cd arrow/cpp
mkdir release
cd release
cmake ..
make
so now I want to make use of the libraries I have built
main.cpp
#include "parquet/arrow/writer.h"
void main(int argc, char *argv[]) {
printf("ok")
}
but it complains that
In file included from /home/xiaodai/git/arrow/cpp/src/parquet/arrow/writer.h:24:0,
from main.cpp:1:
/home/xiaodai/git/arrow/cpp/src/parquet/properties.h:30:10: fatal error: parquet/parquet_version.h: No such file or directory
#include "parquet/parquet_version.h"
^~~~~~~~~~~~~~~~~~~~~~~~~~~
so how do I tell gcc to use the library I just built?