diff options
author | Brad King <brad.king@kitware.com> | 2016-08-16 20:26:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-08-31 13:02:19 (GMT) |
commit | 13b7e7587d50a52bb422852eb4d71a93eb8f18a6 (patch) | |
tree | dfcaef4dc5f2aef27c8473e6f8f4f1b15e4d6e60 /Utilities/cm_uv.h | |
parent | d96416fe482e17bc9f5a741d71d4a51a9b44f65e (diff) | |
download | CMake-13b7e7587d50a52bb422852eb4d71a93eb8f18a6.zip CMake-13b7e7587d50a52bb422852eb4d71a93eb8f18a6.tar.gz CMake-13b7e7587d50a52bb422852eb4d71a93eb8f18a6.tar.bz2 |
libuv: Build the library within CMake
Take logic from upstream `Makefile.am` and `configure.ac` to build libuv
sources.
Update `uv.h` to include KWSys Large File Support configuration so that
consistent stream libraries are used (on AIX with XL).
Add a `cm_uv.h` header to include the CMake-provided copy of the `uv.h`
header from CMake sources.
Diffstat (limited to 'Utilities/cm_uv.h')
-rw-r--r-- | Utilities/cm_uv.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Utilities/cm_uv.h b/Utilities/cm_uv.h new file mode 100644 index 0000000..63ff597 --- /dev/null +++ b/Utilities/cm_uv.h @@ -0,0 +1,17 @@ +/*============================================================================ + CMake - Cross Platform Makefile Generator + Copyright 2000-2016 Kitware, Inc., Insight Software Consortium + + Distributed under the OSI-approved BSD License (the "License"); + see accompanying file Copyright.txt for details. + + This software is distributed WITHOUT ANY WARRANTY; without even the + implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the License for more information. +============================================================================*/ +#ifndef cm_uv_h +#define cm_uv_h + +#include <cmlibuv/include/uv.h> + +#endif |