|
How to Build jPSXdec with Netbeans 6.0 - Download the source code from either SVN or from a released version.
- Create a new "Java Application" project in Netbeans and call it "jpsxdec". Have it create a Main class with the default jpsxdec.Main.
- Copy the all the contents of jPSXdec /src/jpsxdec/ folder into the Netbeans project's /src/jpsxdec/ folder, overwriting the Main.java file.
- Right-click on the "Libraries" and select "Add JAR/Folder".
- Add the three library dependencies: argparser.zip, swing-layout-1.0.3-src.zip, swing-worker-src-1.1.zip
- Right-click the project and select "Properties", and make the following changes:
- Source: change "Source/Binary Format" to "JDK 5"
- Libraries:
- Change the "Java Platform" to a 1.5.0 JDK (you may need to select "Manage Platforms" and select where a 1.5.0 JDK is installed)
- Packaging:
- Add the following to "Exclude From JAR File": **/*.txt,**/*.jar,**/*.html,**/*.css,**/*.zip
- Documenting (optional):
- Select "Document Aditional Tags" both @author and @version.
- Put the following into "Additional Javadoc Options": -stylesheetfile <path to javadoc.css>/javadoc.css
- Press "OK" to close the dialog, then from the "Build" menu, select "Build Main Project".
jPSXdec will be built in the /dist/ folder of the project.
|