blob: 600bc0ed59a9cbd599b65f0eef1f12e020be7567 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#!/usr/bin/python
# Copyright 2003 Dave Abrahams
# Copyright 2002, 2003, 2004 Vladimir Prus
# 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)
# Test that we can specify a dependency property in project requirements, and
# that it will not cause every main target in the project to be generated in its
# own subdirectory.
# The whole test is somewhat moot now.
import BoostBuild
t = BoostBuild.Tester(use_test_config=False)
t.write("jamroot.jam", "build-project src ;")
t.write("lib/jamfile.jam", "lib lib1 : lib1.cpp ;")
t.write("lib/lib1.cpp", """
#ifdef _WIN32
__declspec(dllexport)
#endif
void foo() {}\n
""")
t.write("src/jamfile.jam", """
project : requirements <library>../lib//lib1 ;
exe a : a.cpp ;
exe b : b.cpp ;
""")
t.write("src/a.cpp", """
#ifdef _WIN32
__declspec(dllimport)
#endif
void foo();
int main() { foo(); }
""")
t.copy("src/a.cpp", "src/b.cpp")
t.run_build_system()
# Test that there is no "main-target-a" part.
# t.expect_addition("src/bin/$toolset/debug*/a.exe")
# t.expect_addition("src/bin/$toolset/debug*/b.exe")
t.cleanup()
|