I want to statically link libcurl into an app I'm writing. I'm using the CMake build system since I'm trying to build with clang. However, the CMake build system is very clear:
CMake Warning at CMakeLists.txt:1137 (message):
Static linking is broken!
However, when I generate and then build I see it's built a file ./lib/libcurl.a
Can this file be trusted?
I want to statically link libcurl into an app I'm writing. I'm using the CMake build system since I'm trying to build with clang. However, the CMake build system is very clear:
However, when I generate and then build I see it's built a file ./lib/libcurl.a
Can this file be trusted?