blob: 068fc2629f043dbf89e9daa51de9a2b6d54d3150 (
plain) (
tree)
|
|
# Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com>
# This file is part of the "cmake-common" project.
# For details, see https://github.com/egor-tensin/cmake-common.
# Distributed under the MIT License.
from project.ci.boost import build_ci
from project.ci.dirs import AppVeyor
from project.utils import setup_logging
def main(argv=None):
with setup_logging():
build_ci(AppVeyor(), argv)
if __name__ == '__main__':
main()
|