mirror of
https://github.com/boostorg/build.git
synced 2026-02-01 20:32:17 +00:00
* build/targets.jam (project-target.reference-properties): Remove. * build/virtual-target.jam (abstract-file-target.specific-main-target, file-target.specific-main-target): Remove. [SVN r20516]
68 lines
1.4 KiB
Python
68 lines
1.4 KiB
Python
#!/usr/bin/python
|
|
|
|
from BoostBuild import Tester
|
|
t = Tester()
|
|
|
|
t.write("project-root.jam", "import gcc ;")
|
|
t.write("Jamfile", "lib a : a.cpp : <include>. ;")
|
|
t.write("a.cpp", """
|
|
#include <a.h>
|
|
void
|
|
# ifdef _WIN32
|
|
__declspec(dllexport)
|
|
# endif
|
|
foo() {}
|
|
""")
|
|
t.write("a.h", "")
|
|
|
|
t.write("d/Jamfile", "exe b : b.cpp ..//a ; ")
|
|
t.write("d/b.cpp", """
|
|
void foo();
|
|
int main() { foo(); }
|
|
""")
|
|
|
|
t.run_build_system(subdir="d")
|
|
|
|
# Now test the path features with condition work as well
|
|
t.write("Jamfile", "lib a : a.cpp : <variant>debug:<include>. ;")
|
|
t.rm("bin")
|
|
t.run_build_system(subdir="d")
|
|
|
|
# Test path features with condtion in usage requirements
|
|
t.write("Jamfile", "lib a : a.cpp : <include>. : : <variant>debug:<include>. ;")
|
|
t.write("d/b.cpp", """
|
|
#include <a.h>
|
|
void foo();
|
|
int main() { foo(); }
|
|
""")
|
|
t.rm("d/bin")
|
|
t.run_build_system(subdir="d")
|
|
|
|
# Test that absolute paths inside requirements are ok. The problem
|
|
# appear only when building targets in subprojects.
|
|
t.write("project-root.jam", "")
|
|
t.write("Jamfile", "build-project x ; ")
|
|
t.write("x/Jamfile", """
|
|
local pwd = [ PWD ] ;
|
|
project : requirements <include>$(pwd)/x/include ;
|
|
exe m : m.cpp : <include>$(pwd)/x/include2 ;
|
|
""")
|
|
t.write("x/m.cpp", """
|
|
#include <h1.hpp>
|
|
#include <h2.hpp>
|
|
|
|
int main() {}
|
|
""")
|
|
t.write("x/include/h1.hpp", "\n")
|
|
t.write("x/include2/h2.hpp", "\n")
|
|
|
|
t.run_build_system()
|
|
t.expect_addition("x/bin/$toolset/debug/m.exe")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
t.cleanup()
|