mirror of
https://github.com/reactos/CMake.git
synced 2024-12-04 09:54:15 +00:00
e56aa46297
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;
|
|
}
|