From 70778bfae065f08bd2ada09f363ef7789445d922 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanislav=20Angelovi=C4=8D?= Date: Thu, 29 Apr 2021 16:07:47 +0200 Subject: [PATCH] Add note on BUILD_SHARED_LIBS CMake flag to README --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 1f4dca7..5312daf 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,10 @@ $ sudo cmake --build . --target install This is a CMake-builtin option. Set to `Release` to build sdbus-c++ for production use. Set to `Debug` if you want to help further develop (and debug) the library :) +* `BUILD_SHARED_LIBS` [boolean] + + This is a global CMake flag, promoted in sdbus-c++ project to a CMake option. Use this to control whether sdbus-c++ is built as either a shared or static library. Default value: `ON`. + Dependencies ------------