📄 core_import_module.py
字号:
#!/usr/bin/python# Copyright 2003 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)import BoostBuildt = BoostBuild.Tester(pass_toolset=0)t.write("code", """module a{ rule r1 ( ) { ECHO R1 ; }}module a2{ rule r2 ( ) { ECHO R2 ; }}IMPORT a2 : r2 : : a2.r2 ;module b{ IMPORT_MODULE a : b ; rule test { # Call rule visible via IMPORT_MODULE a.r1 ; # Call rule in global scope a2.r2 ; }}IMPORT b : test : : test ;test ;module c{ rule test { ECHO CTEST ; }}IMPORT_MODULE c : ;c.test ;actions do-nothing { }do-nothing all ;""")t.run_build_system("-fcode", stdout="""R1R2CTEST""")t.cleanup()
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -