refactor v8 config for cc_editor (#217)

Co-authored-by: minggo <xiaoming.zhang@chukong-inc.com>
This commit is contained in:
wkp 2022-02-08 11:10:23 +08:00 committed by GitHub
parent 7c33bc6102
commit 8e1e22ce0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 4 deletions

View File

@ -166,8 +166,9 @@ set_target_properties(tcmalloc PROPERTIES
set(se_libs_name)
if(USE_SE_V8)
if(CC_EDITOR)
message(VERBOSE "CC_EDITOR USE V8 FROM NODEJS")
elseif(USE_SE_V8)
add_library(v8 SHARED IMPORTED GLOBAL)
set_target_properties(v8 PROPERTIES
IMPORTED_LOCATION ${CMAKE_CURRENT_LIST_DIR}/libs/v8.dll
@ -194,8 +195,8 @@ if(USE_SE_V8)
)
set(se_libs_name v8)
elseif(NOT CC_EDITOR)
message(FATAL_ERROR "Only V8 is supported!")
else()
message(FATAL_ERROR "Only V8 is supported!")
endif()
############################# glslang #############################