Skip to content
Snippets Groups Projects
Commit 95b8babf authored by Georg Graßnick's avatar Georg Graßnick :thinking:
Browse files

Fix layout

parent a816b8bb
No related branches found
No related tags found
1 merge request!24Feat/brailletextrasterizer 38
...@@ -50,16 +50,16 @@ tasks.withType(Test) { ...@@ -50,16 +50,16 @@ tasks.withType(Test) {
useJUnitPlatform() useJUnitPlatform()
} }
// Copy Braille tables from submodule to working dir // Copy Braille tables from submodule to working dir / delete them on "clean" task
task copyBrailleTables(type: Copy) { task copyBrailleTables(type: Copy) {
from "$projectDir/third_party/liblouis/tables/" from "$projectDir/third_party/liblouis/tables/"
into "$rootDir/src/main/resources/mapping/liblouis" into "$rootDir/src/main/resources/mapping/liblouis"
} }
processResources.dependsOn copyBrailleTables processResources.dependsOn copyBrailleTables
clean { clean {
delete "$rootDir/src/main/resources/mapping/liblouis" delete "$rootDir/src/main/resources/mapping/liblouis"
} }
// Define the main class for the application // Define the main class for the application
mainClassName = 'de.tudresden.inf.mci.brailleplot.App' mainClassName = 'de.tudresden.inf.mci.brailleplot.App'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment