diff options
author | Spartan322 <Megacake1234@gmail.com> | 2023-09-02 15:03:14 +0200 |
---|---|---|
committer | Spartan322 <Megacake1234@gmail.com> | 2023-09-02 19:20:25 +0200 |
commit | dbc66788a680daf3f8a1c0c6e7fbd1b77cc06864 (patch) | |
tree | 288a1530b1f3cd2d7ba2bb5821e2c4160725707c /deps | |
parent | f990117e56060811ddd2a850ec712485aea79649 (diff) |
Add github actions and workflow
Diffstat (limited to 'deps')
-rw-r--r-- | deps/SCsub | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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]) |