summaryrefslogtreecommitdiffstats
path: root/src/ms-gsl.mk
diff options
context:
space:
mode:
authorAndreas Röver <roever@users.sf.net>2021-02-04 19:39:32 (GMT)
committerTony Theodore <tonyt@logyst.com>2021-02-06 02:26:14 (GMT)
commitc06a91f8669039fc0ed4fb7833e76120c8190bbb (patch)
tree6e0b4d763edf584a83e40466f49bae002910ea47 /src/ms-gsl.mk
parent1f402a92595e2260c562e8a9a9c881d19be77178 (diff)
downloadmxe-c06a91f8669039fc0ed4fb7833e76120c8190bbb.zip
mxe-c06a91f8669039fc0ed4fb7833e76120c8190bbb.tar.gz
mxe-c06a91f8669039fc0ed4fb7833e76120c8190bbb.tar.bz2
add ms-gsl
add Microsoft c++ guideline support library
Diffstat (limited to 'src/ms-gsl.mk')
-rw-r--r--src/ms-gsl.mk17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/ms-gsl.mk b/src/ms-gsl.mk
new file mode 100644
index 0000000..731af82
--- /dev/null
+++ b/src/ms-gsl.mk
@@ -0,0 +1,17 @@
+# This file is part of MXE. See LICENSE.md for licensing information.
+
+PKG := ms-gsl
+$(PKG)_WEBSITE := https://github.com/microsoft/gsl
+$(PKG)_DESCR := guidelines support library
+$(PKG)_IGNORE :=
+$(PKG)_VERSION := 3.1.0
+$(PKG)_CHECKSUM := d3234d7f94cea4389e3ca70619b82e8fb4c2f33bb3a070799f1e18eef500a083
+$(PKG)_GH_CONF := microsoft/gsl/releases,v
+$(PKG)_DEPS := cc
+$(PKG)_SUBDIR := GSL-$($(PKG)_VERSION)
+
+define $(PKG)_BUILD
+ mkdir '$(1)/build'
+ cd '$1/build' && '$(TARGET)-cmake' -DGSL_TEST=0 ..
+ $(MAKE) -C '$(1)/build' -j $(JOBS) install
+endef