mirror of https://github.com/axmolengine/axmol.git
Fix lua build for win64 and 1 warning
This commit is contained in:
parent
5d0565b900
commit
fa1f2f2d33
|
@ -45,7 +45,7 @@ extern bool CC_DLL cc_assert_script_compatible(const char* msg);
|
|||
{ \
|
||||
if (!(cond)) \
|
||||
{ \
|
||||
if (!cc_assert_script_compatible(msg) && strlen(msg)) \
|
||||
if (msg && *msg && !cc_assert_script_compatible(msg)) \
|
||||
cocos2d::log("Assert failed: %s", msg); \
|
||||
CC_ASSERT(cond); \
|
||||
} \
|
||||
|
|
|
@ -161,6 +161,10 @@ add_library(${ADXE_LUA_LIB} STATIC ${lua_bindings_files})
|
|||
target_link_libraries(${ADXE_LUA_LIB} ${ADXE_CORE_LIB})
|
||||
add_dependencies(${ADXE_LUA_LIB} ${ADXE_CORE_LIB})
|
||||
|
||||
if(MSVC)
|
||||
target_compile_options(${ADXE_LUA_LIB} PRIVATE /bigobj)
|
||||
endif()
|
||||
|
||||
get_target_property(lua_ext_depend thirdparty CC_LUA_DEPEND)
|
||||
target_link_libraries(${ADXE_LUA_LIB} ${lua_ext_depend})
|
||||
|
||||
|
|
Loading…
Reference in New Issue