summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* removed trailing whitespaceYang Tse2011-12-301-2/+2
|
* cmake: find winsock when building on windowsDaniel Stenberg2011-08-131-2/+3
| | | | | | | | | When building on Windows, with CMake and mingw, curl fails to compile because the CMake build system is not properly looking for the Winsock libraries Patch by: Pau Garcia i Quiles Bug: http://curl.haxx.se/bug/view.cgi?id=3389231
* CMake: improve library search, implement install.Zmey Petroff2011-04-281-23/+33
| | | | | | | | | | | | | Improved library search by check_function_exists_concat() macro: it does not revert the list of libraries any more. Improved OpenSSL library search: first find zlib, then search for openssl libraries that may depend on zlib. For Unix: openssl libraries can now be detected in nonstandard locations. Supply CMAKE_LIBRARY_PATH to CMake on command line. Added installation capability (very basic one yet).
* CMake: Use upstream CheckTypeSize moduleBrad King2011-01-061-7/+7
| | | | | | | | | | | | | The CheckTypeSize module that comes with CMake 2.6.2 and above does everything we need and also supports cross-compiling. Avoid duplicating an older version of it here. This also fixes a cross-compiling error because the old line include ("${CMAKE_MODULE_PATH}/CheckTypeSize.cmake") failed because CMAKE_MODULE_PATH is a search path and not a directory. Signed-off-by: Brad King <brad.king@kitware.com>
* CMake: Build fix.Julien Chaffraix2010-10-121-1/+1
| | | | | | | | | | | | | | Do not match the trailing '\n' in the regular expression as this would make us dump a ) parenthesis on a new line. This fixes the following error: would get transformed into: ) Bug: http://curl.haxx.se/mail/lib-2010-10/0065.html Reported by: Dimitre Dimitrov
* Enable OpenLDAP support for cygwin builds.Yang Tse2010-06-041-7/+2
| | | | | | | | | Enable OpenLDAP support for cygwin builds. This support was disabled back in 2008 due to incompatibilities between OpenSSL and OpenLDAP headers. cygwin's OpenSSL 0.9.8l and OpenLDAP 2.3.43 versions on cygwin 1.5.25 allow building an OpenLDAP enabled libcurl supporting back to Windows 95. Remove non-functional CURL_LDAP_HYBRID code and references.
* Enable LDAP by default since it is now disabled when ldap.h is not found,Bill Hoffman2010-03-241-1/+1
|
* CMake fixes for Linux.Bill Hoffman2010-03-241-1/+10
| | | | | Make sure <sys/socket.h> is included if around when testing/using socklen_t. Also, disable LDAP if LDAP_H is not found on the system.
* Fix curl CMake build.Bill Hoffman2010-03-241-62/+28
| | | | | | | | | This commit fixes the cmake build of curl, and cleans up the cmake code a little. It removes some commented out code and some trailing whitespace. To get curl to build the binary tree include/curl directory needed to be added to the include path. Also, SIZEOF_SHORT needed to be added. A check for the lack of defines of SIZEOF_* for warnless.c was added.
* ENH: fix build with sslBill Hoffman2009-07-151-1/+1
|
* BUG: curl did not build with cmake with VS 2005 for two reasons, ws2tcpip.h ↵Bill Hoffman2009-07-151-2/+11
| | | | requires winsock2.h to be included before it with that compiler, and wldap32 is not available with the default install of the compiler, so disable ldap support if that is not found
* ENH: add optional support for c-aresBill Hoffman2009-07-141-1/+11
|
* ENH: do not report if zlib is not found as it still worksBill Hoffman2009-07-141-1/+1
|
* ENH: extract version from curlver.hBill Hoffman2009-06-101-3/+19
|
* ENH: lower case cmake functions and remove tabs and re-indent cmake codeBill Hoffman2009-06-091-546/+546
|
* ENH: add some cmake docs and fix build with socklen_tBill Hoffman2009-06-061-2/+8
|
* Use build-time configured curl_socklen_t instead of socklen_tYang Tse2009-05-021-4/+0
|
* (Minor change - From Piotr Dobrogost) Moved a line.Benoit Neil2009-04-141-1/+1
|
* (Minor update) Moved some utilities to a separate file.Benoit Neil2009-04-091-19/+1
|
* Cleaned up the custom definition I added (replaced by CURL_STATICLIB)Benoit Neil2009-04-091-2/+1
|
* Made the windows .lib addition cleaner.Benoit Neil2009-04-081-115/+130
|
* Renamed a variableBenoit Neil2009-04-081-8/+7
|
* Fixed compile defines in CMake scriptsBenoit Neil2009-04-081-6/+8
|
* (Minor update) Modified a comment, before going to sleep :)Benoit Neil2009-04-071-2/+1
|
* Added missing tests in CMake, added Makefile.inc for tests (+ use in CMake ↵Benoit Neil2009-04-071-2/+6
| | | | scripts), and fixed a missing define under windows in a test source file.
* Added CURL_HIDDEN_SYMBOLS option, and fixed missing SIZEOF_INT causing warnings.Benoit Neil2009-04-071-2/+15
|
* (From Bill Hoffman & Sukender) Added Dashboard reports.Benoit Neil2009-04-071-0/+6
|
* Made the CMake scripts read Makefile.inc. Needs testing I guess.Benoit Neil2009-04-061-0/+44
|
* Added tests (exes) targets, refactor a few things.Benoit Neil2009-04-061-1/+26
| | | | PS: Once again, sorry if the added files have executable perms on Linux.
* Added curl (exe) target, fixed static/dynamic linking errors.Benoit Neil2009-04-061-3/+8
| | | | PS: Sorry if the added file has executable perms on Linux, I didn't found anything related to it...
* Fixed Win32 link error and disabled MSVC specific (=annoying) warnings ↵Benoit Neil2009-04-061-6/+11
| | | | (Reported by Bill Hoffman)
* Added basic OpenSSL support in CMake scripts (Thanks to Bill Hoffman)Benoit Neil2009-04-021-2/+13
|
* Initial CMake scripts (libcurl only), based on the merge of tetest scripts ↵Benoit Neil2009-04-021-0/+738
and mine. These are far to be functionnal yet. PS: Hello world :)