feat: add tauri basic structure

This commit is contained in:
YunYouJun
2025-08-17 06:35:52 +08:00
parent 0ec5a4d51e
commit 5045f7f91b
64 changed files with 6410 additions and 1314 deletions

View File

@@ -0,0 +1,21 @@
# Uncomment the next line to define a global platform for your project
target 'cook_iOS' do
platform :ios, '13.0'
# Pods for cook_iOS
end
target 'cook_macOS' do
platform :osx, '11.0'
# Pods for cook_macOS
end
# Delete the deployment target for iOS and macOS, causing it to be inherited from the Podfile
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
config.build_settings.delete 'MACOSX_DEPLOYMENT_TARGET'
end
end
end