diff options
author | John Ankarström <john@ankarstrom.se> | 2022-09-02 23:51:40 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-09-02 23:51:40 +0200 |
commit | 00447478cd1d0d64752114df49fee5ee8bdcedbe (patch) | |
tree | ca1168b19ab977c1857d3a3e341a3e80b33cc6d3 /README | |
parent | ff9ba3f6e60fa30f52dd94e48214be5e1be1b28a (diff) | |
download | EpisodeBrowser-00447478cd1d0d64752114df49fee5ee8bdcedbe.tar.gz |
Add Act.
Diffstat (limited to 'README')
-rw-r--r-- | README | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -60,7 +60,7 @@ To build Episode Browser, the following programs are required: Furthermore, the following dependencies are required: - - libxml2 (included with MSYS GCC) + - libxml2 (included with MSYS GCC, downloaded separately for MSVC) You may need to manually provide library and header file directories in c/CMakeLists.txt. @@ -69,7 +69,9 @@ Episode Browse may be built by issuing `make' from the root directory. The build process is controlled by a few environment variables: - SYSTEM = vs2019 (default) or mingw - - CONFIG = Debug (default) or Release + - VS_CONFIG = Debug (default) or Release + - VS_TOOLSET = v142 (default), v141_xp (for Windows XP support) + - VS_PLATFORM = x64 (default) or Win32 (32-bit x86) Hacking ~~~~~~~ @@ -98,3 +100,5 @@ without NUL, `len' is used. While specific Hungarian prefixes are unnecessary for most variables, "natural" word order should be avoided. In other words, lenString is preferred over stringLen, because it mirrors vString. + +Hungarian notation should not be used for type names. |