-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoxywrite-example.cfg
More file actions
88 lines (75 loc) · 1.99 KB
/
doxywrite-example.cfg
File metadata and controls
88 lines (75 loc) · 1.99 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# .doxywrite.cfg
#
# -*- Shell-Unix-Generic -*-
#
# Config file for .doxywrite script for generating a docset (with doxygen) for
# an Xcode project target.
#
# docset project name
#
# Project name is pulled from Xcode environment variables if Doxywrite is run
# with the -x flag. Override the value here.
#
# DOCSET_PROJECT_NAME="MyProject"
# docset bundle id
#
# A reverse domain-name style string that should uniquely identify the
# documentation set bundle. e.g. com.yourdomain.MyProject
#
DOCSET_BUNDLE_ID="com.yourdomain.MyProject"
# docset publisher name
#
# A reverse domain-name style string that should uniquely identify the
# documentation publisher. e.g. com.yourdomain.MyProject
#
DOCSET_PUBLISHER_ID="com.yourdomain.MyProject"
# docset publisher name
#
# A string that identifies the documentation publisher.
#
# Default is "Publisher."
#
DOCSET_PUBLISHER_NAME="Publisher"
# docset main page
#
# Name of a markdown file that will be placed on the main page (index.html).
#
# Default is "README.md"
#
#DOCSET_PAGE_MAIN="README.md"
# PATHs
# Directory to search for documentable source code files.
# PATH_SEARCH="${PATH_ROOT}"
# PATH_MKDIR="/bin/mkdir"
# PATH_SED="/usr/bin/sed"
# PATH_MAKE="/usr/bin/make"
# PATH_CP="/bin/cp"
# PATH_RM="/bin/rm"
# Install doxygen via homebrew...
#
# >brew install doxygen
#
#PATH_DOXYGEN="/usr/local/bin/doxygen"
# Generate class diagrams with dot (part of graphviz)
#
# >brew install graphviz
#
#PATH_GRAPHVIZ_DOT="/usr/local/bin/dot"
# Install gnu grep via homebrew... (this will not symlink for you)
#
# >brew tap homebrew/dupes
# >brew install homebrew/dupes/grep
#
# This will install the new grep as "ggrep" to avoid any conflicts with the BSD
# version of grep native to OSX.
#
#PATH_GREP=/usr/local/bin/ggrep
# Install gnu sed via homebrew... (this will not symlink for you)
#
# >brew tap homebrew/dupes
# >brew install gnu-sed
#
# This will install the new sed as "gsed" to avoid any conflicts with the BSD
# version of sed native to OSX.
#
#PATH_SED="/usr/local/bin/gsed"