From 08fede6fa852d6f3ebad3ce355bfc5d0f9b816a0 Mon Sep 17 00:00:00 2001 From: rodolpheh Date: Thu, 2 Nov 2023 11:59:50 +0000 Subject: [PATCH] Add missing line for Windows build --- SConstruct | 1 + 1 file changed, 1 insertion(+) diff --git a/SConstruct b/SConstruct index 0e230ce..99de333 100644 --- a/SConstruct +++ b/SConstruct @@ -50,6 +50,7 @@ elif env["platform"] == "windows": ) env.Append(LIBS=['LeapC']) env.Append(LIBPATH = ['C:/Program Files/Ultraleap/LeapSDK/lib/x64']) + env.Append(CPPPATH = ["C:/Program Files/Ultraleap/LeapSDK/include"]) elif env["platform"] == "android": print("Android is not supported yet") exit(1)