From 160b5e161f113cedba751e14c09abef77e59b46d Mon Sep 17 00:00:00 2001 From: Adam Kewley Date: Thu, 17 Oct 2024 13:23:44 +0200 Subject: [PATCH] Remove oscar_simbody reference from build_windows.py --- scripts/build_windows.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/scripts/build_windows.py b/scripts/build_windows.py index 1cde47f86..569547ecd 100644 --- a/scripts/build_windows.py +++ b/scripts/build_windows.py @@ -123,11 +123,6 @@ def build_osc(conf: BuildConfiguration): _run(f'cmake --build {conf.get_osc_build_dir()} --target testoscar {other_build_args}') _run(f'{test_oscar_path} --gtest_filter="-Renderer*') - # build+run testoscar_simbody suite - test_oscar_simbody_path = os.path.join(conf.get_osc_build_dir(), 'tests', 'testoscar_simbody', conf.get_osc_build_type(), 'testoscar_simbody') - _run(f'cmake --build {conf.get_osc_build_dir()} --target testoscar_simbody {other_build_args}') - _run(f'{test_oscar_simbody_path} --gtest_filter="-Renderer*') - # build+run third party plugin test suite test_osc_plugins_path = os.path.join(conf.get_osc_build_dir(), 'tests', 'TestOpenSimThirdPartyPlugins', conf.get_osc_build_type(), 'TestOpenSimThirdPartyPlugins') _run(f'cmake --build {conf.get_osc_build_dir()} --target TestOpenSimThirdPartyPlugins {other_build_args}')