Skip to content

Commit

Permalink
Documentation for commit 0b63c9e8dd63e640998ab587ae9c642eccf3b2c9
Browse files Browse the repository at this point in the history
  • Loading branch information
PointCloudLibrary (via Azure Pipelines) committed Jun 2, 2020
0 parents commit c73bdf0
Show file tree
Hide file tree
Showing 19,003 changed files with 3,264,889 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
260 changes: 260 additions & 0 deletions 2d_2include_2pcl_22d_2convolution_8h_source.html

Large diffs are not rendered by default.

223 changes: 223 additions & 0 deletions 2d_2include_2pcl_22d_2impl_2convolution_8hpp_source.html

Large diffs are not rendered by default.

346 changes: 346 additions & 0 deletions 2d_2include_2pcl_22d_2impl_2keypoint_8hpp_source.html

Large diffs are not rendered by default.

171 changes: 171 additions & 0 deletions 2d_2include_2pcl_22d_2keypoint_8h_source.html

Large diffs are not rendered by default.

362 changes: 362 additions & 0 deletions 3dsc_8h_source.html

Large diffs are not rendered by default.

374 changes: 374 additions & 0 deletions 3dsc_8hpp_source.html

Large diffs are not rendered by default.

23 changes: 23 additions & 0 deletions Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleName</key>
<string>Point Cloud Library (PCL)</string>
<key>CFBundleIdentifier</key>
<string>pointclouds.org</string>
<key>CFBundleVersion</key>
<string>1.11.0-dev</string>
<key>DocSetFeedName</key>
<string>Doxygen generated docs</string>
<key>DocSetPublisherIdentifier</key>
<string>pointclouds.org.Publisher</string>
<key>DocSetPublisherName</key>
<string>PointCloudLibrary(PCL)DevelopmentTeam</string>
<key>DashDocSetFamily</key>
<string>doxy</string>
<key>DocSetPlatformFamily</key>
<string>doxygen</string>
</dict>
</plist>
38 changes: 38 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
DOCSET_NAME=pointclouds.org.docset
DOCSET_CONTENTS=$(DOCSET_NAME)/Contents
DOCSET_RESOURCES=$(DOCSET_CONTENTS)/Resources
DOCSET_DOCUMENTS=$(DOCSET_RESOURCES)/Documents
DESTDIR=~/Library/Developer/Shared/Documentation/DocSets
XCODE_INSTALL="$(shell xcode-select -print-path)"

all: docset

docset:
mkdir -p $(DOCSET_DOCUMENTS)
cp Nodes.xml $(DOCSET_RESOURCES)
cp Tokens.xml $(DOCSET_RESOURCES)
cp Info.plist $(DOCSET_CONTENTS)
tar --exclude $(DOCSET_NAME) \
--exclude Nodes.xml \
--exclude Tokens.xml \
--exclude Info.plist \
--exclude Makefile -c -f - . \
| (cd $(DOCSET_DOCUMENTS); tar xvf -)
$(XCODE_INSTALL)/usr/bin/docsetutil index $(DOCSET_NAME)
rm -f $(DOCSET_DOCUMENTS)/Nodes.xml
rm -f $(DOCSET_DOCUMENTS)/Info.plist
rm -f $(DOCSET_DOCUMENTS)/Makefile
rm -f $(DOCSET_RESOURCES)/Nodes.xml
rm -f $(DOCSET_RESOURCES)/Tokens.xml

clean:
rm -rf $(DOCSET_NAME)

install: docset
mkdir -p $(DESTDIR)
cp -R $(DOCSET_NAME) $(DESTDIR)

uninstall:
rm -rf $(DESTDIR)/$(DOCSET_NAME)

always:
Loading

0 comments on commit c73bdf0

Please sign in to comment.