diff --git a/README-WIN32.html b/README-WIN32.html
deleted file mode 100644
index 15737c4..0000000
--- a/README-WIN32.html
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
- JSON-C - A JSON implementation in C - Win32 specific notes
-
-
-
- Windows specific notes for JSON-C
- Win32 Specific Changes:
-
- -
- Use json_config.h.win32 to define Windows specific differences.
- -
- Various functions have been redefined to their Win32 version (i.e. open
- on win32 is _open)
- -
- Implemented missing functions from MS's libc (i.e. vasprintf)
- -
- Added code to allow Win64 support without integer resizing issues, this
- probably makes it much nicer on 64bit machines everywhere (i.e. using ptrdiff_t
- for pointer math)
-
- This program is free software; you can redistribute it and/or modify it under
- the terms of the MIT License. See COPYING for details.
-
-
-
diff --git a/README.html b/README.html
index 0b951fd..d361569 100644
--- a/README.html
+++ b/README.html
@@ -16,8 +16,14 @@
Building
To setup JSON-C to build on your system please run configure and make.
- If you are on Win32 and are not using the VS project file, be sure
- to rename config.h.win32 to config.h before building.
+ If you are on Win32 cmake is required, generally:
+
+ - mkdir build
+ - cd build
+ - cmake ..
+ - msbuild "json-c.vcxproj" /m /verbosity:normal /p:OutDir=lib\
+ - Or, open the project in Visual Studio
+
Documentation
Doxygen generated documentation exists here