We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6bc756 commit decb2edCopy full SHA for decb2ed
windows/makefile
@@ -23,14 +23,18 @@ APP_RES = $(APP_NAME).res
23
24
CC = CL
25
CFLAGS = /std:c++17 /W4 /MD /nologo /w44996 "/DAPP_NAME=\"$(APP_NAME)\"" "/DVERSION=\"$(VERSION)\"" "/DSUB_VERSION=\"$(SUB_VERSION)\""
26
+
27
LFLAGS = /link \
28
/LIBPATH:..\external\sdl\build\lib \
29
+ /LIBPATH:"C:\Program Files\OpenSSL\lib" \
30
/ENTRY:mainCRTStartup
31
32
INCS = /I..\external\sdl\build\include \
33
/I..\external\imgui \
34
/I..\external\stb \
- /I..\shared
35
+ /I..\.shared \
36
+ /I"C:\Program Files\OpenSSL\include"
37
38
LIBS = user32.lib \
39
SDL2.lib \
40
SDL2main.lib \
0 commit comments