We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a914d5 commit cb82accCopy full SHA for cb82acc
cmake/yup_standalone.cmake
@@ -185,10 +185,10 @@ function (yup_standalone_app)
185
#-sASYNCIFY=1
186
-sEXPORTED_RUNTIME_METHODS=ccall,cwrap
187
-sDEFAULT_LIBRARY_FUNCS_TO_INCLUDE='$dynCall'
188
- --shell-file "${YUP_ARG_CUSTOM_SHELL}")
+ --shell-file=${YUP_ARG_CUSTOM_SHELL})
189
190
- foreach (preload_file IN LISTS YUP_ARG_PRELOAD_FILES)
191
- list (APPEND additional_link_options --preload-file "${preload_file}")
+ foreach (preload_file IN ITEMS ${YUP_ARG_PRELOAD_FILES})
+ list (APPEND additional_link_options "--preload-file=${preload_file}")
192
endforeach()
193
194
set (target_copy_dest "$<TARGET_FILE_DIR:${target_name}>")
0 commit comments