2016-09-27 22:01:08 +03: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 23:26:39 +03:00
|
|
|
#ifndef cm_uv_h
|
|
|
|
#define cm_uv_h
|
|
|
|
|
2016-08-17 00:01:23 +03:00
|
|
|
/* Use the libuv library configured for CMake. */
|
|
|
|
#include "cmThirdParty.h"
|
|
|
|
#ifdef CMAKE_USE_SYSTEM_LIBUV
|
|
|
|
#include <uv.h>
|
|
|
|
#else
|
2016-08-16 23:26:39 +03:00
|
|
|
#include <cmlibuv/include/uv.h>
|
2016-08-17 00:01:23 +03:00
|
|
|
#endif
|
2016-08-16 23:26:39 +03:00
|
|
|
|
|
|
|
#endif
|