2022-01-12 10:54:39 +03:00
2022-01-12 10:54:39 +03:00
2021-01-05 13:04:05 +03:00
2018-08-11 18:25:17 +03:00
2021-02-20 12:29:16 +03:00
2021-04-01 13:48:24 +03:00
2021-07-28 13:29:33 +03:00
2022-01-11 10:17:29 +03:00
2022-01-11 10:59:45 +03:00
2022-01-11 10:17:29 +03:00
2022-01-11 10:17:29 +03:00
2021-04-17 00:11:55 +03:00
2019-04-02 18:12:01 +03:00
2021-07-14 16:40:55 +03:00
2021-07-28 13:23:50 +03:00
2021-07-26 13:17:06 +03:00
2022-01-10 20:36:41 +03:00
2022-01-11 10:17:29 +03:00
2018-08-11 18:11:48 +03:00
2021-05-05 15:44:21 +03:00
2021-05-05 15:44:21 +03:00
2021-07-27 17:24:43 +03:00
2022-01-08 12:23:46 +03:00
2022-01-08 12:23:46 +03:00
2020-04-19 13:04:33 +03:00
2021-01-05 13:04:05 +03:00
2021-04-07 13:24:30 +03:00
2021-11-06 20:10:49 +03:00
2021-01-05 13:04:05 +03:00
2021-07-28 13:17:26 +03:00
2018-08-11 18:25:17 +03:00

QuasarAppLib

Global functions used in applications QuasarApp. This lib include include next modules:

  • Locales - This module use for parse local files. This module allows you to work with translations.
  • Params - This module use for parese app params and create log.
  • Settings - This is a module that allows you to work with application settings.
  • Global - This module contains other global functions.

Build

Include

The cmake build do not required Qt libraries.

  • cd yourRepo
  • git submodule add https://github.com/QuasarApp/QuasarAppLib.git # add the repository of QtBigInt into your repo like submodule
  • git submodule update --init --recursive
  • Include in your CMakeLists.txt file the main CMakeLists.txt file of QuasarAppLib library

add_subdirectory(QuasarAppLib)

  • Rebuild yuor project
add_subdirectory(QuasarAppLib)
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 :

set(BUILD_SHARED_LIBS ON)
add_subdirectory(QuasarAppLib)
target_link_libraries(MyBinary PUBLIC QuasarApp)

Usage

#include <quasarapp.h>

if (!QuasarAppUtils::Params::parseParams(argc, argv)) {
    QuasarAppUtils::Params::log("Warning message", QuasarAppUtils::Warning);
    QuasarAppUtils::Params::showHelp();
    exit(0);
}
Description
No description provided
Readme 1,005 KiB
Languages
C++ 97.9%
CMake 1.8%
C 0.3%