From 9081dc55734b0ced7e00a94d904ffc6d014706ce Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 16 Apr 2017 21:02:07 +0300 Subject: [PATCH] Add lwm_win32_cs_test --- test/Jamfile.v2 | 2 ++ test/lwm_win32_cs_test.cpp | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 test/lwm_win32_cs_test.cpp diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 528fe06..2c82726 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -208,5 +208,7 @@ import testing ; [ run sp_nothrow_test.cpp ] [ compile make_shared_msvc_test.cpp ] + + [ compile lwm_win32_cs_test.cpp ] ; } diff --git a/test/lwm_win32_cs_test.cpp b/test/lwm_win32_cs_test.cpp new file mode 100644 index 0000000..cd8be86 --- /dev/null +++ b/test/lwm_win32_cs_test.cpp @@ -0,0 +1,18 @@ +// +// lwm_win32_cs_test.cpp +// +// Copyright 2017 Peter Dimov +// +// Distributed under the Boost Software License, Version 1.0. (See +// accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) +// + +#if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) +# include +# include +#endif + +int main() +{ +}