2
0
mirror of https://github.com/boostorg/nowide.git synced 2026-01-19 04:22:12 +00:00
Files
nowide/test/Jamfile.v2
2019-12-03 00:42:19 +02:00

44 lines
1.6 KiB
Plaintext

# Boost Nowide Library test Jamfile
# Copyright Beman Dawes 2003, 2006, Artyom Beilis 2012
# Distributed under the Boost Software License, Version 1.0.
# See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt
# See library home page at http://www.boost.org/libs/nowide
project
#: requirements <library>/boost/nowide//boost_nowide
;
test-suite "nowide"
: [ run test_convert.cpp ]
[ run test_fstream.cpp ]
[ run test_stdio.cpp ]
[ run test_codecvt.cpp ]
[ run test_env.cpp : :
: <toolset>msvc:<linkflags>shell32.lib : test_env_proto ]
[ run test_env.cpp : :
: <toolset>msvc:<linkflags>shell32.lib <define>BOOST_NOWIDE_TEST_INCLUDE_WINDOWS=1 : test_env_with_native ]
[ run test_system.cpp : "-w" :
: <toolset>msvc:<linkflags>shell32.lib : test_system_w ]
[ run test_system.cpp : "-n" :
: <toolset>msvc:<linkflags>shell32.lib : test_system_n ]
[ run test_fs.cpp : :
: <library>/boost/filesystem//boost_filesystem
: test_fs ]
[ run test_iostream.cpp : :
: <library>/boost/nowide//boost_nowide
<link>static
: test_iostream_static ]
[ run test_iostream.cpp : :
: <library>/boost/nowide//boost_nowide
<link>shared
: test_iostream_shared ]
;