From dbd42e14f50df5c00c40cbc033fe3ed47b3c4ff2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Eric=20M=C3=BCller?= <mueller@kip.uni-heidelberg.de>
Date: Thu, 9 Jun 2022 10:59:08 +0200
Subject: [PATCH] Build: Drop v1 build targets

Depends-On: 17442, 17445, 17447
Change-Id: I06e0de976c1e062648840f3ffa89723e81bbe577
---
 pyfisch/wscript | 2 +-
 wscript         | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pyfisch/wscript b/pyfisch/wscript
index 99a4d1c..a7bcedb 100644
--- a/pyfisch/wscript
+++ b/pyfisch/wscript
@@ -20,7 +20,7 @@ def configure(cfg):
 
 
 def build(bld):
-    for hx_version in [1, 2, 3]:
+    for hx_version in [2, 3]:
         bld(
             target=f'pyfisch_vx_v{hx_version}',
             source='../include/fisch/vx/python_bindings.h',
diff --git a/wscript b/wscript
index e8795c6..9966055 100644
--- a/wscript
+++ b/wscript
@@ -110,7 +110,7 @@ def build(bld):
             install_path = '${PREFIX}/lib/ppu',
         )
 
-    for hx_version in [1, 2, 3]:
+    for hx_version in [2, 3]:
         bld.shlib(
             source = bld.path.ant_glob('src/fisch/vx/**/*.cpp'),
             target = f'fisch_vx_v{hx_version}',
-- 
GitLab