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

📄 boostbook-config.jam

📁 C++的一个好库。。。现在很流行
💻 JAM
字号:
#~ Copyright 2005 Rene Rivera.
#~ 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)

# Automatic configuration for BoostBook tools. To use, just import this module.

import os ;
import toolset : using ;

local docbook_xsl-path = [ modules.peek : DOCBOOK_XSL_DIR ] ;
local docbook_dtd-path = [ modules.peek : DOCBOOK_DTD_DIR ] ;
local boostbook-path = [ modules.peek : BOOSTBOOK_DIR ] ;
if [ os.name ] = NT
{
    local boost-dir = ;
    for local R in cvs 1.33.0
    {
        boost-dir += [ W32_GETREG
            "HKEY_LOCAL_MACHINE\\SOFTWARE\\Boost.org\\$(R)"
            : "InstallRoot" ] ;
    }
    docbook_xsl-path ?= [ GLOB "$(boost-dir)\\share" "\\Boost\\share" : docbook-xsl* ] ;
    docbook_xsl-path = $(docbook_xsl-path[1]) ;
    docbook_dtd-path ?= [ GLOB "$(boost-dir)\\share" "\\Boost\\share" : docbook-xml* ] ;
    docbook_dtd-path = $(docbook_dtd-path[1]) ;
    boostbook-path ?= [ GLOB "$(boost-dir)\\share" "\\Boost\\share" : boostbook* ] ;
    boostbook-path = $(boostbook-path[1]) ;
}
else
{
    docbook_xsl-path ?= [ GLOB "/usr/local/share" "/usr/share" "/opt/share" : docbook-xsl* ] ;
    docbook_xsl-path = $(docbook_xsl-path[1]) ;
    docbook_dtd-path ?= [ GLOB "/usr/local/share" "/usr/share" "/opt/share" : docbook-xml* ] ;
    docbook_dtd-path = $(docbook_dtd-path[1]) ;
    boostbook-path ?= [ GLOB "/usr/local/share" "/usr/share" "/opt/share" : boostbook* ] ;
    boostbook-path = $(boostbook-path[1]) ;
    
}
if $(docbook_xsl-path) && $(docbook_dtd-path) && $(boostbook-path)
{
    if --debug-configuration in [ modules.peek : ARGV ]
    {
        ECHO "notice:" using boostbook ":" $(docbook_xsl-path) ":" $(docbook_dtd-path) ":" $(boostbook-path) ;
    }
    using boostbook : $(docbook_xsl-path) : $(docbook_dtd-path) : $(boostbook-path) ;
}

⌨️ 快捷键说明

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