diff options
Diffstat (limited to 'USAGE.md')
-rw-r--r-- | USAGE.md | 22 |
1 files changed, 19 insertions, 3 deletions
@@ -12,16 +12,32 @@ It will create include folder and copy all of the headers, create lib folder and - Don't use *_internal.h files, as they are only for implementation and could add fun things as windows.h +# GCC + +Basically after running `build.sh` just compile your code with adding link path and include path. + +## Arch + +``` +sudo pacman -S base-devel +``` + +## Debian + +``` +sudo pacman -S build-essentials +``` + # MSVC -Here are warnings you should disable: +Note: Tested on VS2022 with compiler 19.39.33523 +Disable these warnings: ``` -/wd4244 +/wd4244 /wd5105 ``` Also here are defines: - ``` /D _CRT_SECURE_NO_WARNINGS /D _UNICODE /D UNICODE ``` |