From 4f986ec6431b6f3f8c951c70a02300d552cd8e02 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 7 Jan 2020 22:10:14 +0300 Subject: Add implementation --- libz/tests/minigzip/buildfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 libz/tests/minigzip/buildfile (limited to 'libz/tests/minigzip/buildfile') diff --git a/libz/tests/minigzip/buildfile b/libz/tests/minigzip/buildfile new file mode 100644 index 0000000..4f9e780 --- /dev/null +++ b/libz/tests/minigzip/buildfile @@ -0,0 +1,14 @@ +# file : tests/minigzip/buildfile +# copyright : Copyright (c) 2016-2019 Code Synthesis Ltd +# license : zlib License; see accompanying LICENSE file + +import libs = libz%lib{z} + +exe{driver}: {h c}{*} $libs testscript + +# Disable MSVC warnings that pop up with /W3 and Clang/MSVC warnings. +# +if ($c.class == 'msvc') + c.coptions += /wd4267 /wd4996 +elif ($c.id == 'clang' && $c.target.system == 'win32-msvc') + c.coptions += -Wno-deprecated-declarations -- cgit v1.1