mirror of
https://github.com/fmtlib/fmt.git
synced 2025-10-11 05:25:19 +02:00
Move logic from travis.yml to a Python script
This commit is contained in:
13
support/build.py
Executable file
13
support/build.py
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env python
|
||||
# Build the project on AppVeyor.
|
||||
|
||||
from subprocess import check_call
|
||||
import os
|
||||
|
||||
env = os.environ
|
||||
build = env['BUILD']
|
||||
if build == 'mingw':
|
||||
# Remove path to Git bin directory from $PATH because it breaks MinGW config.
|
||||
env['PATH'] = env['PATH'].replace(r'C:\Program Files (x86)\Git\bin', '')
|
||||
generator = ['-GMinGW Makefiles']
|
||||
check_call(['cmake', '-DFMT_EXTRA_TESTS=ON', '-DCMAKE_BUILD_TYPE=' + env['CONFIG']] + generator, env=env)
|
Reference in New Issue
Block a user