⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 project_dependencies.py

📁 Boost provides free peer-reviewed portable C++ source libraries. We emphasize libraries that work
💻 PY
字号:
#!/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 BoostBuildt = BoostBuild.Tester()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)#endifvoid 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)#endifvoid 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()

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -