]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/build/test/toolset_msvc.py
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / tools / build / test / toolset_msvc.py
1 #!/usr/bin/python
2 #
3 # Copyright 2022 Nikita Kniazev
4 #
5 # Distributed under the Boost Software License, Version 1.0.
6 # (See accompanying file LICENSE.txt or copy at
7 # https://www.bfgroup.xyz/b2/LICENSE.txt)
8
9 from TestToolset import test_toolset
10
11 test_toolset("msvc", "14.3", [
12 ["target-os=windows"],
13 ["target-os=windows", "release"],
14 ["target-os=windows", "threading=single"],
15 ["target-os=windows", "link=static"],
16 ["target-os=windows", "link=static", "runtime-link=static"],
17 ["target-os=windows", "windows-api=store"],
18 ["target-os=windows", "windows-api=phone"],
19 ])