CMake/Tests/FindLibUV/Test/main.c
Brad King e56aa46297 FindLibUV: Add module to find libuv package
Add it to a private source directory that is not installed so that we
can use it for building CMake itself.  This will allow it to mature
before being distributed publicly.
2016-08-31 09:05:14 -04:00

8 lines
80 B
C

#include <uv.h>
int main()
{
uv_loop_close(uv_default_loop());
return 0;
}