2
0
mirror of https://github.com/boostorg/build.git synced 2026-01-27 06:42:18 +00:00
Files
build/test/conditionals.py
Vladimir Prus ffdb657b30 Make conditionals.py work on NT/MinGW.
[SVN r16834]
2003-01-09 16:04:13 +00:00

29 lines
638 B
Python

#!/usr/bin/python
# Test conditional properties
from BoostBuild import Tester, List, exe_suffix
import os
from string import strip
t = Tester()
t.write("project-root.jam", "import gcc ;")
t.write("a.cpp", """
#ifdef STATIC
int main() {}
#endif
""")
t.write("Jamfile", "exe a : a.cpp : <link>static:<define>STATIC ;")
t.run_build_system("link=static")
t.expect_addition("bin/gcc/debug/link-static/main-target-a/a" + exe_suffix)
t.write("Jamfile", """
project : requirements <link>static:<define>STATIC ;
exe a : a.cpp ;
""")
t.run_build_system("link=static")
t.expect_addition("bin/gcc/debug/link-static/a" + exe_suffix)
t.cleanup()