languages

A collection of programs made with different programming languages.
git clone git://evanalba.com/languages
Log | Files | Refs

generated_plugins.cmake (782B)


      1 #
      2 # Generated file, do not edit.
      3 #
      4 
      5 list(APPEND FLUTTER_PLUGIN_LIST
      6   file_selector_linux
      7   url_launcher_linux
      8 )
      9 
     10 list(APPEND FLUTTER_FFI_PLUGIN_LIST
     11 )
     12 
     13 set(PLUGIN_BUNDLED_LIBRARIES)
     14 
     15 foreach(plugin ${FLUTTER_PLUGIN_LIST})
     16   add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin})
     17   target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)
     18   list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
     19   list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
     20 endforeach(plugin)
     21 
     22 foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
     23   add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin})
     24   list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
     25 endforeach(ffi_plugin)