summaryrefslogtreecommitdiff
path: root/tools/build/v2/test/prebuilt/ext/jamfile3.jam
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build/v2/test/prebuilt/ext/jamfile3.jam')
-rw-r--r--tools/build/v2/test/prebuilt/ext/jamfile3.jam46
1 files changed, 46 insertions, 0 deletions
diff --git a/tools/build/v2/test/prebuilt/ext/jamfile3.jam b/tools/build/v2/test/prebuilt/ext/jamfile3.jam
new file mode 100644
index 0000000000..f172a89d08
--- /dev/null
+++ b/tools/build/v2/test/prebuilt/ext/jamfile3.jam
@@ -0,0 +1,46 @@
+
+# This Jamfile is the same as Jamfile2, except that
+# it tries to access prebuilt targets using absolute
+# paths. It used to be broken on Windows.
+
+import modules ;
+
+local dll-suffix = so ;
+local prefix = "" ;
+if [ modules.peek : OS ] in CYGWIN NT
+{
+ if [ MATCH ^(gcc) : $toolset ]
+ {
+ dll-suffix = dll ;
+ }
+ else
+ {
+ dll-suffix = lib ;
+ }
+}
+else
+{
+ prefix = "lib" ;
+}
+if [ MATCH ^(darwin) : $toolset ]
+{
+ dll-suffix = dylib ;
+}
+
+project ext ;
+
+# Assumed bjam was invoked from the project root
+local pwd = [ PWD ] ;
+
+lib a :
+ : <file>$(pwd)/ext/debug/$(prefix)a.$(dll-suffix) <variant>debug
+ :
+ : <include>debug
+ ;
+
+lib a :
+ : <file>$(pwd)/ext/release/$(prefix)a.$(dll-suffix) <variant>release
+ :
+ : <include>release
+ ;
+