Skip to content

Commit a676f3f

Browse files
VisualGMQmingqian.gui
authored andcommitted
update
1 parent ebb2cb6 commit a676f3f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+94662
-7
lines changed

engine/engine/3rdlibs/CMakeLists.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ add_subdirectory(tomlplusplus)
4949

5050
add_subdirectory(implot)
5151

52+
set(QJS_BUILD_COMPILER ON)
53+
set(QJS_BUILD_REPL ON)
54+
add_subdirectory(quickjs)
55+
5256
mark_as_3rdlib(SDL3-static)
5357
mark_as_3rdlib(SDL3-shared)
5458
mark_as_3rdlib(SDL_uclibc)
@@ -59,4 +63,7 @@ mark_as_3rdlib(stb_image)
5963
mark_as_3rdlib(imgui)
6064
mark_as_3rdlib(implot)
6165
mark_as_3rdlib(tinygltf)
62-
mark_as_3rdlib(tomlplusplus_tomlplusplus)
66+
mark_as_3rdlib(tomlplusplus_tomlplusplus)
67+
mark_as_3rdlib(qjs)
68+
mark_as_3rdlib(qjsc)
69+
mark_as_3rdlib(qjs_exe)
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Don't show changes in generated files when doing git diff
2+
3+
gen/** -diff
4+
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
*.a
2+
*.orig
3+
*.so
4+
.obj/
5+
build/
6+
unicode/
7+
.idea
8+
cmake-*
9+
.vs
10+
out/
11+
CMakeUserPresets.json
12+
fuzz
13+
.vscode/
14+
microbench*.txt
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[submodule "test262"]
2+
path = test262
3+
url = https://github.com/tc39/test262
4+
shallow = true
5+
update = none

0 commit comments

Comments
 (0)