diff options
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. |