forked from lawrancej/logisim
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
185 changed files
with
15,025 additions
and
0 deletions.
There are no files selected for viewing
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
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 @@ | ||
/build |
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,30 @@ | ||
Launch4j (http://launch4j.sourceforge.net/) | ||
Cross-platform Java application wrapper for creating Windows native executables. | ||
|
||
Copyright (c) 2004, 2014 Grzegorz Kowal | ||
|
||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without modification, | ||
are permitted provided that the following conditions are met: | ||
|
||
* Redistributions of source code must retain the above copyright notice, | ||
this list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
* Neither the name of the Launch4j nor the names of its contributors | ||
may be used to endorse or promote products derived from this software without | ||
specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR | ||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | ||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
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,62 @@ | ||
<project name="launch4j" default="compile" basedir="."> | ||
<property name="src" location="src" /> | ||
<property name="lib" location="lib" /> | ||
<property name="build" location="build" /> | ||
<property name="jar" location="./${ant.project.name}.jar" /> | ||
<property name="launch4j.dir" location="." /> | ||
|
||
<path id="dist.classpath"> | ||
<pathelement path="${build}" /> | ||
<fileset dir="${lib}"> | ||
<include name="**/*.jar" /> | ||
</fileset> | ||
</path> | ||
|
||
<target name="init"> | ||
<tstamp /> | ||
<mkdir dir="${build}" /> | ||
</target> | ||
|
||
<target name="compile" depends="init" description="compile the source"> | ||
<javac srcdir="${src}" destdir="${build}" classpathref="dist.classpath" source="1.6" debug="on" includeantruntime="false" /> | ||
<copy todir="${build}/images"> | ||
<fileset dir="${src}/images"> | ||
<include name="**/*" /> | ||
</fileset> | ||
</copy> | ||
<copy todir="${build}"> | ||
<fileset dir="${src}"> | ||
<include name="**/*.properties" /> | ||
</fileset> | ||
</copy> | ||
</target> | ||
|
||
<target name="jar" depends="compile" description="create jar"> | ||
<fileset dir="${lib}" id="lib.dist.fileset"> | ||
<include name="**/*.jar" /> | ||
</fileset> | ||
<pathconvert pathsep=" " property="dist.classpath" refid="lib.dist.fileset"> | ||
<map from="${lib}" to="./lib" /> | ||
</pathconvert> | ||
<!-- Put everything in ${build} into a jar file --> | ||
<jar jarfile="${jar}"> | ||
<fileset dir="${build}" excludes="**/messages_es.properties" /> | ||
<manifest> | ||
<attribute name="Main-Class" value="net.sf.launch4j.Main" /> | ||
<attribute name="Class-Path" value=". ${dist.classpath}" /> | ||
</manifest> | ||
</jar> | ||
</target> | ||
|
||
<target name="demo" depends="jar" description="build the demos"> | ||
<ant dir="./demo/ConsoleApp" inheritAll="false" /> | ||
<ant dir="./demo/SimpleApp" inheritAll="false" /> | ||
</target> | ||
|
||
<target name="clean" description="clean up"> | ||
<delete dir="${build}" /> | ||
<delete file="${jar}" /> | ||
<ant dir="./demo/ConsoleApp" target="clean" inheritAll="false" /> | ||
<ant dir="./demo/SimpleApp" target="clean" inheritAll="false" /> | ||
</target> | ||
</project> |
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 @@ | ||
/build |
Binary file not shown.
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,57 @@ | ||
<project name="ConsoleApp" default="exe" basedir="."> | ||
<property name="src" location="src" /> | ||
<property name="lib" location="lib" /> | ||
<property name="build" location="build" /> | ||
<property name="launch4j.dir" location="../.." /> | ||
|
||
<path id="dist.classpath"> | ||
<pathelement path="${build}" /> | ||
<fileset dir="${lib}"> | ||
<include name="**/*.jar" /> | ||
</fileset> | ||
</path> | ||
|
||
<target name="init"> | ||
<tstamp /> | ||
<mkdir dir="${build}" /> | ||
</target> | ||
|
||
<target name="compile" depends="init" description="compile the source"> | ||
<javac srcdir="${src}" destdir="${build}" classpathref="dist.classpath" source="1.6" debug="on" includeantruntime="false" /> | ||
</target> | ||
|
||
<target name="jar" depends="compile" description="create the jar"> | ||
<fileset dir="${lib}" id="lib.dist.fileset"> | ||
<include name="**/*.jar" /> | ||
</fileset> | ||
<pathconvert pathsep=" " property="dist.classpath" refid="lib.dist.fileset"> | ||
<map from="${lib}" to=".\lib" /> | ||
</pathconvert> | ||
<!-- Put everything in ${build} into a jar file --> | ||
<jar jarfile="${ant.project.name}.jar"> | ||
<fileset dir="${build}" includes="**/*" /> | ||
<manifest> | ||
<!-- SET YOUR MAIN CLASS HERE --> | ||
<attribute name="Main-Class" value="net.sf.launch4j.example.ConsoleApp" /> | ||
<attribute name="Class-Path" value=". ${dist.classpath}" /> | ||
</manifest> | ||
</jar> | ||
</target> | ||
|
||
<target name="exe" depends="jar"> | ||
<taskdef name="launch4j" classname="net.sf.launch4j.ant.Launch4jTask" classpath="${launch4j.dir}/launch4j.jar | ||
:${launch4j.dir}/lib/xstream.jar" /> | ||
<launch4j> | ||
<config headerType="console" jar="ConsoleApp.jar" outfile="ConsoleApp.exe" errTitle="ConsoleApp" chdir="." icon="l4j/ConsoleApp.ico"> | ||
<singleInstance mutexName="net.sf.launch4j.example.ConsoleApp" /> | ||
<jre minVersion="1.6.0" /> | ||
</config> | ||
</launch4j> | ||
</target> | ||
|
||
<target name="clean" description="clean up"> | ||
<delete dir="${build}" /> | ||
<delete file="${ant.project.name}.jar" /> | ||
<delete file="${ant.project.name}.exe" /> | ||
</target> | ||
</project> |
Binary file not shown.
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,8 @@ | ||
Put your jar libs here and the build script will include them | ||
in the classpath stored inside the jar manifest. | ||
In order to run your application move the output exe file from | ||
the dist directory to the same level as lib. | ||
|
||
SimpleApp.exe | ||
lib/ | ||
lib/xml.jar |
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 @@ | ||
To build the example application set JAVA_HOME and ANT_HOME environment variables. |
72 changes: 72 additions & 0 deletions
72
launch4j/demo/ConsoleApp/src/net/sf/launch4j/example/ConsoleApp.java
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,72 @@ | ||
/* | ||
Launch4j (http://launch4j.sourceforge.net/) | ||
Cross-platform Java application wrapper for creating Windows native executables. | ||
Copyright (c) 2004, 2007 Grzegorz Kowal | ||
All rights reserved. | ||
Redistribution and use in source and binary forms, with or without modification, | ||
are permitted provided that the following conditions are met: | ||
* Redistributions of source code must retain the above copyright notice, | ||
this list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
* Neither the name of the Launch4j nor the names of its contributors | ||
may be used to endorse or promote products derived from this software without | ||
specific prior written permission. | ||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR | ||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | ||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
|
||
package net.sf.launch4j.example; | ||
|
||
import java.io.BufferedReader; | ||
import java.io.IOException; | ||
import java.io.InputStreamReader; | ||
|
||
/** | ||
* @author Copyright (C) 2005 Grzegorz Kowal | ||
*/ | ||
public class ConsoleApp { | ||
public static void main(String[] args) { | ||
StringBuffer sb = new StringBuffer("Hello World!\n\nJava version: "); | ||
sb.append(System.getProperty("java.version")); | ||
sb.append("\nJava home: "); | ||
sb.append(System.getProperty("java.home")); | ||
sb.append("\nCurrent dir: "); | ||
sb.append(System.getProperty("user.dir")); | ||
if (args.length > 0) { | ||
sb.append("\nArgs: "); | ||
for (int i = 0; i < args.length; i++) { | ||
sb.append(args[i]); | ||
sb.append(' '); | ||
} | ||
} | ||
sb.append("\n\nEnter a line of text, 'quit' or Ctrl-C to stop.\n\n>"); | ||
System.out.print(sb.toString()); | ||
try { | ||
BufferedReader is = new BufferedReader(new InputStreamReader(System.in)); | ||
String line; | ||
while ((line = is.readLine()) != null && !line.equalsIgnoreCase("quit")) { | ||
System.out.print("You wrote: " + line + "\n\n>"); | ||
} | ||
is.close(); | ||
System.exit(123); | ||
} catch (IOException e) { | ||
System.err.print(e); | ||
} | ||
} | ||
} |
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,30 @@ | ||
Launch4j (http://launch4j.sourceforge.net/) | ||
Cross-platform Java application wrapper for creating Windows native executables. | ||
|
||
Copyright (c) 2004, 2007 Grzegorz Kowal | ||
|
||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without modification, | ||
are permitted provided that the following conditions are met: | ||
|
||
* Redistributions of source code must retain the above copyright notice, | ||
this list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
* Neither the name of the Launch4j nor the names of its contributors | ||
may be used to endorse or promote products derived from this software without | ||
specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR | ||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | ||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
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 @@ | ||
/build |
Binary file not shown.
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,52 @@ | ||
<project name="SimpleApp" default="exe" basedir="."> | ||
<property name="src" location="src" /> | ||
<property name="lib" location="lib" /> | ||
<property name="build" location="build" /> | ||
<property name="launch4j.dir" location="../.." /> | ||
|
||
<path id="dist.classpath"> | ||
<pathelement path="${build}" /> | ||
<fileset dir="${lib}"> | ||
<include name="**/*.jar" /> | ||
</fileset> | ||
</path> | ||
|
||
<target name="init"> | ||
<tstamp /> | ||
<mkdir dir="${build}" /> | ||
</target> | ||
|
||
<target name="compile" depends="init" description="compile the source"> | ||
<javac srcdir="${src}" destdir="${build}" classpathref="dist.classpath" source="1.6" debug="on" includeantruntime="false" /> | ||
</target> | ||
|
||
<target name="jar" depends="compile" description="create the jar"> | ||
<fileset dir="${lib}" id="lib.dist.fileset"> | ||
<include name="**/*.jar" /> | ||
</fileset> | ||
<pathconvert pathsep=" " property="dist.classpath" refid="lib.dist.fileset"> | ||
<map from="${lib}" to=".\lib" /> | ||
</pathconvert> | ||
<!-- Put everything in ${build} into a jar file --> | ||
<jar jarfile="${ant.project.name}.jar"> | ||
<fileset dir="${build}" includes="**/*" /> | ||
<manifest> | ||
<!-- SET YOUR MAIN CLASS HERE --> | ||
<attribute name="Main-Class" value="net.sf.launch4j.example.SimpleApp" /> | ||
<attribute name="Class-Path" value=". ${dist.classpath}" /> | ||
</manifest> | ||
</jar> | ||
</target> | ||
|
||
<target name="exe" depends="jar"> | ||
<taskdef name="launch4j" classname="net.sf.launch4j.ant.Launch4jTask" classpath="${launch4j.dir}/launch4j.jar | ||
:${launch4j.dir}/lib/xstream.jar" /> | ||
<launch4j configFile="./l4j/SimpleApp.xml" /> | ||
</target> | ||
|
||
<target name="clean" description="clean up"> | ||
<delete dir="${build}" /> | ||
<delete file="${ant.project.name}.jar" /> | ||
<delete file="${ant.project.name}.exe" /> | ||
</target> | ||
</project> |
Binary file not shown.
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,18 @@ | ||
<launch4jConfig> | ||
<headerType>gui</headerType> | ||
<jar>../SimpleApp.jar</jar> | ||
<outfile>../SimpleApp.exe</outfile> | ||
<errTitle>SimpleApp</errTitle> | ||
<chdir>.</chdir> | ||
<icon>SimpleApp.ico</icon> | ||
<restartOnCrash>true</restartOnCrash> | ||
<jre> | ||
<minVersion>1.6.0</minVersion> | ||
</jre> | ||
<splash> | ||
<file>splash.bmp</file> | ||
<waitForWindow>true</waitForWindow> | ||
<timeout>60</timeout> | ||
<timeoutErr>true</timeoutErr> | ||
</splash> | ||
</launch4jConfig> |
Binary file not shown.
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,8 @@ | ||
Put your jar libs here and the build script will include them | ||
in the classpath stored inside the jar manifest. | ||
In order to run your application move the output exe file from | ||
the dist directory to the same level as lib. | ||
|
||
SimpleApp.exe | ||
lib/ | ||
lib/xml.jar |
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 @@ | ||
To build the example application set JAVA_HOME and ANT_HOME environment variables. |
Oops, something went wrong.