• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#  (C) Copyright Gennadiy Rozental 2008-2014.
2#  Use, modification, and distribution are subject to the
3#  Boost Software License, Version 1.0. (See accompanying file
4#  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5#
6#  See http://www.boost.org/libs/test for the library home page.
7
8# Project
9project libs/test/tools/console_test_runner ;
10
11alias unit_test_framework
12    : # sources
13        /boost//unit_test_framework
14    ;
15
16alias test_runner_src
17    : # sources
18      src/console_test_runner.cpp
19      unit_test_framework
20    ;
21
22# make aliases explicit so the libraries will only be built when requested
23explicit unit_test_framework ;
24explicit test_runner_src ;
25
26lib dl ;
27
28lib test_runner_test : test/test_runner_test.cpp unit_test_framework ;
29
30exe console_test_runner
31    : test_runner_src
32      dl
33    ;
34
35exe console_test_runner
36    : test_runner_src
37    : <target-os>windows
38    ;
39