Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ OPENSSL_LIB_DIR ?= C:/DiscordMessenger/openssl
$(info Discord Messenger makefile)
$(info Debug: $(DEBUG))
$(info Unicode: $(UNICODE))
$(info OpenSSL Include Path: $(OPENSSL_INC_DIR))
$(info OpenSSL Library Path: $(OPENSSL_LIB_DIR))

USER_INC_DIRS =
USER_DEFINES =
Expand All @@ -32,14 +34,14 @@ WR = windres

INC_DIRS = \
$(USER_INC_DIRS) \
-I$(OPENSSL_INC_DIR) \
-I"$(OPENSSL_INC_DIR)" \
-Ideps \
-Ideps/asio \
-Ideps/iprogsthreads/include \
-Ideps/mwas/include

LIB_DIRS = \
-L$(OPENSSL_LIB_DIR)
-L"$(OPENSSL_LIB_DIR)"

DEFINES = \
-DWINVER=$(WINVER) \
Expand Down