# -*- python -*-
#
# Copyright (c) 2016 Stefan Seefeld
# All rights reserved.
#
# This file is part of Faber. It is made available under the
# Boost Software License, Version 1.0.
# (Consult LICENSE or http://www.boost.org/LICENSE_1_0.txt)

from faber.tools.compiler import link, include
from faber.artefacts.library import library

greet = library('greet', 'greet.cpp',
                features=link('static'),
                use=include('.'))

default = greet
