2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2016-08-16 20:26:39 +00:00
|
|
|
#ifndef cm_uv_h
|
|
|
|
#define cm_uv_h
|
|
|
|
|
2016-08-16 21:01:23 +00:00
|
|
|
/* Use the libuv library configured for CMake. */
|
|
|
|
#include "cmThirdParty.h"
|
|
|
|
#ifdef CMAKE_USE_SYSTEM_LIBUV
|
2018-06-01 13:53:41 +00:00
|
|
|
# include <uv.h>
|
2016-08-16 21:01:23 +00:00
|
|
|
#else
|
2018-06-01 13:53:41 +00:00
|
|
|
# include <cmlibuv/include/uv.h>
|
2016-08-16 21:01:23 +00:00
|
|
|
#endif
|
2016-08-16 20:26:39 +00:00
|
|
|
|
|
|
|
#endif
|