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() +{ +}