diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-04-13 15:21:14 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-04-13 15:21:14 +0000 |
commit | 70c59a7e42e5091a96af2607730cef7a83d5bbbd (patch) | |
tree | 31b36d667edf5177358762988efd8963e23b0bf0 /LUFA/StudioIntegration | |
parent | 188dea87e3a58ecf4472a3259bf0011356556799 (diff) | |
download | lufa-70c59a7e42e5091a96af2607730cef7a83d5bbbd.tar.gz lufa-70c59a7e42e5091a96af2607730cef7a83d5bbbd.tar.bz2 lufa-70c59a7e42e5091a96af2607730cef7a83d5bbbd.zip |
Add Atmel Studio 6.1 binary blob.
Diffstat (limited to 'LUFA/StudioIntegration')
-rw-r--r-- | LUFA/StudioIntegration/Blob/LUFA.dll | bin | 0 -> 370176 bytes | |||
-rw-r--r-- | LUFA/StudioIntegration/Blob/LUFA.pkgdef | bin | 0 -> 1196 bytes | |||
-rw-r--r-- | LUFA/StudioIntegration/VSIX/[Content_Types].xml | 2 | ||||
-rw-r--r-- | LUFA/StudioIntegration/VSIX/extension.vsixmanifest | 1 | ||||
-rw-r--r-- | LUFA/StudioIntegration/makefile | 4 |
5 files changed, 6 insertions, 1 deletions
diff --git a/LUFA/StudioIntegration/Blob/LUFA.dll b/LUFA/StudioIntegration/Blob/LUFA.dll Binary files differnew file mode 100644 index 000000000..31cd0cc25 --- /dev/null +++ b/LUFA/StudioIntegration/Blob/LUFA.dll diff --git a/LUFA/StudioIntegration/Blob/LUFA.pkgdef b/LUFA/StudioIntegration/Blob/LUFA.pkgdef Binary files differnew file mode 100644 index 000000000..36ef7e3ff --- /dev/null +++ b/LUFA/StudioIntegration/Blob/LUFA.pkgdef diff --git a/LUFA/StudioIntegration/VSIX/[Content_Types].xml b/LUFA/StudioIntegration/VSIX/[Content_Types].xml index e54b61a81..98e45226f 100644 --- a/LUFA/StudioIntegration/VSIX/[Content_Types].xml +++ b/LUFA/StudioIntegration/VSIX/[Content_Types].xml @@ -5,4 +5,6 @@ <Default Extension="txt" ContentType="text/plain"/>
<Default Extension="xml" ContentType="text/xml"/>
<Default Extension="zip" ContentType="application/octet-stream"/>
+ <Default Extension="dll" ContentType="application/octet-stream" />
+ <Default Extension="pkgdef" ContentType="text/plain" />
</Types>
diff --git a/LUFA/StudioIntegration/VSIX/extension.vsixmanifest b/LUFA/StudioIntegration/VSIX/extension.vsixmanifest index 3054ab123..ed20c2ad3 100644 --- a/LUFA/StudioIntegration/VSIX/extension.vsixmanifest +++ b/LUFA/StudioIntegration/VSIX/extension.vsixmanifest @@ -25,6 +25,7 @@ <References/>
<Content>
+ <VsPackage>LUFA.pkgdef</VsPackage>
<CustomExtension Type="asf-manifest">asf-manifest.xml</CustomExtension>
</Content>
</Vsix>
diff --git a/LUFA/StudioIntegration/makefile b/LUFA/StudioIntegration/makefile index c47ddbe09..fe9f68166 100644 --- a/LUFA/StudioIntegration/makefile +++ b/LUFA/StudioIntegration/makefile @@ -79,11 +79,13 @@ generate_vsix: $(EXTENSION_OUTPUT_XML) $(MODULE_OUTPUT_XML) @cp $(LUFA_ROOT)/DoxygenPages/Images/LUFA.png $(LUFA_ROOT)/../Preview.png @cp $(LUFA_ROOT)/License.txt $(LUFA_ROOT)/../ @cp "VSIX/[Content_Types].xml" $(LUFA_ROOT)/../ + @cp "Blob/LUFA.dll" $(LUFA_ROOT)/../ + @cp "Blob/LUFA.pkgdef" $(LUFA_ROOT)/../ @xsltproc --stringparam extension-version "$(EXT_VERSION_NUM)" XSLT/lufa_vsmanifest_transform.xslt VSIX/extension.vsixmanifest > $(LUFA_ROOT)/../extension.vsixmanifest @xsltproc --stringparam lufa-version "$(LUFA_VERSION_NUM)" XSLT/lufa_asfmanifest_transform.xslt VSIX/asf-manifest.xml > $(LUFA_ROOT)/../asf-manifest.xml @echo "Generating Atmel Studio VSIX Extension file..." - @cd $(LUFA_ROOT)/../ && zip $(EXT_VSIX_NAME) -q -9 contents.zip exampleProjects.xml content.xml.cache License.txt Preview.png PreviewThumb.png "[Content_Types].xml" extension.vsixmanifest asf-manifest.xml extension.xml + @cd $(LUFA_ROOT)/../ && zip $(EXT_VSIX_NAME) -q -9 contents.zip exampleProjects.xml content.xml.cache License.txt Preview.png PreviewThumb.png "[Content_Types].xml" extension.vsixmanifest asf-manifest.xml extension.xml LUFA.dll LUFA.pkgdef @echo "Atmel Studio VSIX Extension file generated." check_filenames: $(MODULE_OUTPUT_XML) |