From dbc66788a680daf3f8a1c0c6e7fbd1b77cc06864 Mon Sep 17 00:00:00 2001 From: Spartan322 Date: Sat, 2 Sep 2023 09:03:14 -0400 Subject: Add github actions and workflow --- deps/SCsub | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'deps/SCsub') diff --git a/deps/SCsub b/deps/SCsub index d58d83e..1afe1a6 100644 --- a/deps/SCsub +++ b/deps/SCsub @@ -32,13 +32,13 @@ def build_lexy(env): library = lexy_env.StaticLibrary(target="lexy/src/" + library_name, source=sources) Default(library) - env.Append(CPPPATH=[env.Dir("lexy/include")]) + env.Append(CPPPATH=[lexy_env.Dir("lexy/include")]) if env.get("is_msvc", False): - env.Append(CXXFLAGS=["/external:I", env.Dir("lexy/include"), "/external:W0"]) + env.Append(CXXFLAGS=["/external:I", lexy_env.Dir("lexy/include"), "/external:W0"]) else: - env.Append(CXXFLAGS=["-isystem", env.Dir("lexy/include")]) + env.Append(CXXFLAGS=["-isystem", lexy_env.Dir("lexy/include")]) env.Append(CXXFLAGS=[""]) - env.Append(LIBPATH=[env.Dir("lexy/src")]) + env.Append(LIBPATH=[lexy_env.Dir("lexy/src")]) env.Append(LIBS=[library_name]) -- cgit v1.2.3-56-ga3b1