summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2019-01-25 02:35:42 +0100
committerNao Pross <naopross@thearcway.org>2019-01-25 02:35:42 +0100
commit947ca0014857fe36414986a46225a071857a37e2 (patch)
treebf6ae0c461ca7ebef524b8dcddd23ae9ccb96241
parentDelete log.dat (diff)
downloadflatland-947ca0014857fe36414986a46225a071857a37e2.tar.gz
flatland-947ca0014857fe36414986a46225a071857a37e2.zip
Update configure.py to default build libflatland.{so, a}
-rwxr-xr-xconfigure.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.py b/configure.py
index 88995b3..bc04690 100755
--- a/configure.py
+++ b/configure.py
@@ -47,6 +47,9 @@ with open("build.ninja", "w") as bf:
print("build build/libflatland.a: link-static " + " ".join(objects), file=bf)
print("\n", file=bf)
+ # set as default
+ print("default build/libflatland.so build/libflatland.a", file=bf)
+ print("\n", file=bf)
# find test sources
sources, objects = find_sources("test")