kaliber/build/rules.gni

12 lines
298 B
Plaintext
Raw Normal View History

# Build a shared library for Android. Build an executable for other platforms.
2023-09-04 17:27:42 +00:00
template("game") {
if (target_os == "android") {
_target_type = "shared_library"
} else {
_target_type = "executable"
}
target(_target_type, target_name) {
forward_variables_from(invoker, "*")
}
}