libarc-validate/arc/validate/buildfile
RYAN e15a1f3265
All checks were successful
on-push / build-and-test (push) Successful in 13s
Add build2 project structure
2024-09-02 10:42:50 +02:00

66 lines
1.6 KiB
Ruby

intf_libs = # Interface dependencies.
impl_libs = # Implementation dependencies.
./: lib{arc-validate}: libul{arc-validate}
libul{arc-validate}: {hxx ixx txx cxx}{** -**.test... -version} \
{hxx }{ version}
libul{arc-validate}: $impl_libs $intf_libs
# Unit tests.
#
exe{*.test}:
{
test = true
install = false
}
for t: cxx{**.test...}
{
d = $directory($t)
n = $name($t)...
./: $d/exe{$n}: $t $d/{hxx ixx txx}{+$n} $d/testscript{+$n}
$d/exe{$n}: libul{arc-validate}: bin.whole = false
}
hxx{version}: in{version} $src_root/manifest
# Build options.
#
cxx.poptions =+ "-I$out_root" "-I$src_root"
cxx.coptions =+ -fvisibility=hidden
obja{*}: cxx.poptions += -DLIBARC_VALIDATE_STATIC_BUILD
objs{*}: cxx.poptions += -DLIBARC_VALIDATE_SHARED_BUILD
# Export options.
#
lib{arc-validate}:
{
cxx.export.poptions = "-I$out_root" "-I$src_root"
cxx.export.libs = $intf_libs
}
liba{arc-validate}: cxx.export.poptions += -DLIBARC_VALIDATE_STATIC
libs{arc-validate}: cxx.export.poptions += -DLIBARC_VALIDATE_SHARED
# For pre-releases use the complete version to make sure they cannot
# be used in place of another pre-release or the final version. See
# the version module for details on the version.* variable values.
#
if $version.pre_release
lib{arc-validate}: bin.lib.version = "-$version.project_id"
else
lib{arc-validate}: bin.lib.version = "-$version.major.$version.minor"
# Install into the arc/validate/ subdirectory of, say, /usr/include/
# recreating subdirectories.
#
{hxx ixx txx}{*}:
{
install = include/arc/validate/
install.subdirs = true
}