Skip to content

Commit

Permalink
Update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
edunad committed Sep 29, 2024
1 parent 97434ff commit ea4bcac
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
7 changes: 2 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ endif()

if(RAWRBOX_BUILD_RAWRBOX_RENDER)
if(NOT WIN32 AND RAWRBOX_USE_WAYLAND)
CPMAddPackage("https://gitlab.freedesktop.org/wayland/weston@13.0.3")
CPMAddPackage("https://gitlab.freedesktop.org/wayland/weston@14.0.0")
endif()
endif()

Expand All @@ -230,11 +230,8 @@ if(RAWRBOX_BUILD_RAWRBOX_NETWORK)
USE_CACHE
OFF
GIT_TAG
2.2.1
2.2.2
OPTIONS
#"ASM686 FALSE"
#"AMD64 FALSE"

"ZLIB_COMPAT ON"
"ZLIB_BUILD_EXAMPLES OFF"
"ZLIB_ENABLE_TESTS OFF"
Expand Down
2 changes: 1 addition & 1 deletion rawrbox.scripting/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ CPMAddPackage(
GITHUB_REPOSITORY
luau-lang/luau
GIT_TAG
0.644
0.645
OPTIONS
"LUAU_BUILD_CLI OFF"
"LUAU_BUILD_TESTS OFF"
Expand Down
2 changes: 0 additions & 2 deletions rawrbox.scripting/src/mod.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
#include <rawrbox/scripting/mod.hpp>
#include <rawrbox/utils/path.hpp>

#include <Luau/Compiler.h>

namespace rawrbox {
Mod::Mod(std::string id, std::filesystem::path folderPath, glz::json_t metadata) : _L(luaL_newstate()), _modTable(_L), _folder(std::move(folderPath)), _id(std::move(id)), _metadata(std::move(metadata)) {}
Mod::~Mod() {
Expand Down
4 changes: 4 additions & 0 deletions rawrbox.scripting/src/utils/lua.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
#include <rawrbox/utils/string.hpp>

#include <Luau/Compiler.h>

LUAU_FASTFLAG(LuauSolverV2);
LUAU_DYNAMIC_FASTINTVARIABLE(LuauTypeSolverRelease, 900)

#include <fmt/format.h>

namespace rawrbox {
Expand Down

0 comments on commit ea4bcac

Please sign in to comment.