Skip to content
This repository has been archived by the owner on Jan 1, 2025. It is now read-only.

Commit

Permalink
Merge pull request #8 from RadiantUwU/edits
Browse files Browse the repository at this point in the history
Non-complete implementation of scripting (Can create scripts, fails in running them)
  • Loading branch information
RadiantUwU authored Dec 5, 2023
2 parents 1453577 + d9d2049 commit bd57366
Show file tree
Hide file tree
Showing 21 changed files with 23,914 additions and 51,075 deletions.
7 changes: 4 additions & 3 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ lua_env.Append(CPPDEFINES = ["MAKE_LIB"])
lua_env.Append(CXXFLAGS = ["-std=c++17"])
lua_env.Append(CFLAGS = ["-std=c99"])

module_env.Append(CXXFLAGS = ["-Wno-non-pod-varargs"])


cpp_paths = [Dir("src").abspath, Dir("/").abspath]
cpp_paths = [Dir("src").abspath, Dir("/").abspath, Dir("src/classes/roblox").abspath]
lua_cpp_paths = []

luau_paths = [
Expand All @@ -45,7 +45,7 @@ module_env.Append(CPPPATH=cpp_paths)


lua_sources = []
for path in luau_include_paths:
for path in luau_include_paths:
lua_sources.extend(Glob(path + "/*.hpp"))
lua_sources.extend(Glob(path + "/*.h"))
lua_sources.extend(Glob(path + "/*.cpp"))
Expand All @@ -67,6 +67,7 @@ module_env.Append(LIBS=[library_name])
sources = Glob("*.cpp")
sources.append(Glob("src/*.cpp"))
sources.append(Glob("src/classes/*.cpp"))
sources.append(Glob("src/classes/roblox/core/*.cpp"))


env["suffix"] = env["suffix"].replace(".dev", "").replace(".double", "").replace(".simulator", "")
Expand Down
Loading

0 comments on commit bd57366

Please sign in to comment.