diff --git a/config/lib/Boost.cmake b/config/lib/Boost.cmake
new file mode 100644
index 0000000000000000000000000000000000000000..ab7ef9a8d77ee05968610bd6d64ea317aa0583c3
--- /dev/null
+++ b/config/lib/Boost.cmake
@@ -0,0 +1,14 @@
+set( BOOST_ROOT "C:/Tools/Boost/" CACHE PATH "Boost library path" )
+
+set(Boost_USE_STATIC_LIBS ON)
+set(Boost_USE_MULTITHREADED ON)
+set(Boost_USE_STATIC_RUNTIME OFF)
+
+find_package(Boost REQUIRED COMPONENTS filesystem)
+
+if (Boost_FOUND)
+    list(APPEND vkcv_includes ${Boost_INCLUDE_DIR})
+    list(APPEND vkcv_libraries ${Boost_LIBRARIES})
+
+    message(${vkcv_config_msg} " Boost  -   ")
+endif ()