summaryrefslogtreecommitdiff
path: root/makefiles/nmake/platform.mk
diff options
context:
space:
mode:
Diffstat (limited to 'makefiles/nmake/platform.mk')
-rwxr-xr-xmakefiles/nmake/platform.mk27
1 files changed, 27 insertions, 0 deletions
diff --git a/makefiles/nmake/platform.mk b/makefiles/nmake/platform.mk
new file mode 100755
index 0000000..3a04b36
--- /dev/null
+++ b/makefiles/nmake/platform.mk
@@ -0,0 +1,27 @@
+# Sets Windows specific variables
+#
+# provides:
+# - OPENSSL_LIBS: libraries to link against for SSL/TLS support
+
+!INCLUDE $(TOPDIR)\makefiles\nmake\config.mk
+
+# OpenSSL
+#########
+
+!IFDEF WITH_SSL
+OPENSSL_LIBS = libeay32.lib ssleay32.lib
+!ENDIF
+
+# WIX Microsoft Installer (for deployment)
+##########################################
+
+CANDLE = "$(WIX_DIR)\bin\candle.exe"
+LIGHT = "$(WIX_DIR)\bin\light.exe"
+LIT = "$(WIX_DIR)\bin\lit.exe"
+SMOKE = "$(WIX_DIR)\bin\smoke.exe"
+SETUPBLD = "$(WIX_DIR)\bin\setupbld.exe"
+
+# XSLT processor
+################
+
+XSLTPROC = $(LIBXSLT_DIR)\bin\xsltproc.exe