tdjson static library
Hello everyone! How i can build a static library tdjson?
It is always built by default. You can find tdjson_static among the built libriraies.
It is always built by default. You can find
tdjson_staticamong the built libriraies.
I mean full static, with zlib, libssl etc, can I build such a library?
Yes, you can link zlib and OpenSSL statically. Build dependencies configuration is done via CMake. It will choose the static libraries if dynamic libraries aren't present in the system, or static libraries manually specified during CMake configuration. You will also need to statically link C++ standard library and may want to statically link C standard library other than libc.