mirror of
https://github.com/boostorg/nowide.git
synced 2026-02-22 03:22:32 +00:00
31 lines
1.1 KiB
Plaintext
31 lines
1.1 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
|
|
|
|
import testing ;
|
|
|
|
project : requirements
|
|
<warnings>pedantic
|
|
<warnings-as-errors>on ;
|
|
|
|
lib shell32 ;
|
|
|
|
run test_codecvt.cpp ;
|
|
run test_convert.cpp ;
|
|
run test_env.cpp ;
|
|
run test_env.cpp : : : <define>BOOST_NOWIDE_TEST_INCLUDE_WINDOWS=1 : test_env_win ;
|
|
run test_fs.cpp : : : <library>/boost/filesystem//boost_filesystem/<warnings-as-errors>off : ;
|
|
run test_fstream.cpp ;
|
|
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 ;
|
|
run test_stdio.cpp ;
|
|
run test_system.cpp : "-n" : : <target-os>windows:<library>shell32 : test_system_n ;
|
|
run test_system.cpp : "-w" : : <target-os>windows:<library>shell32 : test_system_w ;
|
|
|
|
compile benchmark_fstream.cpp : <define>BOOST_NOWIDE_USE_WIN_FSTREAM=1 <library>/boost/chrono//boost_chrono/;
|