2020-11-22 22:44:21 +00:00
|
|
|
# Build application with GUI (tray, main window)
|
|
|
|
USE_WIN32_APP := yes
|
|
|
|
|
2018-07-20 19:55:41 +00:00
|
|
|
WINDRES = windres
|
2020-11-22 22:44:21 +00:00
|
|
|
|
2022-05-31 18:59:14 +00:00
|
|
|
CXXFLAGS := $(CXX_DEBUG) -fPIC -msse
|
2023-02-26 20:38:23 +00:00
|
|
|
INCFLAGS := -I$(DAEMON_SRC_DIR) -IWin32
|
2021-08-04 04:03:54 +00:00
|
|
|
LDFLAGS := ${LD_DEBUG} -static
|
2018-07-20 19:55:41 +00:00
|
|
|
|
2023-02-26 20:38:23 +00:00
|
|
|
NEEDED_CXXFLAGS += -std=c++17
|
|
|
|
DEFINES += -DWIN32_LEAN_AND_MEAN
|
2020-05-14 18:52:33 +00:00
|
|
|
|
2018-12-14 06:29:41 +00:00
|
|
|
# Boost libraries suffix
|
|
|
|
BOOST_SUFFIX = -mt
|
|
|
|
|
2018-07-20 19:55:41 +00:00
|
|
|
# UPNP Support
|
|
|
|
ifeq ($(USE_UPNP),yes)
|
2023-02-26 20:38:23 +00:00
|
|
|
DEFINES += -DUSE_UPNP -DMINIUPNP_STATICLIB
|
2018-07-20 19:55:41 +00:00
|
|
|
LDLIBS = -lminiupnpc
|
|
|
|
endif
|
|
|
|
|
|
|
|
LDLIBS += \
|
2018-12-14 18:44:38 +00:00
|
|
|
-lboost_system$(BOOST_SUFFIX) \
|
|
|
|
-lboost_date_time$(BOOST_SUFFIX) \
|
|
|
|
-lboost_filesystem$(BOOST_SUFFIX) \
|
|
|
|
-lboost_program_options$(BOOST_SUFFIX) \
|
2018-07-20 19:55:41 +00:00
|
|
|
-lssl \
|
|
|
|
-lcrypto \
|
|
|
|
-lz \
|
|
|
|
-lwsock32 \
|
|
|
|
-lws2_32 \
|
|
|
|
-lgdi32 \
|
|
|
|
-liphlpapi \
|
2020-04-12 02:25:22 +00:00
|
|
|
-lole32 \
|
|
|
|
-luuid \
|
2018-07-20 19:55:41 +00:00
|
|
|
-lpthread
|
|
|
|
|
|
|
|
ifeq ($(USE_WIN32_APP), yes)
|
2023-02-26 20:38:23 +00:00
|
|
|
DEFINES += -DWIN32_APP
|
2018-07-20 19:55:41 +00:00
|
|
|
LDFLAGS += -mwindows
|
|
|
|
DAEMON_RC += Win32/Resource.rc
|
|
|
|
DAEMON_OBJS += $(patsubst %.rc,obj/%.o,$(DAEMON_RC))
|
|
|
|
endif
|
|
|
|
|
2019-11-19 10:50:16 +00:00
|
|
|
ifeq ($(USE_WINXP_FLAGS), yes)
|
2023-02-26 20:38:23 +00:00
|
|
|
DEFINES += -DWINVER=0x0501 -D_WIN32_WINNT=0x0501
|
2019-11-19 10:50:16 +00:00
|
|
|
endif
|
|
|
|
|
2020-11-14 22:31:20 +00:00
|
|
|
ifeq ($(USE_AESNI),yes)
|
2023-02-26 20:38:23 +00:00
|
|
|
NEEDED_CXXFLAGS += -maes
|
|
|
|
DEFINES += -D__AES__
|
2018-07-20 19:55:41 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(USE_ASLR),yes)
|
|
|
|
LDFLAGS += -Wl,--nxcompat -Wl,--high-entropy-va -Wl,--dynamicbase,--export-all-symbols
|
|
|
|
endif
|
|
|
|
|
2021-08-06 22:38:35 +00:00
|
|
|
obj/%.o : %.rc | mk_obj_dir
|
2023-02-26 20:38:23 +00:00
|
|
|
$(WINDRES) $(DEFINES) $(INCFLAGS) --preprocessor-arg=-MMD --preprocessor-arg=-MP --preprocessor-arg=-MF$@.d -i $< -o $@
|