Skip to content

Commit caf8fe9

Browse files
chore: remove quickjs-ng dependency from cmake
1 parent 1e91629 commit caf8fe9

1 file changed

Lines changed: 1 addition & 10 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,6 @@ FetchContent_Declare(
3030
set(BUILD_EXAMPLES OFF CACHE BOOL "" FORCE)
3131
set(BUILD_GAMES OFF CACHE BOOL "" FORCE)
3232

33-
# quickjs-ng (Next-generation QuickJS engine)
34-
FetchContent_Declare(
35-
quickjs-ng
36-
GIT_REPOSITORY https://github.com/quickjs-ng/quickjs.git
37-
GIT_TAG v0.15.1
38-
)
39-
set(QJS_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE)
40-
4133
# qjswrapper (C++ wrapper around QuickJS)
4234
FetchContent_Declare(
4335
qjswrapper
@@ -46,7 +38,7 @@ FetchContent_Declare(
4638
)
4739

4840
# Bring all dependencies into the build tree automatically
49-
FetchContent_MakeAvailable(cli11 raylib quickjs-ng qjswrapper)
41+
FetchContent_MakeAvailable(cli11 raylib qjswrapper)
5042

5143
# -----------------------------------------------------------------------------
5244
# 2. Executable Target
@@ -76,6 +68,5 @@ target_include_directories(vectorjs PRIVATE src)
7668
target_link_libraries(vectorjs PRIVATE
7769
CLI11::CLI11
7870
raylib
79-
qjs
8071
qjswrapper
8172
)

0 commit comments

Comments
 (0)