Skip to content

Commit c73bdf0

Browse files
author
PointCloudLibrary (via Azure Pipelines)
committed
Documentation for commit 0b63c9e8dd63e640998ab587ae9c642eccf3b2c9
0 parents  commit c73bdf0

File tree

19,003 files changed

+3264889
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

19,003 files changed

+3264889
-0
lines changed

2d_2include_2pcl_22d_2convolution_8h_source.html

Lines changed: 260 additions & 0 deletions
Large diffs are not rendered by default.

2d_2include_2pcl_22d_2impl_2convolution_8hpp_source.html

Lines changed: 223 additions & 0 deletions
Large diffs are not rendered by default.

2d_2include_2pcl_22d_2impl_2keypoint_8hpp_source.html

Lines changed: 346 additions & 0 deletions
Large diffs are not rendered by default.

2d_2include_2pcl_22d_2keypoint_8h_source.html

Lines changed: 171 additions & 0 deletions
Large diffs are not rendered by default.

3dsc_8h_source.html

Lines changed: 362 additions & 0 deletions
Large diffs are not rendered by default.

3dsc_8hpp_source.html

Lines changed: 374 additions & 0 deletions
Large diffs are not rendered by default.

Info.plist

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
3+
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
4+
<plist version="1.0">
5+
<dict>
6+
<key>CFBundleName</key>
7+
<string>Point Cloud Library (PCL)</string>
8+
<key>CFBundleIdentifier</key>
9+
<string>pointclouds.org</string>
10+
<key>CFBundleVersion</key>
11+
<string>1.11.0-dev</string>
12+
<key>DocSetFeedName</key>
13+
<string>Doxygen generated docs</string>
14+
<key>DocSetPublisherIdentifier</key>
15+
<string>pointclouds.org.Publisher</string>
16+
<key>DocSetPublisherName</key>
17+
<string>PointCloudLibrary(PCL)DevelopmentTeam</string>
18+
<key>DashDocSetFamily</key>
19+
<string>doxy</string>
20+
<key>DocSetPlatformFamily</key>
21+
<string>doxygen</string>
22+
</dict>
23+
</plist>

Makefile

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
DOCSET_NAME=pointclouds.org.docset
2+
DOCSET_CONTENTS=$(DOCSET_NAME)/Contents
3+
DOCSET_RESOURCES=$(DOCSET_CONTENTS)/Resources
4+
DOCSET_DOCUMENTS=$(DOCSET_RESOURCES)/Documents
5+
DESTDIR=~/Library/Developer/Shared/Documentation/DocSets
6+
XCODE_INSTALL="$(shell xcode-select -print-path)"
7+
8+
all: docset
9+
10+
docset:
11+
mkdir -p $(DOCSET_DOCUMENTS)
12+
cp Nodes.xml $(DOCSET_RESOURCES)
13+
cp Tokens.xml $(DOCSET_RESOURCES)
14+
cp Info.plist $(DOCSET_CONTENTS)
15+
tar --exclude $(DOCSET_NAME) \
16+
--exclude Nodes.xml \
17+
--exclude Tokens.xml \
18+
--exclude Info.plist \
19+
--exclude Makefile -c -f - . \
20+
| (cd $(DOCSET_DOCUMENTS); tar xvf -)
21+
$(XCODE_INSTALL)/usr/bin/docsetutil index $(DOCSET_NAME)
22+
rm -f $(DOCSET_DOCUMENTS)/Nodes.xml
23+
rm -f $(DOCSET_DOCUMENTS)/Info.plist
24+
rm -f $(DOCSET_DOCUMENTS)/Makefile
25+
rm -f $(DOCSET_RESOURCES)/Nodes.xml
26+
rm -f $(DOCSET_RESOURCES)/Tokens.xml
27+
28+
clean:
29+
rm -rf $(DOCSET_NAME)
30+
31+
install: docset
32+
mkdir -p $(DESTDIR)
33+
cp -R $(DOCSET_NAME) $(DESTDIR)
34+
35+
uninstall:
36+
rm -rf $(DESTDIR)/$(DOCSET_NAME)
37+
38+
always:

0 commit comments

Comments
 (0)