mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 08:24:32 -08:00
[build] Move configs/ to assets/build/
I was sick of `configs` colliding with `configure`, and these are (mostly) static asset files anyway, they should live under assets/.
This commit is contained in:
@@ -30,7 +30,7 @@ class Project:
|
|||||||
build.variable("source_root", root)
|
build.variable("source_root", root)
|
||||||
build.newline()
|
build.newline()
|
||||||
|
|
||||||
build.include(root / "configs" / "rules.ninja")
|
build.include(root / "assets/build/rules.ninja")
|
||||||
build.newline()
|
build.newline()
|
||||||
|
|
||||||
build.variable("version_major", self.version.major)
|
build.variable("version_major", self.version.major)
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ class Target(dict):
|
|||||||
if (name, config) in cls.__targets:
|
if (name, config) in cls.__targets:
|
||||||
return cls.__targets[(name, config)]
|
return cls.__targets[(name, config)]
|
||||||
|
|
||||||
configs = root / "configs"
|
configs = root / "assets/build"
|
||||||
|
|
||||||
dicts = []
|
dicts = []
|
||||||
depfiles = []
|
depfiles = []
|
||||||
|
|||||||
Reference in New Issue
Block a user