4
0
mirror of https://github.com/QuasarApp/QuasarAppLib.git synced 2025-04-30 11:44:40 +00:00

Update README.md

This commit is contained in:
Andrei Yankovich 2021-05-01 11:34:40 +03:00 committed by GitHub
parent f5a8f4de82
commit f9d81280c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -32,7 +32,7 @@ This lib include include next modules:
>> add_subdirectory(QuasarAppLib)
* Rebuild yuor project
``` cmake
```cmake
add_subdirectory(QuasarAppLib)
target_link_libraries(MyBinary PUBLIC QuasarApp)
```
@ -41,7 +41,7 @@ target_link_libraries(MyBinary PUBLIC QuasarApp)
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 :
``` cmake
```cmake
set(BUILD_SHARED_LIBS ON)
add_subdirectory(QuasarAppLib)
target_link_libraries(MyBinary PUBLIC QuasarApp)
@ -51,7 +51,7 @@ target_link_libraries(MyBinary PUBLIC QuasarApp)
# Usage
Create objects of the BigInt class, and do what you got to do!
``` cpp
```cpp
#include <quasarapp.h>
if (!QuasarAppUtils::Params::parseParams(argc, argv)) {