kfr

Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
Log | Files | Refs | README

commit d0e3d860cc3486240d834e61adad246a2a8a9be7
parent 843aa4a0b8db0381618f5b6bc75eabd4a1c76a4a
Author: [email protected] <[email protected]>
Date:   Tue,  4 Apr 2017 02:35:25 +0300

Pass build.py arguments to cmake

Diffstat:
Mbuild-cl.py | 4++--
Mbuild.py | 2+-
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/build-cl.py b/build-cl.py @@ -36,8 +36,8 @@ if not sys.platform.startswith('win32'): options = [ '-DCMAKE_BUILD_TYPE=Release', - ] + ] + sys.argv[1:] -if subprocess.call(['cmake', '-G', 'Visual Studio 14 2015', '..'] + options, cwd=build_dir): raise Exception('Can\'t make project') +if subprocess.call(['cmake', '-G', 'Visual Studio 14 2015 Win64', '..'] + options, cwd=build_dir): raise Exception('Can\'t make project') if subprocess.call(['cmake', '--build', '.', '--config', 'Release'], cwd=build_dir): raise Exception('Can\'t build project') if subprocess.call(['ctest', '-C', 'Release'], cwd=os.path.join(build_dir, 'tests')): raise Exception('Can\'t test project') diff --git a/build.py b/build.py @@ -35,7 +35,7 @@ except: options = [ '-DCMAKE_BUILD_TYPE=Release', - ] + ] + sys.argv[1:] if sys.platform.startswith('win32'): generator = 'MinGW Makefiles'