-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Documentation for commit 0b63c9e8dd63e640998ab587ae9c642eccf3b2c9
- Loading branch information
PointCloudLibrary (via Azure Pipelines)
committed
Jun 2, 2020
0 parents
commit c73bdf0
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.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
223 changes: 223 additions & 0 deletions
223
2d_2include_2pcl_22d_2impl_2convolution_8hpp_source.html
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
Oops, something went wrong.