aboutsummaryrefslogtreecommitdiff
path: root/USAGE.md
diff options
context:
space:
mode:
authorbonmas14 <bonmas14@gmail.com>2025-08-23 01:28:41 +0300
committerbonmas14 <bonmas14@gmail.com>2025-08-23 01:28:41 +0300
commit8ebdc95621bc61fdf3c98cd7ae4ddca67398df23 (patch)
tree205413ed09ac001e37267889d429a363c37008f2 /USAGE.md
parentc96c355b360f18f982459e1a866dcbf5864efdb8 (diff)
downloadungrateful-8ebdc95621bc61fdf3c98cd7ae4ddca67398df23.tar.gz
ungrateful-8ebdc95621bc61fdf3c98cd7ae4ddca67398df23.zip
Ungrateful changes, added more stuffHEADmain
Diffstat (limited to 'USAGE.md')
-rw-r--r--USAGE.md22
1 files changed, 19 insertions, 3 deletions
diff --git a/USAGE.md b/USAGE.md
index 706b9c3..bc06f69 100644
--- a/USAGE.md
+++ b/USAGE.md
@@ -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
```