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.
8 lines
80 B
C
8 lines
80 B
C
#include <uv.h>
|
|
|
|
int main()
|
|
{
|
|
uv_loop_close(uv_default_loop());
|
|
return 0;
|
|
}
|