Replace autotools with CMake at the toplevel, backend now compiles with newer GCC
This commit is contained in:
parent
d50ec337d1
commit
616aef27a8
124 changed files with 1242 additions and 6315 deletions
16
README
16
README
|
@ -9,18 +9,14 @@ For convenience, here's a short glance at the
|
|||
build process (while the manual isn't finished):
|
||||
in the source package root directory, type:
|
||||
|
||||
mkdir =build && cd =build
|
||||
../configure --prefix=/path/to/installation/dir
|
||||
make
|
||||
su -c "make install"
|
||||
mkdir build && cd build
|
||||
cmake .. -DCMAKE_INSTALL_PREFIX=/path/to/installation/dir
|
||||
cmake --build .
|
||||
sudo cmake --build . --target install
|
||||
|
||||
if you want to generate API documentation via Doxygen:
|
||||
if you want to generate API documentation via Doxygen and makeinfo:
|
||||
|
||||
make apidox
|
||||
|
||||
if you want PDFs of the user and developer manuals,
|
||||
|
||||
make pdf
|
||||
make doc
|
||||
|
||||
As simple as that.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue