Skip to content
Snippets Groups Projects
Commit 3f5c1a04 authored by Nicolas Pomepuy's avatar Nicolas Pomepuy
Browse files

Copy lua in from the modules directory

parent b271bcd0
No related branches found
No related tags found
1 merge request!703Update vlc hash and add a patch to fix some lua issues
Pipeline #21808 passed with stage
in 27 minutes and 35 seconds
......@@ -22,6 +22,12 @@ android {
exclude '**/*.txt'
}
task luaModuleCopy(type: Copy) {
from '../../vlc/share/lua/modules'
into 'src/main/assets/lua/modules'
exclude '**/*.txt'
}
task luaMetaCopy(type: Copy) {
from '../../vlc/share/lua/meta'
into 'src/main/assets/lua/meta'
......@@ -64,6 +70,7 @@ android {
task.dependsOn hrtfsCopy
task.dependsOn luaPlaylistCopy
task.dependsOn luaMetaCopy
task.dependsOn luaModuleCopy
}
}
}
......
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