Skip to content

Commit cac49ce

Browse files
committed
Update to latest rapidjson because python compile hits a bug
1 parent 5d6e360 commit cac49ce

File tree

3 files changed

+13
-15
lines changed

3 files changed

+13
-15
lines changed

quick_compile.bat

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
setlocal
22

3-
SET MAYA_VERSION=2026
3+
SET MAYA_VERSION=2024
44
REM "vs" "ninja"
55
REM use VS for the debugger, otherwise use NINJA
66
REM Until I figure out how to debug using nvim
@@ -12,10 +12,9 @@ SET BUILDDIR=mayabuild_%BUILDTYPE%_%MAYA_VERSION%_%BACKEND%
1212
if not exist %BUILDDIR%\ (
1313
meson setup %BUILDDIR% ^
1414
-Dmaya:maya_version=%MAYA_VERSION% ^
15-
-Dmaya:maya_devkit_base=D:\Autodesk\MayaDev\Maya2026_2\devkitBase ^
16-
-Dmaya_build=false ^
17-
-Dpython_build=true ^
18-
-Dpython_script_build=true ^
15+
-Dmaya_build=true ^
16+
-Dpython_build=false ^
17+
-Dpython_script_build=false ^
1918
--buildtype %BUILDTYPE% --vsenv --backend %BACKEND%
2019
)
2120

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
project('rapidjson', 'cpp', version: '1.1.0', license: 'MIT')
2+
3+
rapidjson_inc = include_directories('include')
4+
rapidjson_dep = declare_dependency(include_directories: rapidjson_inc)

subprojects/rapidjson.wrap

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
1-
[wrap-file]
2-
directory = rapidjson-1.1.0
3-
source_url = https://github.com/Tencent/rapidjson/archive/v1.1.0.tar.gz
4-
source_filename = rapidjson-1.1.0.tar.gz
5-
source_hash = bf7ced29704a1e696fbccf2a2b4ea068e7774fa37f6d7dd4039d0787f8bed98e
6-
patch_filename = rapidjson_1.1.0-2_patch.zip
7-
patch_url = https://wrapdb.mesonbuild.com/v2/rapidjson_1.1.0-2/get_patch
8-
patch_hash = c1480d0ecef09dbaa4b4d85d86090205386fb2c7e87f4f158b20dbbda14c9afc
9-
source_fallback_url = https://github.com/mesonbuild/wrapdb/releases/download/rapidjson_1.1.0-2/rapidjson-1.1.0.tar.gz
10-
wrapdb_version = 1.1.0-2
1+
[wrap-git]
2+
url = https://github.com/Tencent/rapidjson.git
3+
revision = 24b5e7a8b27f42fa16b96fc70aade9106cf7102f
4+
5+
patch_directory = rapidjson
116

127
[provide]
138
rapidjson = rapidjson_dep

0 commit comments

Comments
 (0)