Separated window functionality off from the Main class into a Window class
In preparation for multiple windows support.
author |
Fox |
date |
Tue, 05 Apr 2022 00:45:42 +0200 |
parents |
3922b33bb764 |
children |
4ee26d904fe3 |
rev |
line source |
0
|
1 #!/bin/sh
|
|
2
|
|
3 #export _JAVA_AWT_WM_NONREPARENTING=1
|
1
|
4 export CLASSPATH=./src:./build:./lib/lucene-core-3.0.3.jar
|
0
|
5 #JAVA=/usr/lib/jvm/java-8-openjdk-amd64/bin/java
|
|
6
|
|
7 if [ ! -d 'build/' ]; then
|
|
8 mkdir build/
|
|
9 fi
|
|
10
|
1
|
11 javac -d ./build $(find . -name '*.java' | xargs) && java junotu.Main
|