aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/CMakeLists.txt.template
Commit message (Collapse)AuthorAge
* Merge branch 'master' into cmake-export-fixGravatar Jan Tattermusch2018-01-19
|\
| * cleanup cmake include directoriesGravatar Jan Tattermusch2018-01-16
| |
* | Fix cmake export for grpcGravatar Stefan Hacker2018-01-14
|/ | | | | | | | | | | | | | | | | | | | This patch fixes two issues with the targets exported by the grpc cmake build: - Install directories are now given relative instead of absolute. Previously the exported targets would contain absolute paths to their created targets when they should be relative. The actual installation location stays the same as cmake automatically interprets the paths relative to CMAKE_INSTALL_PREFIX - ZLIB and OpenSSL are now linked using targets instead of the legacy library variables if possible. Using the legacy paths produces absolute paths to those dependencies in the export. With this change cmake inserts the target names instead. With these changes no more absolute paths are inserted into the export allowing the install location to be used as an artifact that can be moved or transfered to another machine and used there.
* simplify top level CMakeLists.txtGravatar Jan Tattermusch2017-12-19
|
* dont hardcode using boringssl headers when ssl provider is packageGravatar Jan Tattermusch2017-12-14
|
* exclude artificial ares target when building with cmakeGravatar Jan Tattermusch2017-12-14
|
* working cmake install on windowsGravatar Jan Tattermusch2017-12-01
|
* Back-out absl dependency for nowGravatar Craig Tiller2017-11-13
|
* fix cmake builds with abslGravatar Jan Tattermusch2017-10-17
|
* Update CMakelists.txtGravatar Craig Tiller2017-10-10
|
* Merge pull request #12501 from BusyJay/fix-cares-buildGravatar Jan Tattermusch2017-09-14
|\ | | | | cmake: fix cares configuration
| * update templateGravatar Jay Lee2017-09-13
| |
* | fix zlib and openssl package modeGravatar Jan Tattermusch2017-09-11
| |
* | fix public header path for installed grpcGravatar Jan Tattermusch2017-09-11
|/
* move cmake config files to /cmakeGravatar Jan Tattermusch2017-09-10
|
* use the right protoc executable regardless of protobuf providerGravatar Jan Tattermusch2017-09-10
|
* fix macos buildGravatar Jan Tattermusch2017-09-09
|
* build using c-ares own cmakeGravatar Jan Tattermusch2017-09-09
|
* vs2017 build fixesGravatar Jan Tattermusch2017-08-23
|
* Merge pull request #11582 from jtattermusch/cmake_various_fixesGravatar Jan Tattermusch2017-07-03
|\ | | | | cmake: various fixes
* | Make CMake find_package work for preinstalled libprotobuf on Raspbian.Gravatar Kamil Skalski2017-06-28
| |
| * dont reuse protobuf cmake install dirsGravatar Jan Tattermusch2017-06-23
| |
| * make some headers publicGravatar Jan Tattermusch2017-06-23
| |
| * build protobuf without zlibGravatar Jan Tattermusch2017-06-23
| |
| * workaround zlib cmake issueGravatar Jan Tattermusch2017-06-23
|/
* Merge pull request #11140 from randomguy3/cmake-installGravatar Jan Tattermusch2017-06-19
|\ | | | | Fix CMake installation issues
* \ Merge pull request #11469 from jtattermusch/cmake_explicit_protocGravatar Jan Tattermusch2017-06-19
|\ \ | | | | | | Explicitly use built protoc for CMake build
* | | cmake: add zlib and cares depGravatar Jan Tattermusch2017-06-13
| | |
| * | explicitly use built protoc for CMake buildGravatar Jan Tattermusch2017-06-13
|/ /
* | fix remaining license noticesGravatar Jan Tattermusch2017-06-08
| |
| * Set gRPC_INSTALL to ON by default for MSVC and OFF if a subprojectGravatar Alex Merry2017-05-15
| | | | | | | | | | | | | | | | Now that gRPC_INSTALL is forced off if using bundled third-party libraries, it no longer makes sense to set it OFF by default for MSVC. However, we do want to set it OFF by default if gRPC is being built as a subproject of another project.
| * CMake: Disable installation when using bundled third party librariesGravatar Alex Merry2017-05-15
| | | | | | | | | | If gRPC is not getting its (link-time) dependencies from the system, it should not be attempting installation.
| * Revert "cmake: fix #8729"Gravatar Alex Merry2017-05-15
| | | | | | | | This reverts commit c019e057c20db0b9c9a2f76fb0b9cd6f44addf92.
| * Fix finding c-ares in package mode with CMakeGravatar Alex Merry2017-05-15
|/ | | | | The next release of c-ares will install a CMake package (when built using CMake), but it will be called "c-ares", not "CARES".
* Fix for recent cmake failure owing to gmockGravatar Mahak Mukhi2017-04-26
|
* Increase portability of CMakeLists.txtGravatar Mehrdad Afshari2017-04-20
| | | | | | | | | - Update CMakeLists.txt (original template and generated code) to prevent forcefully linking `dl` on all UNIX platforms, and rely on `${CMAKE_DL_LIBS}` portable variable instead. - Do not try linking against `librt` on macOS. - Add a `config_freebsd` directory containing the header file generated by the `configure` script for the `ares` library.
* Fix BUILD dependency, copyright and cmakeGravatar yang-g2017-04-12
|
* Merge pull request #10407 from kpayson64/alpine_linux_supportGravatar kpayson642017-04-10
|\ | | | | Alpine linux support
* | allow using gRPC as a cmake subprojectGravatar Jan Tattermusch2017-04-07
| |
| * Fix build on Alpine linux + add portability testsGravatar Ken Payson2017-04-06
|/
* Add CARES_BUILD_INCLUDE_DIRGravatar Yuchen Zeng2017-03-21
|
* Fix cmake build on linuxGravatar Yuchen Zeng2017-03-20
|
* Fix uv, cmake, bazel buildGravatar Yuchen Zeng2017-03-20
|
* Merge remote-tracking branch 'upstream/master' into cares_bazel_ruleGravatar Yuchen Zeng2017-03-17
|\
| * Cosmetics (removed one newline)Gravatar Piotr Pietraszkiewicz2017-02-09
| |
* | Merge remote-tracking branch 'upstream/master' into cares_bazel_ruleGravatar Yuchen Zeng2017-02-08
|\ \
| | * Fix issue #9597Gravatar Piotr Pietraszkiewicz2017-02-06
| |/ | | | | | | | | Generate consistently named PDBs for libraries across generators and install those PDBs if present.
| * cmake: fix #8729Gravatar Jan Tattermusch2017-02-02
| |
| * cmake: support static runtime linkingGravatar Jan Tattermusch2017-02-02
| |
| * boringssl silences its own warningsGravatar Jan Tattermusch2017-02-02
| |