Develop and Download Open Source Software

Browse Subversion Repository

Annotation of /nyar4psg/trunk/resources/build.properties

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1158 - (hide annotations) (download)
Tue Jan 6 07:38:11 2015 UTC (9 years, 3 months ago) by nyatla
File size: 5945 byte(s)
パッケージ構成をProcessing2.0向けに更新

1 nyatla 1158 # 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 OS X. Please refer to comments for Windows
8     # settings.
9    
10    
11     # Where is your Processing sketchbook located?
12     # If you are not sure, check the sketchbook location in your Processing
13     # application preferences.
14     # ${user.home} points the compiler to your home directory.
15     # For windows the default path to your sketchbook would be
16     # ${user.home}/My Documents/Processing (make adjustments below)
17    
18     sketchbook.location=C:/Users/nyatla/Documents/Processing
19    
20    
21     # Where are the jar files located that are required for compiling your library
22     # such as e.g. core.jar?
23     # By default the local classpath location points to folder libs inside Eclipse's
24     # workspace (by default found in your home directory).
25     # For Windows, the default path would be
26     # ${user.home}/Documents/workspace/libs (make adjustments below)
27     # For OS X,the following path will direct you into Processing's application
28     # package, in case you put Processing inside your Applications folder.
29    
30     #classpath.local.location=${user.home}/Documents/workspace/libs
31     classpath.local.location=D:/application.files/processing-2.2.1/core/library
32    
33    
34     # Add all jar files that are required for compiling your project to the local
35     # and project classpath. Use a comma as delimiter. These jar files must be
36     # inside your classpath.local.location folder.
37    
38     classpath.local.include=core.jar,NyARToolkit.jar
39    
40    
41     # Add processing's libraries folder to the classpath.
42     # If you don't need to include the libraries folder to your classpath, comment
43     # out the following line.
44    
45     classpath.libraries.location=${sketchbook.location}/libraries
46    
47    
48     # Set the java version that should be used to compile your library.
49    
50     java.target.version=1.6
51    
52    
53     # Set the description of the Ant build.xml file.
54    
55     ant.description=ProcessingLibs Ant build file.
56    
57    
58     # Give your library a name. The name must not contain spaces or special
59     # characters.
60    
61     project.name=nyar4psg
62    
63    
64     # The name as the user will see it. This can contain spaces and special
65     # characters.
66    
67     project.prettyName=NyARToolkit for Proce55sing
68    
69    
70     # Use 'normal' or 'fast' as value for project.compile.
71     # 'fast' will only compile the project into your sketchbook.
72     # 'normal' will compile the distribution including the javadoc-reference and all
73     # web-files (the compile process here takes longer).
74     # All files compiled with project.compile=normal are stored in the distribution
75     # folder.
76    
77     project.compile=normal
78    
79    
80     # Set your name and URL, used for the web page and properties file.
81    
82     author.name=Ryo Iizuka
83     author.url=http://nyatla.jp/
84    
85    
86     # Set the web page for your library.
87     # This is NOT a direct link to where to download it.
88    
89     library.url=http://yourlibraryname.com
90    
91    
92     # Set the category of your library. This must be one (or many) of the following:
93     # "3D" "Animation" "Compilations" "Data"
94     # "Fabrication" "Geometry" "GUI" "Hardware"
95     # "I/O" "Language" "Math" "Simulation"
96     # "Sound" "Utilities" "Typography" "Video & Vision"
97     # If a value other than those listed is used, your library will listed as
98     # "Other".
99    
100     library.category=Video & Vision
101    
102    
103     # A short sentence (or fragment) to summarize the library's function. This will
104     # be shown from inside the PDE when the library is being installed. Avoid
105     # repeating the name of your library here. Also, avoid saying anything redundant
106     # like mentioning that it's a library. This should start with a capitalized
107     # letter, and end with a period.
108    
109     library.sentence=NyARToolkit for proce55ing(NyAR4psg) is frontend of NyARToolkit for Java. This library can easily make the AR application.
110    
111    
112     # Additional information suitable for the Processing website. The value of
113     # 'sentence' always will be prepended, so you should start by writing the
114     # second sentence here. If your library only works on certain operating systems,
115     # mention it here.
116    
117     library.paragraph=This library requires a web camera to make AR view.
118    
119    
120     # Set the source code repository for your project.
121     # Recommendations for storing your source code online are GitHub or Google Code.
122    
123     source.host=Sourceforge
124     source.url=https://sourceforge.jp/projects/nyartoolkit/
125     source.repository=https://sourceforge.jp/projects/nyartoolkit/scm/svn/tree/head/nyar4psg/
126    
127    
128     # The current version of your library.
129     # This number must be parsable as an int. It increments once with each release.
130     # This is used to compare different versions of the same library, and check if
131     # an update is available.
132    
133     library.version=1
134    
135    
136     # The version as the user will see it.
137    
138     library.prettyVersion=2.0.0
139    
140    
141     # The min and max revision of Processing compatible with your library.
142     # Note that these fields use the revision and not the version of Processing,
143     # parsable as an int. For example, the revision number for 2.2.1 is 227.
144     # You can find the revision numbers in the change log: https://raw.githubusercontent.com/processing/processing/master/build/shared/revisions.txt
145     # Only use maxRevision (or minRevision), when your library is known to
146     # break in a later (or earlier) release. Otherwise, use the default value 0.
147    
148     compatible.minRevision=0
149     compatible.maxRevision=0
150    
151    
152     # The platforms and Processing version that the library has been tested
153     # against. This information is only used in the generated webpage.
154    
155     tested.platform=windows
156     tested.processingVersion=2.2.1
157    
158    
159     # Additional information for the generated webpage.
160    
161     library.copyright=(c) 2008-2015 Ryo Iizuka
162     library.dependencies=?
163     library.keywords=?
164    
165    
166     # Include javadoc references into your project's javadocs.
167    
168     javadoc.java.href=http://java.sun.com/javase/6/docs/api/
169     javadoc.processing.href=http://processing.org/reference/javadoc/core/

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26