Update how_to_build_win.md

This commit is contained in:
Tom 2021-02-10 21:33:16 -05:00 committed by GitHub
parent f41c78b179
commit 792a0fef6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,13 +32,14 @@ This software can be built using Visual Studio 2015 or above and Qt 5.9 (later Q
- Clone the base repository. - Clone the base repository.
- Throughout the explanation `$tahoma2d` will represent the root for the base repository. - Throughout the explanation `$tahoma2d` will represent the root for the base repository.
- Visual Studio cannot recognize UTF-8 without BOM source code properly. Furthermore, since the endline character is represented with only the LF character, one line comments in Japanese will often cause the following line to be treated as a comment by `MSVS` as well.
- In order to prevent this, please change the following setting in git so that it will preserve the proper endline characters:
- `git config core.safecrlf true`
### lib and dll ### lib and dll
- `lib` and `dll` files are tracked by [Git Large File Storage](https://git-lfs.github.com/). - `lib` and `dll` files are tracked by [Git Large File Storage](https://git-lfs.github.com/).
- Note: git-lfs is also installed with Github Desktop. - Note: git-lfs is also installed with Github Desktop.
- Visual Studio cannot recognize UTF-8 without BOM source code properly. Furthermore, since the endline character is represented with only the LF character, one line comments in Japanese will often cause the following line to be treated as a comment by `MSVS` as well.
- In order to prevent this, please change the following setting in git so that it will preserve the proper endline characters:
- `git config core.safecrlf true`
- Execute `git lfs pull` after `git clone` by using the lfs client. - Execute `git lfs pull` after `git clone` by using the lfs client.
### Using CMake to Create a Visual Studio Project ### Using CMake to Create a Visual Studio Project