aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/project/ci/appveyor/cmake.py
blob: 6df28f2d44f8c5b723bbeb6067a18f2412a673ef (plain) (tree)
1
2
3
4
5
6
7
8
9




                                                               

                                     
                                       
 
 
                    
                         
                                  



                          
# Copyright (c) 2019 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.cmake 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()