From 11947d4cde9587947dbe4c8602883c05adc5e705 Mon Sep 17 00:00:00 2001 From: EndrII <EndrIIMail@gmail.com> Date: Wed, 25 May 2022 18:08:51 +0300 Subject: [PATCH] fix docs --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index b538c4c..0b40b17 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,15 @@ This lib include include next modules: * make -j8 * make test #(for testing) + +### Available build options: + +```cmake +option(QA_ASSERT_ON_WARN "Enable for add assert to every warning message" OFF) +option(QA_ASSERT_ON_ERROR "Enable for add assert to every error message" OFF) +option(QA_ALLOW_NOT_SUPPORTED_OPTIONS "Enable for allow any command line options" ON) +``` + ## Include #### The cmake build do not required Qt libraries. @@ -35,6 +44,7 @@ target_link_libraries(MyBinary PUBLIC QuasarApp) ``` ### Note + By Default QuasarAppLib makes as a static library. If you want to create a shared library just add the BUILD_SHARED_LIBS into your main CMakeLists.txt file. Example :