Advertisement
FlyFar

generated_plugins.cmake

Jul 24th, 2023
1,549
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 0.75 KB | Cybersecurity | 0 0
  1. #
  2. # Generated file, do not edit.
  3. #
  4.  
  5. list(APPEND FLUTTER_PLUGIN_LIST
  6. )
  7.  
  8. list(APPEND FLUTTER_FFI_PLUGIN_LIST
  9. )
  10.  
  11. set(PLUGIN_BUNDLED_LIBRARIES)
  12.  
  13. foreach(plugin ${FLUTTER_PLUGIN_LIST})
  14.   add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin})
  15.   target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)
  16.   list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
  17.   list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
  18. endforeach(plugin)
  19.  
  20. foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
  21.   add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin})
  22.   list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
  23. endforeach(ffi_plugin)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement