1
0
This repository has been archived on 2024-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Filonenko Michael 2426c98942 Add readme
2011-03-05 22:49:53 +02:00
CMakeLists.txt Initial commit 2011-03-05 22:37:24 +02:00
json.cpp Initial commit 2011-03-05 22:37:24 +02:00
json.h Initial commit 2011-03-05 22:37:24 +02:00
jsonparser.cpp Initial commit 2011-03-05 22:37:24 +02:00
qtjsonsettings.cpp Initial commit 2011-03-05 22:37:24 +02:00
qtjsonsettings.h Initial commit 2011-03-05 22:37:24 +02:00
qtjsonsettings.pri Initial commit 2011-03-05 22:37:24 +02:00
readme Add readme 2011-03-05 22:49:53 +02:00

QtJsonSettings class for storing application settings in JSON file. Inherits QSettings.


Download from gitorious
git clone --depth 1 http://git.gitorious.org/qtjsonsettings/qtjsonsettings.git

Using

CMake
Compiled as static library

add_subdirectory(~/projects/qtjsonsettings ${CMAKE_CURRENT_BINARY_DIR}/qtjsonsettings)
include_directories(~/projects/qtjsonsettings)    

target_link_libraries(${PROJECT_NAME} ${QT_LIBRARIES} 
  qtjsonsettings)

QMake
Included as sources

include(~/projects/qtjsonsetting/qtjsonsettings.pri)