diff --git a/CMakeLists.txt b/CMakeLists.txt
index a904d862abe177542975c5f59476af1e326c91a6..820e4f8f938bec8afb71ab7dad27098587c70570 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1278,6 +1278,13 @@ if (LWS_WITH_STATIC)
 		      COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/include/libwebsockets.h
 		     					 ${CMAKE_CURRENT_BINARY_DIR}/include/libwebsockets.h
 	)
+
+	add_custom_command(
+		      TARGET websockets
+		      COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_CURRENT_SOURCE_DIR}/include/libwebsockets/
+									${CMAKE_CURRENT_BINARY_DIR}/include/libwebsockets
+	)
+
 	add_custom_command(
 		      TARGET websockets
 		      COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/lws_config.h
@@ -1318,6 +1325,13 @@ if (LWS_WITH_SHARED)
 		      COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/include/libwebsockets.h
 		     					 ${CMAKE_CURRENT_BINARY_DIR}/include/libwebsockets.h
 	)
+
+	add_custom_command(
+		      TARGET websockets
+		      COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_CURRENT_SOURCE_DIR}/include/libwebsockets
+									${CMAKE_CURRENT_BINARY_DIR}/include/libwebsockets
+	)
+
 	add_custom_command(
 		      TARGET websockets_shared
 		      COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/lws_config.h
diff --git a/READMEs/README.coding.md b/READMEs/README.coding.md
index a94e777b8a90d7e02242f643811ab7d66ec02a53..23f5c97ad55d1583596656ead49150771f02b507 100644
--- a/READMEs/README.coding.md
+++ b/READMEs/README.coding.md
@@ -305,8 +305,7 @@ Clients with limited storage and RAM will find this useful; the memory needed
 for the inflate case is constrained so that only one input buffer at a time
 is ever in memory.
 
-To use this feature, ensure LWS_WITH_ZIP_FOPS is enabled at CMake (it is by
-default).
+To use this feature, ensure LWS_WITH_ZIP_FOPS is enabled at CMake.
 
 `libwebsockets-test-server-v2.0` includes a mount using this technology
 already, run that test server and navigate to http://localhost:7681/ziptest/candide.html