Blame view

3rdparty/boost_1_81_0/libs/nowide/doc/Jamfile.v2 714 Bytes
73ef4ff3   Hu Chunming   提交三方库
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  # Copyright (C) 2019-2019 Alexander Grund
  #
  # Distributed under the Boost Software License, Version 1.0
  # https://www.boost.org/LICENSE_1_0.txt
  
  using doxygen ;
  import doxygen ;
  import path ;
  import os ;
  
  path-constant here : . ;
  
  .doxygen = [ doxygen.name ] ;
  .doxygen ?= doxygen ;
  
  local sources = [ path.glob-tree ../include/boost/nowide : *.hpp : detail ] main.dox changelog.dox ;
  
  make html : ./Doxyfile : @make-html : <dependency>$(sources) ;
  
  if [ os.name ] = NT
  {
      RMDIR = rmdir /s /q ;
  }
  else
  {
      RMDIR = rm -rf ;
  }
  
  actions make-html {
    cd $(here)
    $(RMDIR) html
    "$(.doxygen)"
  }
  
  alias reference : html ;
  
  alias boostdoc ;
  explicit boostdoc ;
  alias boostrelease : html ;
  explicit boostrelease ;