1. 07 Oct, 2018 5 commits
  2. 06 Oct, 2018 2 commits
  3. 05 Oct, 2018 15 commits
  4. 04 Oct, 2018 4 commits
  5. 03 Oct, 2018 7 commits
  6. 02 Oct, 2018 5 commits
  7. 01 Oct, 2018 2 commits
    • Daniel Stenberg's avatar
      RELEASE-NOTES: synced · 406d02cd
      Daniel Stenberg authored
      406d02cd
    • Ruslan Baratov's avatar
      CMake: Improve config installation · 69328490
      Ruslan Baratov authored
      Use 'GNUInstallDirs' standard module to set destinations of installed
      files.
      
      Use uppercase "CURL" names instead of lowercase "curl" to match standard
      'FindCURL.cmake' CMake module:
      * https://cmake.org/cmake/help/latest/module/FindCURL.html
      
      Meaning:
      * Install 'CURLConfig.cmake' instead of 'curl-config.cmake'
      * User should call 'find_package(CURL)' instead of 'find_package(curl)'
      
      Use 'configure_package_config_file' function to generate
      'CURLConfig.cmake' file. This will make 'curl-config.cmake.in' template
      file smaller and handle components better.  E.g.  current configuration
      report no error if user specified unknown components (note: new
      configuration expects no components, report error if user will try to
      specify any).
      
      Closes https://github.com/curl/curl/pull/2849
      69328490