From b0f259c3aa4ca619a6998184d16f9ab2daf5b5f4 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Sun, 4 Aug 2019 09:31:36 +0900 Subject: Updated documentation; bumped up requirements [skip ci] --- CONTRIBUTING.md | 12 ++++++++++-- README.md | 17 +++++++---------- 2 files changed, 17 insertions(+), 12 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index fb8ff436..a89b75c7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -153,7 +153,7 @@ you have to understand the way these files are produced and setup some additional tooling. The shortest possible procedure resembling the below text can be found in .travis.yml (our Travis CI configuration actually regenerates those files upon every build). As described below, -there are handy build targets for CMake; patches with the same targets +there is a handy build target for CMake; patches with a similar target for qmake are (you guessed it) very welcome. #### Why generate the code at all? @@ -196,7 +196,15 @@ GTAD uses the following three kinds of sources: 2. A configuration file, in our case it's lib/csapi/gtad.yaml - this one is common for the whole API. 3. Source code template files: lib/csapi/{{base}}.*.mustache - also common. -The mustache files have a templated (not in C++ sense) definition of a network job, deriving from BaseJob; each job class is prepended, if necessary, with data structure definitions used by this job. The look of those files is hideous for a newcomer; the fact that there's no highlighter for the combination of Mustache (originally a web templating language) and C++ doesn't help things, either. To slightly simplify things some more or less generic constructs are defined in gtad.yaml (see its "mustache:" section). Adventurous souls that would like to figure what's going on in these files should speak up in the Quotient room - I (Kitsune) will be very glad to help you out. +The mustache files have a templated (not in C++ sense) definition of a network +job, deriving from BaseJob; each job class is prepended, if necessary, with +data structure definitions used by this job. The look of those files is hideous +for a newcomer; and the only known highlighter that can handle the combination +of Mustache (originally a web templating language) and C++ is provided in CLion. +To slightly simplify things some more or less generic constructs are defined +in gtad.yaml (see its "mustache:" section). Adventurous souls that would like +to figure what's going on in these files should speak up in the Quotient room - +I (Kitsune) will be very glad to help you out. The types map in `gtad.yaml` is the central switchboard when it comes to matching OpenAPI types with C++ (and Qt) ones. It uses the following type attributes aside from pretty obvious "imports:": * `avoidCopy` - this attribute defines whether a const ref should be used instead of a value. For basic types like int this is obviously unnecessary; but compound types like `QVector` should rather be taken by reference when possible. diff --git a/README.md b/README.md index 5568101b..cb78dfe0 100644 --- a/README.md +++ b/README.md @@ -35,21 +35,18 @@ on Windows or macOS, your best bet is to build the library from the source and bundle it with your application. In ### Pre-requisites -- A Linux, macOS or Windows system (desktop versions tried; Ubuntu Touch +- A recent Linux, macOS or Windows system (desktop versions tried; Ubuntu Touch is known to work; mobile Windows and iOS might work too but never tried) - - For Ubuntu flavours - zesty or later is good enough out of the box; - older ones will need PPAs at least for a newer Qt. In particular, - if you (still) have xenial and cannot upgrade to a newer release - you'll have to add Kubuntu Backports PPA for it. + - Recent enough Linux examples: Debian Jessy; Fedora 28; OpenSUSE 15; + Ubuntu Bionic. - Qt 5 (either Open Source or Commercial), 5.9 or higher. - A build configuration tool: - - CMake (from your package management system or + - CMake 3.5 or newer (from your package management system or [the official website](https://cmake.org/download/)) - or qmake (comes with Qt) -- A C++ toolchain with C++14 support - - GCC 5 (Windows, Linux, macOS), Clang 5 (Linux), Apple Clang 8.1 (macOS) - and Visual Studio 2017 (Windows) are the oldest officially supported; - Clang 3.8, GCC 4.9.2, VS 2015 may work but not actively maintained. +- A C++ toolchain with C++14 support: + - GCC 7 (Windows, Linux, macOS), Clang 6 (Linux), Apple Clang 10 (macOS) + and Visual Studio 2017 (Windows) are the oldest officially supported. - Any build system that works with CMake and/or qmake should be fine: GNU Make, ninja (any platform), NMake, jom (Windows) are known to work. -- cgit v1.2.3