Make project compilable on Windows with LLVM/clang

This commit is contained in:
Phireh 2022-12-31 00:22:46 +01:00
commit 01993a93ed
14 changed files with 36073 additions and 0 deletions

3
build.bat Normal file
View file

@ -0,0 +1,3 @@
set CFLAGS=-Wall -Wextra -g -pedantic -fenable-matrix -Wno-gnu-zero-variadic-macro-arguments -I./include
set LIBS=-lWs2_32 -lole32 -lcomctl32 -lgdi32 -lcomdlg32 -luuid -lopengl32 glew32.lib glfw3dll.lib
clang %CFLAGS% %LIBS% main.c -o hexnando.exe