nandi/vflutter_ffipublic Fork 0
f7c3825dc671305345e20a62ea6ac8facbc903bb
Commits
Clone
git clone https://git.rickub.com/nandi/vflutter_ffi.git
git clone ssh://git@rickub.com/nandi/vflutter_ffi.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

vflutter_ffi.podspec · 24 lines · 907 BGDScript3 Blame HistoryRaw
Initial commit: V -> Flutter FFI plugin ad0ccda nandi 10h ago1Pod::Spec.new do |s|
2 s.name = 'vflutter_ffi'
3 s.version = '0.1.0'
4 s.summary = 'V language runtime bridged to Flutter via dart:ffi.'
5 s.homepage = 'https://example.com'
6 s.license = { :file => '../LICENSE' }
7 s.author = { 'you' => 'you@example.com' }
8 s.source = { :path => '.' }
9 s.source_files = 'Classes/**/*'
10 s.dependency 'Flutter'
11 s.platform = :ios, '12.0'
12
13 # V's generated C is machine output.
14 s.compiler_flags = '-w'
15
16 # The V runtime initialises through __attribute__((constructor)). In a static
17 # archive the linker drops objects nothing references, which would silently
18 # skip that. -all_load keeps them, and vf_init() is the belt-and-braces path.
19 s.pod_target_xcconfig = {
20 'DEFINES_MODULE' => 'YES',
21 'OTHER_LDFLAGS' => '-all_load',
22 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386'
23 }
24end