forked from pragmagic/godot-nim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnakefile.nim
43 lines (36 loc) · 1.16 KB
/
nakefile.nim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Copyright 2017 Xored Software, Inc.
import nake
import os, ospaths, times
import apigen.apigen
proc cmdParams(): string =
let params = commandLineParams()
assert(params.len > 0)
result = params[1..<params.len].join(" ")
proc genGodotApi() =
let godotBin = getEnv("GODOT_BIN")
if godotBin.isNil or godotBin.len == 0:
echo "GODOT_BIN environment variable is not set"
quit(-1)
if not fileExists(godotBin):
echo "Invalid GODOT_BIN path: " & godotBin
quit(-1)
const targetDir = "godotapi"
createDir(targetDir)
const jsonFile = "godotapi"/"api.json"
if not fileExists(jsonFile) or
godotBin.getLastModificationTime() > jsonFile.getLastModificationTime():
direShell(godotBin, "--gdnative-generate-json-api", jsonFile)
if not fileExists(jsonFile):
echo "Failed to generate api.json"
quit(-1)
genApi(targetDir, jsonFile)
task "build", "Builds the client for the current platform":
genGodotApi()
withDir "src":
direShell("nimble", "make")
task "clean", "Remove files produced by build":
removeDir("nimcache")
removeDir("src"/"nimcache")
removeDir("godotapi")
removeDir("project"/"_dlls")
removeFile("nakefile")