diff options
author | bonmas14 <bonmas14@gmail.com> | 2025-08-23 01:28:41 +0300 |
---|---|---|
committer | bonmas14 <bonmas14@gmail.com> | 2025-08-23 01:28:41 +0300 |
commit | 8ebdc95621bc61fdf3c98cd7ae4ddca67398df23 (patch) | |
tree | 205413ed09ac001e37267889d429a363c37008f2 /USAGE.md | |
parent | c96c355b360f18f982459e1a866dcbf5864efdb8 (diff) | |
download | ungrateful-8ebdc95621bc61fdf3c98cd7ae4ddca67398df23.tar.gz ungrateful-8ebdc95621bc61fdf3c98cd7ae4ddca67398df23.zip |
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 ``` |