From e1d1404ff73a824b91f626b0b6c80c603a45568f Mon Sep 17 00:00:00 2001 From: eidheim Date: Wed, 3 Jul 2019 20:25:13 +0200 Subject: [PATCH] Fixes #268 : Added mutex.hpp to cmake's install function --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c60b032..d2c353b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -73,7 +73,7 @@ if("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_CURRENT_SOURCE_DIR}") set(BUILD_TESTING ON) - install(FILES asio_compatibility.hpp server_http.hpp client_http.hpp server_https.hpp client_https.hpp crypto.hpp utility.hpp status_code.hpp DESTINATION include/simple-web-server) + install(FILES asio_compatibility.hpp server_http.hpp client_http.hpp server_https.hpp client_https.hpp crypto.hpp utility.hpp status_code.hpp mutex.hpp DESTINATION include/simple-web-server) endif() if(BUILD_TESTING)