Add Custom Build Script

This commit is contained in:
GuilhermeWerner 2021-05-21 09:31:11 -03:00
parent 8f76678810
commit 093a254b5a
2 changed files with 8 additions and 0 deletions

View file

@ -16,3 +16,6 @@ path = "Source/lib.rs"
[dependencies]
TribuFu = { path = "../DevKit" }
jni = "0.19.0"
[build-dependencies]
Engine-Build = { path = "../Engine/Source/Build" }

5
build.rs Normal file
View file

@ -0,0 +1,5 @@
// Copyright (c) TribuFu. All Rights Reserved.
fn main() {
Engine_Build::Project();
}