Skip to content

Commit decb2ed

Browse files
committed
try using openssl that is already installed on runner
1 parent c6bc756 commit decb2ed

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

windows/makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,18 @@ APP_RES = $(APP_NAME).res
2323

2424
CC = CL
2525
CFLAGS = /std:c++17 /W4 /MD /nologo /w44996 "/DAPP_NAME=\"$(APP_NAME)\"" "/DVERSION=\"$(VERSION)\"" "/DSUB_VERSION=\"$(SUB_VERSION)\""
26+
2627
LFLAGS = /link \
2728
/LIBPATH:..\external\sdl\build\lib \
29+
/LIBPATH:"C:\Program Files\OpenSSL\lib" \
2830
/ENTRY:mainCRTStartup
2931

3032
INCS = /I..\external\sdl\build\include \
3133
/I..\external\imgui \
3234
/I..\external\stb \
33-
/I..\shared
35+
/I..\.shared \
36+
/I"C:\Program Files\OpenSSL\include"
37+
3438
LIBS = user32.lib \
3539
SDL2.lib \
3640
SDL2main.lib \

0 commit comments

Comments
 (0)