Now that the build system is bazel, how can the software be installed?
The old autotools instructions with arowpp 0.1.2 said:
$ git clone https://github.com/tetsuok/arowpp.git
$ cd arowpp
$ ./configure [--enable-gtest]
$ make
$ make check # This is optional. See the note below.
$ make install
Note the make install step which (typically with sudo) installs the software.
The new bazel build instructions with arowpp 0.1.3 say:
$ git clone https://github.com/tetsuok/arowpp.git
$ cd arowpp
$ bazel build //:arow_learn //:arow_test
That builds, but how to install?
Now that the build system is bazel, how can the software be installed?
The old autotools instructions with arowpp 0.1.2 said:
Note the
make installstep which (typically withsudo) installs the software.The new bazel build instructions with arowpp 0.1.3 say:
That builds, but how to install?