hyperrealm / libconfig

C/C++ library for processing configuration files
https://hyperrealm.github.io/libconfig/
GNU Lesser General Public License v2.1
1.11k stars 362 forks source link

miss configure #183

Closed xiaonaiquan closed 3 years ago

xiaonaiquan commented 3 years ago

There is no configure file in the project,How do you build a statically linked library?

tkrypton commented 3 years ago

That's covered in the INSTALL file:

Installation from Cloned Git Repository

If you obtained the package by cloning the git repository, there are some additional steps required to build the package, as the generated 'configure' script and other supporting build files are not included in the repository. ...

In short: use autoreconf after you've installed the usual set of autotools mentioned in the INSTALL file.

HTH, Uli

xiaonaiquan commented 3 years ago

That's covered in the INSTALL file:

Installation from Cloned Git Repository

If you obtained the package by cloning the git repository, there are some additional steps required to build the package, as the generated 'configure' script and other supporting build files are not included in the repository. ...

In short: use autoreconf after you've installed the usual set of autotools mentioned in the INSTALL file.

HTH, Uli

thank you ,i will try again!