File tree Expand file tree Collapse file tree 2 files changed +1
-11
lines changed Expand file tree Collapse file tree 2 files changed +1
-11
lines changed Original file line number Diff line number Diff line change 10
10
cmake_minimum_required (VERSION 3.13 )
11
11
set (CMAKE_VERBOSE_MAKEFILE on )
12
12
13
- # Copy jsc headers into JavaScriptCore subdirectory
14
- get_target_property (JSC_PREFAB_INCLUDE_DIR jsc INTERFACE_INCLUDE_DIRECTORIES )
15
- set (JSC_INCLUDE_DIR ${CMAKE_CURRENT_BINARY_DIR} /include )
16
- file (MAKE_DIRECTORY ${JSC_INCLUDE_DIR} )
17
- file (GLOB JSC_HEADERS "${JSC_PREFAB_INCLUDE_DIR} /*.h" )
18
- foreach (HEADER ${JSC_HEADERS} )
19
- file (COPY ${HEADER} DESTINATION "${JSC_INCLUDE_DIR} /JavaScriptCore" )
20
- endforeach ()
21
-
22
13
add_compile_options (
23
14
-fexceptions
24
15
-frtti
@@ -34,7 +25,6 @@ add_library(jscruntime
34
25
JSCRuntime.cpp )
35
26
36
27
target_include_directories (jscruntime PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} )
37
- target_include_directories (jscruntime PRIVATE ${JSC_INCLUDE_DIR} )
38
28
target_merge_so (jscruntime )
39
29
40
30
target_link_libraries (jscruntime
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ fresco = "3.4.0"
21
21
infer-annotation = " 0.18.0"
22
22
javax-annotation-api = " 1.3.2"
23
23
javax-inject = " 1"
24
- jsc-android = " 2026004.0.0 "
24
+ jsc-android = " 2026004.0.1 "
25
25
jsr305 = " 3.0.2"
26
26
junit = " 4.13.2"
27
27
kotlin = " 2.0.21"
You can’t perform that action at this time.
0 commit comments