diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2016-08-30 19:03:07 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2016-08-30 19:03:07 +0300 |
commit | 3f946b7119e48ee9764f7c0658c4a25a66a3fe03 (patch) | |
tree | 346d0444b3e591d529d512ec342a433d8c4b8ae4 /format/buildfile | |
parent | b2b4a362217bb6be8f1fd554bb7eee5f3a2686e9 (diff) |
Build infrastructure update
Diffstat (limited to 'format/buildfile')
-rw-r--r-- | format/buildfile | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/format/buildfile b/format/buildfile index 4edb840..5e86503 100644 --- a/format/buildfile +++ b/format/buildfile @@ -1,8 +1,21 @@ -lib{format}: {hxx cxx}{format} +lib{format}: {hxx cxx}{format} hxx{export} + +# For pre-releases use the complete version to make sure they cannot be used +# in place of another pre-release or the final version. +# +if $abi_prerelease + lib{format}: bin.lib.version = @-$version +else + lib{format}: bin.lib.version = @-$abi_major.$abi_minor cxx.poptions += -I$src_root +obja{*}: cxx.poptions += -DLIBFORMAT_STATIC_BUILD +objs{*}: cxx.poptions += -DLIBFORMAT_SHARED_BUILD + lib{format}: cxx.export.poptions = -I$src_root +liba{format}: cxx.export.poptions += -DLIBFORMAT_STATIC +libs{format}: cxx.export.poptions += -DLIBFORMAT_SHARED # Install into the format/ subdirectory of, say, /usr/include/. # -install.include = $install.include/format +install.include = $install.include/format/ |