|
| 1 | +# Create libraries for the Processing open source programming language and |
| 2 | +# environment (http://www.processing.org) |
| 3 | +# |
| 4 | +# Customize the build properties to make the ant-build-process work for your |
| 5 | +# environment. How? Please read the comments below. |
| 6 | +# |
| 7 | +# The default properties are set for OSX, for Windows-settings please refer to |
| 8 | +# comments made under (1) and (2). |
| 9 | + |
| 10 | + |
| 11 | + |
| 12 | +# (1) |
| 13 | +# Where is your Processing sketchbook located? |
| 14 | +# If you are not sure, check the sketchbook location in your Processing |
| 15 | +# application preferences. |
| 16 | +# ${user.home} points the compiler to your home directory. |
| 17 | +# For windows the default path to your sketchbook would be |
| 18 | +# ${user.home}/My Documents/Processing (make adjustments below). |
| 19 | + |
| 20 | +sketchbook.location=${user.home}/Documents/Processing |
| 21 | + |
| 22 | + |
| 23 | + |
| 24 | +# (2) |
| 25 | +# Where are the jar files located that are required for compiling your library |
| 26 | +# such as e.g. core.jar? |
| 27 | +# By default the local classpath location points to folder libs inside Eclipse's |
| 28 | +# workspace (by default found in your home directory). |
| 29 | +# For Windows the default path would be ${user.home}/workspace/libs (make |
| 30 | +# adjustments below). |
| 31 | + |
| 32 | +#classpath.local.location=${user.home}/Documents/workspace/libs |
| 33 | + |
| 34 | + |
| 35 | +# For OSX users. |
| 36 | +# The following path will direct you into Processing's application source code |
| 37 | +# folder in case you put Processing inside your Applications folder. |
| 38 | +# Uncommenting the line below will overwrite the classpath.local.location from |
| 39 | +# above. |
| 40 | + |
| 41 | +classpath.local.location=/Applications/Processing.app/Contents/Resources/Java/core/library/ |
| 42 | + |
| 43 | + |
| 44 | +# Add all jar files that are required for compiling your project to the local |
| 45 | +# and project classpath, use a comma as delimiter. These jar files must be |
| 46 | +# inside your classpath.local.location folder. |
| 47 | + |
| 48 | +classpath.local.include=core.jar |
| 49 | + |
| 50 | + |
| 51 | +# Add processing's libraries folder to the classpath. |
| 52 | +# If you don't need to include the libraries folder to your classpath, comment |
| 53 | +# out the following line. |
| 54 | + |
| 55 | +classpath.libraries.location=${sketchbook.location}/libraries |
| 56 | + |
| 57 | + |
| 58 | + |
| 59 | +# (3) |
| 60 | +# Set the java version that should be used to compile your library. |
| 61 | + |
| 62 | +java.target.version=1.6 |
| 63 | + |
| 64 | + |
| 65 | +# Set the description of the Ant build.xml file. |
| 66 | + |
| 67 | +ant.description=ProcessingLibs Ant build file. |
| 68 | + |
| 69 | + |
| 70 | + |
| 71 | +# (4) |
| 72 | +# Project details. |
| 73 | +# Give your library a name. |
| 74 | + |
| 75 | +project.name=YourLibrary |
| 76 | + |
| 77 | + |
| 78 | +# Use 'normal' or 'fast' as value for project.compile. |
| 79 | +# 'fast' will only compile the project into your sketchbook. |
| 80 | +# 'normal' will compile the distribution including the javadoc-reference and all |
| 81 | +# web-files (the compile process here takes longer). |
| 82 | + |
| 83 | +project.compile=normal |
| 84 | + |
| 85 | +# All files compiled with project.compile=normal are stored |
| 86 | +# in the distribution folder. |
| 87 | + |
| 88 | + |
| 89 | + |
| 90 | +# (5) |
| 91 | +# The following items are properties that will be used to make changes to the |
| 92 | +# web document templates. Values of properties will be inserted into the |
| 93 | +# documents automatically. |
| 94 | +# If you need more control, you can edit web/index.html and |
| 95 | +# web/library.properties directly. |
| 96 | + |
| 97 | +author.name=Your Name |
| 98 | +author.url=http://yoururl.com |
| 99 | + |
| 100 | + |
| 101 | +# Set the web page for your library. |
| 102 | +# This is NOT a direct link to where to download it. |
| 103 | + |
| 104 | +library.url=http://yourlibraryname.com |
| 105 | + |
| 106 | + |
| 107 | +# Set the category of your library. This must be one (or many) of the following: |
| 108 | +# "3D" "Animation" "Compilations" "Data" |
| 109 | +# "Fabrication" "Geometry" "GUI" "Hardware" |
| 110 | +# "I/O" "Language" "Math" "Simulation" |
| 111 | +# "Sound" "Utilities" "Typography" "Video & Vision" |
| 112 | +# If a value other than those listed is used, your library will listed as |
| 113 | +# "Other". |
| 114 | + |
| 115 | +library.category=Other |
| 116 | + |
| 117 | + |
| 118 | +# A short sentence (or fragment) to summarize the library's function. This will |
| 119 | +# be shown from inside the PDE when the library is being installed. Avoid |
| 120 | +# repeating the name of your library here. Also, avoid saying anything redundant |
| 121 | +# like mentioning that it's a library. This should start with a capitalized |
| 122 | +# letter, and end with a period. |
| 123 | + |
| 124 | +library.sentence=A collection of utilities for solving this and that problem. |
| 125 | + |
| 126 | + |
| 127 | +# Additional information suitable for the Processing website. The value of |
| 128 | +# 'sentence' always will be prepended, so you should start by writing the |
| 129 | +# second sentence here. If your library only works on certain operating systems, |
| 130 | +# mention it here. |
| 131 | + |
| 132 | +library.paragraph= |
| 133 | + |
| 134 | + |
| 135 | +# Set the source code repository for your project. |
| 136 | +# Recommendations for storing your source code online are Google Code or GitHub. |
| 137 | + |
| 138 | +source.host=Google Code |
| 139 | +source.url=http://code.google.com/p/yourProject |
| 140 | +source.repository=http://code.google.com/p/yourProject/source/browse/ |
| 141 | + |
| 142 | + |
| 143 | +# The current version of your library. |
| 144 | +# This number must be parsable as an int. It increments once with each release. |
| 145 | +# This is used to compare different versions of the same library, and check if |
| 146 | +# an update is available. |
| 147 | + |
| 148 | +library.version=1 |
| 149 | + |
| 150 | + |
| 151 | +# The version as the user will see it. |
| 152 | +# If blank, the library.version attribute will be used here. |
| 153 | + |
| 154 | +library.prettyVersion=0.1.1 |
| 155 | + |
| 156 | + |
| 157 | +library.copyright=(C) 2012 |
| 158 | +library.dependencies=? |
| 159 | +library.keywords=? |
| 160 | + |
| 161 | +tested.platform=osx,windows |
| 162 | +tested.processingVersion=1.5 |
| 163 | + |
| 164 | + |
| 165 | +# Include javadoc references into your project's javadocs. |
| 166 | + |
| 167 | +javadoc.java.href=http://java.sun.com/javase/6/docs/api/ |
| 168 | +javadoc.processing.href=http://processing.googlecode.com/svn/trunk/processing/build/javadoc/core/ |
0 commit comments