diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-07-17 08:49:59 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-07-17 08:49:59 +0200 |
commit | 6f13cb46fc7e2ae16c3f42c2b2f8dca10fbfc502 (patch) | |
tree | 19f8fdc7bdeed26fdcd623781a8c507d58a420a8 /mod | |
parent | e60108713590ccee83da7e2581a43fd5fda5c8ce (diff) |
libso{} was renamed to libs{}, adjust buildfile
Diffstat (limited to 'mod')
-rw-r--r-- | mod/buildfile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/mod/buildfile b/mod/buildfile index 432c24a..6943178 100644 --- a/mod/buildfile +++ b/mod/buildfile @@ -2,7 +2,17 @@ # copyright : Copyright (c) 2014-2016 Code Synthesis Ltd # license : MIT; see accompanying LICENSE file -define mod: libso +# @@ BC with 0.3.0: renamed libso to libs. +# +if ($build.version != 30000) # No support for > in 0.3.0 +{ + define mod: libs +} +else +{ + define mod: libso +} + mod{*}: bin.libprefix = mod_ mod{*}: install = libexec |