From 1d158d508f54e86f5a64ce0dde861fd349174760 Mon Sep 17 00:00:00 2001
From: Florent Berthaut <florent.berthaut@univ-lille.fr>
Date: Fri, 22 Jul 2022 15:16:32 +0200
Subject: [PATCH] Fixed sconstruct

---
 .gitignore | 3 +++
 SConstruct | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index 71d246e..160335d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,8 @@
 .*
 *.o
 *.so
+*.dll
+*.lib
+*.dylib
 *.os
 *.import
diff --git a/SConstruct b/SConstruct
index e223cea..3eb03e7 100644
--- a/SConstruct
+++ b/SConstruct
@@ -78,7 +78,7 @@ elif env['platform'] in ('x11', 'linux'):
         env.Append(CXXFLAGS=['-std=c++17'])
 
 elif env['platform'] == "windows":
-    env['target_path'] += 'win64/'
+    env['target_path'] += 'win/'
     cpp_library += '.windows'
     env.Append(ENV=os.environ)
     env.Append(CPPDEFINES=['NOMINMAX'])
-- 
GitLab