@simonklee/opentui-tex-native-source 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +674 -0
- package/LICENSE-PROJECT +21 -0
- package/README.md +7 -0
- package/build.zig +112 -0
- package/build.zig.zon +12 -0
- package/native/lib.zig +280 -0
- package/native/nanosvg.c +4 -0
- package/native/vendor/.bootstrap-v5 +1 -0
- package/native/vendor/LICENSE-NANOSVG +18 -0
- package/native/vendor/microtex/.clang-format +26 -0
- package/native/vendor/microtex/.github/workflows/ubuntu.yml +92 -0
- package/native/vendor/microtex/.github/workflows/windows-gdi.yml +34 -0
- package/native/vendor/microtex/.github/workflows/windows-qt.yml +52 -0
- package/native/vendor/microtex/CMakeLists.txt +110 -0
- package/native/vendor/microtex/LICENSE +21 -0
- package/native/vendor/microtex/MicroTeXInstall.cmake +42 -0
- package/native/vendor/microtex/README.md +600 -0
- package/native/vendor/microtex/build.zig +209 -0
- package/native/vendor/microtex/clatexmath.wrap +6 -0
- package/native/vendor/microtex/doc/meson.build +38 -0
- package/native/vendor/microtex/doc/microtex-doc.toml.in +47 -0
- package/native/vendor/microtex/doc/microtex.svg +39 -0
- package/native/vendor/microtex/doc/urlmap.js +6 -0
- package/native/vendor/microtex/example/gtk/CMakeLists.txt +68 -0
- package/native/vendor/microtex/example/gtk/gtk_main.c +170 -0
- package/native/vendor/microtex/example/gtk/isamples.cpp +21 -0
- package/native/vendor/microtex/example/gtk/isamples.h +15 -0
- package/native/vendor/microtex/example/gtk/meson.build +27 -0
- package/native/vendor/microtex/example/gtk/microtex-gtk.gresource.xml +6 -0
- package/native/vendor/microtex/example/gtk/microtex-gtk.ui +117 -0
- package/native/vendor/microtex/example/gtkmm/CMakeLists.txt +19 -0
- package/native/vendor/microtex/example/gtkmm/gtkmm_main.cpp +531 -0
- package/native/vendor/microtex/example/gtkmm/meson.build +19 -0
- package/native/vendor/microtex/example/memcheck/CMakeLists.txt +12 -0
- package/native/vendor/microtex/example/memcheck/mem_check_main.cpp +154 -0
- package/native/vendor/microtex/example/qt/CMakeLists.txt +37 -0
- package/native/vendor/microtex/example/qt/meson.build +25 -0
- package/native/vendor/microtex/example/qt/qt_main.cpp +70 -0
- package/native/vendor/microtex/example/qt/qt_mainwindow.cpp +107 -0
- package/native/vendor/microtex/example/qt/qt_mainwindow.h +40 -0
- package/native/vendor/microtex/example/qt/qt_skiatexwidget.cpp +149 -0
- package/native/vendor/microtex/example/qt/qt_skiatexwidget.h +48 -0
- package/native/vendor/microtex/example/qt/qt_tex_render.h +15 -0
- package/native/vendor/microtex/example/qt/qt_texqmlitem.cpp +56 -0
- package/native/vendor/microtex/example/qt/qt_texqmlitem.h +31 -0
- package/native/vendor/microtex/example/qt/qt_texwidget.cpp +62 -0
- package/native/vendor/microtex/example/qt/qt_texwidget.h +31 -0
- package/native/vendor/microtex/example/qtpng/CMakeLists.txt +11 -0
- package/native/vendor/microtex/example/qtpng/latex2png.cpp +115 -0
- package/native/vendor/microtex/example/samples/samples.cpp +52 -0
- package/native/vendor/microtex/example/samples/samples.h +32 -0
- package/native/vendor/microtex/example/win32/CMakeLists.txt +15 -0
- package/native/vendor/microtex/example/win32/meson.build +18 -0
- package/native/vendor/microtex/example/win32/win32_main.cpp +375 -0
- package/native/vendor/microtex/githooks/pre-commit +19 -0
- package/native/vendor/microtex/githooks/pre-push +103 -0
- package/native/vendor/microtex/lib/CMakeLists.txt +234 -0
- package/native/vendor/microtex/lib/atom/atom.cpp +14 -0
- package/native/vendor/microtex/lib/atom/atom.h +96 -0
- package/native/vendor/microtex/lib/atom/atom_accent.cpp +115 -0
- package/native/vendor/microtex/lib/atom/atom_accent.h +53 -0
- package/native/vendor/microtex/lib/atom/atom_basic.cpp +146 -0
- package/native/vendor/microtex/lib/atom/atom_basic.h +273 -0
- package/native/vendor/microtex/lib/atom/atom_box.cpp +41 -0
- package/native/vendor/microtex/lib/atom/atom_box.h +70 -0
- package/native/vendor/microtex/lib/atom/atom_char.cpp +99 -0
- package/native/vendor/microtex/lib/atom/atom_char.h +147 -0
- package/native/vendor/microtex/lib/atom/atom_delim.cpp +65 -0
- package/native/vendor/microtex/lib/atom/atom_delim.h +58 -0
- package/native/vendor/microtex/lib/atom/atom_fence.cpp +65 -0
- package/native/vendor/microtex/lib/atom/atom_fence.h +56 -0
- package/native/vendor/microtex/lib/atom/atom_font.cpp +20 -0
- package/native/vendor/microtex/lib/atom/atom_font.h +49 -0
- package/native/vendor/microtex/lib/atom/atom_frac.cpp +101 -0
- package/native/vendor/microtex/lib/atom/atom_frac.h +42 -0
- package/native/vendor/microtex/lib/atom/atom_matrix.cpp +756 -0
- package/native/vendor/microtex/lib/atom/atom_matrix.h +268 -0
- package/native/vendor/microtex/lib/atom/atom_misc.cpp +230 -0
- package/native/vendor/microtex/lib/atom/atom_misc.h +200 -0
- package/native/vendor/microtex/lib/atom/atom_operator.cpp +51 -0
- package/native/vendor/microtex/lib/atom/atom_operator.h +41 -0
- package/native/vendor/microtex/lib/atom/atom_root.cpp +61 -0
- package/native/vendor/microtex/lib/atom/atom_root.h +27 -0
- package/native/vendor/microtex/lib/atom/atom_row.cpp +334 -0
- package/native/vendor/microtex/lib/atom/atom_row.h +176 -0
- package/native/vendor/microtex/lib/atom/atom_scripts.cpp +182 -0
- package/native/vendor/microtex/lib/atom/atom_scripts.h +52 -0
- package/native/vendor/microtex/lib/atom/atom_sideset.cpp +92 -0
- package/native/vendor/microtex/lib/atom/atom_sideset.h +24 -0
- package/native/vendor/microtex/lib/atom/atom_space.cpp +22 -0
- package/native/vendor/microtex/lib/atom/atom_space.h +38 -0
- package/native/vendor/microtex/lib/atom/atom_stack.cpp +117 -0
- package/native/vendor/microtex/lib/atom/atom_stack.h +103 -0
- package/native/vendor/microtex/lib/atom/atom_text.cpp +17 -0
- package/native/vendor/microtex/lib/atom/atom_text.h +33 -0
- package/native/vendor/microtex/lib/atom/atom_vrow.cpp +96 -0
- package/native/vendor/microtex/lib/atom/atom_vrow.h +47 -0
- package/native/vendor/microtex/lib/atom/atom_zstack.cpp +66 -0
- package/native/vendor/microtex/lib/atom/atom_zstack.h +37 -0
- package/native/vendor/microtex/lib/atom/colors_def.cpp +157 -0
- package/native/vendor/microtex/lib/atom/meson.build +50 -0
- package/native/vendor/microtex/lib/box/box.cpp +49 -0
- package/native/vendor/microtex/lib/box/box.h +184 -0
- package/native/vendor/microtex/lib/box/box_factory.cpp +162 -0
- package/native/vendor/microtex/lib/box/box_factory.h +24 -0
- package/native/vendor/microtex/lib/box/box_group.cpp +503 -0
- package/native/vendor/microtex/lib/box/box_group.h +285 -0
- package/native/vendor/microtex/lib/box/box_single.cpp +179 -0
- package/native/vendor/microtex/lib/box/box_single.h +157 -0
- package/native/vendor/microtex/lib/box/meson.build +15 -0
- package/native/vendor/microtex/lib/core/debug_config.cpp +3 -0
- package/native/vendor/microtex/lib/core/debug_config.h +24 -0
- package/native/vendor/microtex/lib/core/formula.cpp +180 -0
- package/native/vendor/microtex/lib/core/formula.h +137 -0
- package/native/vendor/microtex/lib/core/formula_def.cpp +167 -0
- package/native/vendor/microtex/lib/core/glue.cpp +108 -0
- package/native/vendor/microtex/lib/core/glue.h +55 -0
- package/native/vendor/microtex/lib/core/localized_num.cpp +51 -0
- package/native/vendor/microtex/lib/core/meson.build +19 -0
- package/native/vendor/microtex/lib/core/parser.cpp +874 -0
- package/native/vendor/microtex/lib/core/parser.h +306 -0
- package/native/vendor/microtex/lib/core/split.cpp +185 -0
- package/native/vendor/microtex/lib/core/split.h +40 -0
- package/native/vendor/microtex/lib/env/env.cpp +141 -0
- package/native/vendor/microtex/lib/env/env.h +221 -0
- package/native/vendor/microtex/lib/env/meson.build +11 -0
- package/native/vendor/microtex/lib/env/units.cpp +109 -0
- package/native/vendor/microtex/lib/env/units.h +61 -0
- package/native/vendor/microtex/lib/graphic/font_style.cpp +63 -0
- package/native/vendor/microtex/lib/graphic/font_style.h +61 -0
- package/native/vendor/microtex/lib/graphic/graphic.cpp +38 -0
- package/native/vendor/microtex/lib/graphic/graphic.h +314 -0
- package/native/vendor/microtex/lib/graphic/graphic_basic.cpp +44 -0
- package/native/vendor/microtex/lib/graphic/graphic_basic.h +131 -0
- package/native/vendor/microtex/lib/graphic/meson.build +13 -0
- package/native/vendor/microtex/lib/macro/macro.cpp +143 -0
- package/native/vendor/microtex/lib/macro/macro.h +155 -0
- package/native/vendor/microtex/lib/macro/macro_accent.cpp +50 -0
- package/native/vendor/microtex/lib/macro/macro_accent.h +61 -0
- package/native/vendor/microtex/lib/macro/macro_boxes.h +68 -0
- package/native/vendor/microtex/lib/macro/macro_colors.cpp +42 -0
- package/native/vendor/microtex/lib/macro/macro_colors.h +42 -0
- package/native/vendor/microtex/lib/macro/macro_decl.h +16 -0
- package/native/vendor/microtex/lib/macro/macro_def.cpp +418 -0
- package/native/vendor/microtex/lib/macro/macro_delims.cpp +56 -0
- package/native/vendor/microtex/lib/macro/macro_delims.h +73 -0
- package/native/vendor/microtex/lib/macro/macro_env.h +212 -0
- package/native/vendor/microtex/lib/macro/macro_fonts.cpp +53 -0
- package/native/vendor/microtex/lib/macro/macro_fonts.h +78 -0
- package/native/vendor/microtex/lib/macro/macro_frac.cpp +138 -0
- package/native/vendor/microtex/lib/macro/macro_frac.h +50 -0
- package/native/vendor/microtex/lib/macro/macro_misc.cpp +211 -0
- package/native/vendor/microtex/lib/macro/macro_misc.h +217 -0
- package/native/vendor/microtex/lib/macro/macro_scripts.cpp +32 -0
- package/native/vendor/microtex/lib/macro/macro_scripts.h +17 -0
- package/native/vendor/microtex/lib/macro/macro_sizes.h +110 -0
- package/native/vendor/microtex/lib/macro/macro_space.cpp +31 -0
- package/native/vendor/microtex/lib/macro/macro_space.h +17 -0
- package/native/vendor/microtex/lib/macro/macro_styles.cpp +45 -0
- package/native/vendor/microtex/lib/macro/macro_styles.h +22 -0
- package/native/vendor/microtex/lib/macro/macro_types.h +48 -0
- package/native/vendor/microtex/lib/macro/meson.build +33 -0
- package/native/vendor/microtex/lib/meson.build +102 -0
- package/native/vendor/microtex/lib/microtex.cpp +208 -0
- package/native/vendor/microtex/lib/microtex.h +225 -0
- package/native/vendor/microtex/lib/microtexConfig.cmake.in +2 -0
- package/native/vendor/microtex/lib/microtexapi.h +22 -0
- package/native/vendor/microtex/lib/microtexconfig.h.in +7 -0
- package/native/vendor/microtex/lib/microtexexport.h +31 -0
- package/native/vendor/microtex/lib/otf/clm.cpp +405 -0
- package/native/vendor/microtex/lib/otf/clm.h +61 -0
- package/native/vendor/microtex/lib/otf/fontsense.cpp +191 -0
- package/native/vendor/microtex/lib/otf/fontsense.h +20 -0
- package/native/vendor/microtex/lib/otf/glyph.cpp +53 -0
- package/native/vendor/microtex/lib/otf/glyph.h +384 -0
- package/native/vendor/microtex/lib/otf/math_consts.h +154 -0
- package/native/vendor/microtex/lib/otf/meson.build +18 -0
- package/native/vendor/microtex/lib/otf/otf.cpp +84 -0
- package/native/vendor/microtex/lib/otf/otf.h +177 -0
- package/native/vendor/microtex/lib/otf/otfconfig.h +32 -0
- package/native/vendor/microtex/lib/otf/path.cpp +187 -0
- package/native/vendor/microtex/lib/otf/path.h +120 -0
- package/native/vendor/microtex/lib/render/builder.cpp +68 -0
- package/native/vendor/microtex/lib/render/builder.h +73 -0
- package/native/vendor/microtex/lib/render/meson.build +11 -0
- package/native/vendor/microtex/lib/render/render.cpp +136 -0
- package/native/vendor/microtex/lib/render/render.h +59 -0
- package/native/vendor/microtex/lib/unimath/font_meta.h +22 -0
- package/native/vendor/microtex/lib/unimath/font_src.cpp +21 -0
- package/native/vendor/microtex/lib/unimath/font_src.h +61 -0
- package/native/vendor/microtex/lib/unimath/math_type.cpp +318 -0
- package/native/vendor/microtex/lib/unimath/math_type.h +105 -0
- package/native/vendor/microtex/lib/unimath/meson.build +18 -0
- package/native/vendor/microtex/lib/unimath/uni_char.cpp +121 -0
- package/native/vendor/microtex/lib/unimath/uni_char.h +109 -0
- package/native/vendor/microtex/lib/unimath/uni_font.cpp +248 -0
- package/native/vendor/microtex/lib/unimath/uni_font.h +139 -0
- package/native/vendor/microtex/lib/unimath/uni_symbol.cpp +2929 -0
- package/native/vendor/microtex/lib/unimath/uni_symbol.h +31 -0
- package/native/vendor/microtex/lib/utils/dict_tree.h +68 -0
- package/native/vendor/microtex/lib/utils/exceptions.h +61 -0
- package/native/vendor/microtex/lib/utils/log.h +34 -0
- package/native/vendor/microtex/lib/utils/meson.build +18 -0
- package/native/vendor/microtex/lib/utils/nums.h +24 -0
- package/native/vendor/microtex/lib/utils/string_utils.cpp +85 -0
- package/native/vendor/microtex/lib/utils/string_utils.h +130 -0
- package/native/vendor/microtex/lib/utils/types.h +152 -0
- package/native/vendor/microtex/lib/utils/utf.cpp +115 -0
- package/native/vendor/microtex/lib/utils/utf.h +58 -0
- package/native/vendor/microtex/lib/utils/utils.cpp +40 -0
- package/native/vendor/microtex/lib/utils/utils.h +88 -0
- package/native/vendor/microtex/lib/wrapper/byte_seq.cpp +46 -0
- package/native/vendor/microtex/lib/wrapper/byte_seq.h +70 -0
- package/native/vendor/microtex/lib/wrapper/callback.cpp +10 -0
- package/native/vendor/microtex/lib/wrapper/callback.h +72 -0
- package/native/vendor/microtex/lib/wrapper/cwrapper.cpp +206 -0
- package/native/vendor/microtex/lib/wrapper/cwrapper.h +305 -0
- package/native/vendor/microtex/lib/wrapper/graphic_wrapper.cpp +211 -0
- package/native/vendor/microtex/lib/wrapper/graphic_wrapper.h +159 -0
- package/native/vendor/microtex/lib/wrapper/meson.build +22 -0
- package/native/vendor/microtex/meson.build +75 -0
- package/native/vendor/microtex/meson_options.txt +29 -0
- package/native/vendor/microtex/platform/cairo/CMakeLists.txt +36 -0
- package/native/vendor/microtex/platform/cairo/graphic_cairo.cpp +384 -0
- package/native/vendor/microtex/platform/cairo/graphic_cairo.h +119 -0
- package/native/vendor/microtex/platform/cairo/meson.build +47 -0
- package/native/vendor/microtex/platform/cairo/microtex-cairoConfig.cmake.in +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/.metadata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/CHANGELOG.md +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/LICENSE +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/README.md +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/analysis_options.yaml +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/build.gradle +56 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/settings.gradle +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/src/main/AndroidManifest.xml +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/src/main/kotlin/io/nano/microtex/microtex/MicrotexPlugin.kt +35 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/.metadata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/README.md +16 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/analysis_options.yaml +31 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/build.gradle +68 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/debug/AndroidManifest.xml +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/AndroidManifest.xml +34 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/kotlin/io/nano/microtex/microtex_example/MainActivity.kt +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable/launch_background.xml +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values/styles.xml +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values-night/styles.xml +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/profile/AndroidManifest.xml +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/build.gradle +31 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle.properties +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/settings.gradle +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/AppFrameworkInfo.plist +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile +41 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile.lock +22 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/AppDelegate.swift +13 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +122 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +5 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/LaunchScreen.storyboard +37 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/Main.storyboard +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Info.plist +49 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Runner-Bridging-Header.h +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.pbxproj +549 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/contents.xcworkspacedata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/main.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_in_one.dart +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_screen.dart +208 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/convert_spans.dart +63 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/string_ext.dart +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/cmp.dart +118 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/draggable.dart +75 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/rich.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/split.dart +72 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_highlight_controller.dart +66 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_input_controller.dart +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/CMakeLists.txt +116 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/CMakeLists.txt +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.cc +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.h +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugins.cmake +24 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/main.cc +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.cc +104 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.h +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/GeneratedPluginRegistrant.swift +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile +40 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile.lock +22 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/AppDelegate.swift +9 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Base.lproj/MainMenu.xib +343 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/AppInfo.xcconfig +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Warnings.xcconfig +13 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/DebugProfile.entitlements +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Info.plist +32 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/MainFlutterWindow.swift +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Release.entitlements +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.pbxproj +633 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/contents.xcworkspacedata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.lock +191 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.yaml +56 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/test/widget_test.dart +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/CMakeLists.txt +95 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/CMakeLists.txt +103 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.cc +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.h +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugins.cmake +24 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/CMakeLists.txt +17 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/Runner.rc +121 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.cpp +61 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.h +33 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/main.cpp +43 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resource.h +16 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resources/app_icon.ico +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/runner.exe.manifest +20 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.cpp +64 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.h +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.cpp +245 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.h +98 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Assets/.gitkeep +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.m +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/SwiftMicrotexPlugin.swift +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/dummy.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/microtex.podspec +27 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/microtex.dart +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/bindings.dart +218 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/bounds.dart +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/context.dart +205 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontdesc.dart +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontmeta.dart +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/pathcache.dart +17 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/render.dart +291 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/texstyle.dart +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/textlayout.dart +93 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/widget.dart +163 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/CMakeLists.txt +33 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/include/microtex/microtex_plugin.h +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/microtex_plugin.cc +70 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/MicrotexPlugin.swift +20 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/dummy.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/microtex-Bridging-Header.h +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/microtex.podspec +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/nativelib/CMakeLists.txt +44 -0
- package/native/vendor/microtex/platform/flutter/microtex/nativelib/builddarwin.sh +108 -0
- package/native/vendor/microtex/platform/flutter/microtex/pubspec.yaml +37 -0
- package/native/vendor/microtex/platform/flutter/microtex/test/microtex_test.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/CMakeLists.txt +32 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/include/microtex/microtex_plugin.h +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/microtex_plugin.cpp +82 -0
- package/native/vendor/microtex/platform/gdi_win/CMakeLists.txt +20 -0
- package/native/vendor/microtex/platform/gdi_win/graphic_win32.cpp +352 -0
- package/native/vendor/microtex/platform/gdi_win/graphic_win32.h +137 -0
- package/native/vendor/microtex/platform/gdi_win/meson.build +39 -0
- package/native/vendor/microtex/platform/gtk/CMakeLists.txt +36 -0
- package/native/vendor/microtex/platform/gtk/meson.build +65 -0
- package/native/vendor/microtex/platform/gtk/microtex-gtkConfig.cmake.in +11 -0
- package/native/vendor/microtex/platform/gtk/microtexequation.cpp +708 -0
- package/native/vendor/microtex/platform/gtk/microtexequation.h +72 -0
- package/native/vendor/microtex/platform/qt/CMakeLists.txt +37 -0
- package/native/vendor/microtex/platform/qt/graphic_qt.cpp +355 -0
- package/native/vendor/microtex/platform/qt/graphic_qt.h +116 -0
- package/native/vendor/microtex/platform/qt/meson.build +38 -0
- package/native/vendor/microtex/platform/qt/microtex-qtConfig.cmake.in +7 -0
- package/native/vendor/microtex/platform/skia/CMakeLists.txt +46 -0
- package/native/vendor/microtex/platform/skia/graphic_skia.cpp +306 -0
- package/native/vendor/microtex/platform/skia/graphic_skia.h +125 -0
- package/native/vendor/microtex/platform/skia/microtex-skiaConfig.cmake.in +6 -0
- package/native/vendor/microtex/platform/wasm/CMakeLists.txt +38 -0
- package/native/vendor/microtex/platform/wasm/emscripten.cross +31 -0
- package/native/vendor/microtex/platform/wasm/main.cpp +15 -0
- package/native/vendor/microtex/platform/wasm/meson.build +8 -0
- package/native/vendor/microtex/platform/wasm/prebuild-example-meson.sh +21 -0
- package/native/vendor/microtex/platform/wasm/prebuild-example.sh +21 -0
- package/native/vendor/microtex/platform/wasm/prebuild-lib-meson.sh +28 -0
- package/native/vendor/microtex/platform/wasm/prebuild-lib.sh +31 -0
- package/native/vendor/microtex/platform/wasm/web/.babelrc +10 -0
- package/native/vendor/microtex/platform/wasm/web/example/examples.js +43 -0
- package/native/vendor/microtex/platform/wasm/web/example/hello.js +31 -0
- package/native/vendor/microtex/platform/wasm/web/example/index.html +55 -0
- package/native/vendor/microtex/platform/wasm/web/example/index.js +243 -0
- package/native/vendor/microtex/platform/wasm/web/example/styles.css +86 -0
- package/native/vendor/microtex/platform/wasm/web/example/utils.js +47 -0
- package/native/vendor/microtex/platform/wasm/web/lib/context.js +271 -0
- package/native/vendor/microtex/platform/wasm/web/lib/index.js +10 -0
- package/native/vendor/microtex/platform/wasm/web/lib/render.js +293 -0
- package/native/vendor/microtex/platform/wasm/web/lib/runtime.js +14 -0
- package/native/vendor/microtex/platform/wasm/web/lib/svg.js +237 -0
- package/native/vendor/microtex/platform/wasm/web/lib/textlayout.js +88 -0
- package/native/vendor/microtex/platform/wasm/web/package-lock.json +5931 -0
- package/native/vendor/microtex/platform/wasm/web/package.json +45 -0
- package/native/vendor/microtex/platform/wasm/web/publish-example.sh +17 -0
- package/native/vendor/microtex/platform/wasm/web/rollup.config.example.js +24 -0
- package/native/vendor/microtex/platform/wasm/web/rollup.config.lib.js +16 -0
- package/native/vendor/microtex/prebuilt/otf2clm.py +807 -0
- package/native/vendor/microtex/prebuilt/otf2clm.sh +9 -0
- package/native/vendor/microtex/prebuilt/preclms.sh +17 -0
- package/native/vendor/microtex/readme/example_bw_false.svg +680 -0
- package/native/vendor/microtex/readme/example_bw_true.svg +680 -0
- package/native/vendor/microtex/readme/example_cjk_trying.svg +54 -0
- package/native/vendor/microtex/readme/example_custom_symbols.svg +92 -0
- package/native/vendor/microtex/readme/example_debug.svg +764 -0
- package/native/vendor/microtex/readme/example_emoji.svg +199 -0
- package/native/vendor/microtex/readme/example_have_log.svg +79 -0
- package/native/vendor/microtex/readme/example_keep_trying.svg +101 -0
- package/native/vendor/microtex/readme/example_logos.svg +50 -0
- package/native/vendor/microtex/readme/example_ubuntu.png +0 -0
- package/native/vendor/microtex/readme/example_windows.png +0 -0
- package/native/vendor/microtex/readme/samples/sample_0.svg +665 -0
- package/native/vendor/microtex/readme/samples/sample_1.svg +1259 -0
- package/native/vendor/microtex/readme/samples/sample_10.svg +333 -0
- package/native/vendor/microtex/readme/samples/sample_11.svg +306 -0
- package/native/vendor/microtex/readme/samples/sample_2.svg +2461 -0
- package/native/vendor/microtex/readme/samples/sample_3.svg +2653 -0
- package/native/vendor/microtex/readme/samples/sample_4.svg +554 -0
- package/native/vendor/microtex/readme/samples/sample_5.svg +247 -0
- package/native/vendor/microtex/readme/samples/sample_6.svg +1082 -0
- package/native/vendor/microtex/readme/samples/sample_7.svg +518 -0
- package/native/vendor/microtex/readme/samples/sample_8.svg +529 -0
- package/native/vendor/microtex/readme/samples/sample_9.svg +1702 -0
- package/native/vendor/microtex/readme/samples.md +301 -0
- package/native/vendor/microtex/readme/tex_logo.svg +19 -0
- package/native/vendor/microtex/res/EXAMPLE.txt +25 -0
- package/native/vendor/microtex/res/SAMPLES.tex +946 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.otf +0 -0
- package/native/vendor/microtex/res/firamath/README.md +42 -0
- package/native/vendor/microtex/res/lm-math/README +92 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.clm1 +0 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.clm2 +0 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.otf +0 -0
- package/native/vendor/microtex/res/tex-gyre/README-TeX-Gyre-DejaVu-Math.txt +82 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm1 +0 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm2 +0 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.otf +0 -0
- package/native/vendor/microtex/res/xits/FONTLOG.txt +246 -0
- package/native/vendor/microtex/res/xits/OFL.txt +98 -0
- package/native/vendor/microtex/res/xits/README.txt +15 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.otf +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.otf +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.otf +0 -0
- package/native/vendor/microtex/test/clm/meson.build +10 -0
- package/native/vendor/microtex/test/clm/test_clm.cpp +140 -0
- package/native/vendor/microtex/test/env/meson.build +10 -0
- package/native/vendor/microtex/test/env/test_env.cpp +100 -0
- package/native/vendor/microtex/test/fuzzer/afl.native +20 -0
- package/native/vendor/microtex/test/fuzzer/fuzz.sh +135 -0
- package/native/vendor/microtex/test/fuzzer/fuzzer.cpp +61 -0
- package/native/vendor/microtex/test/fuzzer/generateSeed.java +33 -0
- package/native/vendor/microtex/test/fuzzer/meson.build +9 -0
- package/native/vendor/microtex/test/fuzzer/microtex.dict +3708 -0
- package/native/vendor/microtex/test/fuzzer/platform_none.cpp +100 -0
- package/native/vendor/microtex/test/has_filesystem.cpp +8 -0
- package/native/vendor/microtex/test/meson.build +6 -0
- package/native/vendor/nanosvg.h +3278 -0
- package/native/vendor/nanosvgrast.h +1472 -0
- package/native/vendor/zigtex/.github/assets/example.svg +27 -0
- package/native/vendor/zigtex/LICENSE +674 -0
- package/native/vendor/zigtex/README.md +52 -0
- package/native/vendor/zigtex/build.zig +52 -0
- package/native/vendor/zigtex/build.zig.zon +16 -0
- package/native/vendor/zigtex/fonts/latinmodern-math.clm2 +0 -0
- package/native/vendor/zigtex/src/main.zig +22 -0
- package/native/vendor/zigtex/src/root.zig +124 -0
- package/native/vendor/zigtex/src/svg.zig +273 -0
- package/native/vendor/zigtex/src/tex.zig +383 -0
- package/native/zigtex-0.16.patch +35 -0
- package/package.json +27 -0
- package/scripts/bootstrap-native +89 -0
|
@@ -0,0 +1,633 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 54;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXAggregateTarget section */
|
|
10
|
+
33CC111A2044C6BA0003C045 /* Flutter Assemble */ = {
|
|
11
|
+
isa = PBXAggregateTarget;
|
|
12
|
+
buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */;
|
|
13
|
+
buildPhases = (
|
|
14
|
+
33CC111E2044C6BF0003C045 /* ShellScript */,
|
|
15
|
+
);
|
|
16
|
+
dependencies = (
|
|
17
|
+
);
|
|
18
|
+
name = "Flutter Assemble";
|
|
19
|
+
productName = FLX;
|
|
20
|
+
};
|
|
21
|
+
/* End PBXAggregateTarget section */
|
|
22
|
+
|
|
23
|
+
/* Begin PBXBuildFile section */
|
|
24
|
+
0DE1925471E4F9668AA921C5 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F3AA1DE8363B8A9A8884CD3E /* Pods_Runner.framework */; };
|
|
25
|
+
335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; };
|
|
26
|
+
33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; };
|
|
27
|
+
33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; };
|
|
28
|
+
33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; };
|
|
29
|
+
33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; };
|
|
30
|
+
/* End PBXBuildFile section */
|
|
31
|
+
|
|
32
|
+
/* Begin PBXContainerItemProxy section */
|
|
33
|
+
33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = {
|
|
34
|
+
isa = PBXContainerItemProxy;
|
|
35
|
+
containerPortal = 33CC10E52044A3C60003C045 /* Project object */;
|
|
36
|
+
proxyType = 1;
|
|
37
|
+
remoteGlobalIDString = 33CC111A2044C6BA0003C045;
|
|
38
|
+
remoteInfo = FLX;
|
|
39
|
+
};
|
|
40
|
+
/* End PBXContainerItemProxy section */
|
|
41
|
+
|
|
42
|
+
/* Begin PBXCopyFilesBuildPhase section */
|
|
43
|
+
33CC110E2044A8840003C045 /* Bundle Framework */ = {
|
|
44
|
+
isa = PBXCopyFilesBuildPhase;
|
|
45
|
+
buildActionMask = 2147483647;
|
|
46
|
+
dstPath = "";
|
|
47
|
+
dstSubfolderSpec = 10;
|
|
48
|
+
files = (
|
|
49
|
+
);
|
|
50
|
+
name = "Bundle Framework";
|
|
51
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
52
|
+
};
|
|
53
|
+
/* End PBXCopyFilesBuildPhase section */
|
|
54
|
+
|
|
55
|
+
/* Begin PBXFileReference section */
|
|
56
|
+
05591634370C2318044CA982 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
|
|
57
|
+
333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = "<group>"; };
|
|
58
|
+
335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = "<group>"; };
|
|
59
|
+
33CC10ED2044A3C60003C045 /* microtex_example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = microtex_example.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
60
|
+
33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
|
61
|
+
33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = "<group>"; };
|
|
62
|
+
33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = "<group>"; };
|
|
63
|
+
33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = "<group>"; };
|
|
64
|
+
33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = "<group>"; };
|
|
65
|
+
33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = "<group>"; };
|
|
66
|
+
33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = "<group>"; };
|
|
67
|
+
33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = "<group>"; };
|
|
68
|
+
33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = "<group>"; };
|
|
69
|
+
33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = "<group>"; };
|
|
70
|
+
33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = "<group>"; };
|
|
71
|
+
6C3E144934AF12A54E4F0396 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
|
|
72
|
+
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = "<group>"; };
|
|
73
|
+
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = "<group>"; };
|
|
74
|
+
D9DFF003B0DD2ADA5BFE83FE /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
|
|
75
|
+
F3AA1DE8363B8A9A8884CD3E /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
76
|
+
/* End PBXFileReference section */
|
|
77
|
+
|
|
78
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
79
|
+
33CC10EA2044A3C60003C045 /* Frameworks */ = {
|
|
80
|
+
isa = PBXFrameworksBuildPhase;
|
|
81
|
+
buildActionMask = 2147483647;
|
|
82
|
+
files = (
|
|
83
|
+
0DE1925471E4F9668AA921C5 /* Pods_Runner.framework in Frameworks */,
|
|
84
|
+
);
|
|
85
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
86
|
+
};
|
|
87
|
+
/* End PBXFrameworksBuildPhase section */
|
|
88
|
+
|
|
89
|
+
/* Begin PBXGroup section */
|
|
90
|
+
33BA886A226E78AF003329D5 /* Configs */ = {
|
|
91
|
+
isa = PBXGroup;
|
|
92
|
+
children = (
|
|
93
|
+
33E5194F232828860026EE4D /* AppInfo.xcconfig */,
|
|
94
|
+
9740EEB21CF90195004384FC /* Debug.xcconfig */,
|
|
95
|
+
7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
|
|
96
|
+
333000ED22D3DE5D00554162 /* Warnings.xcconfig */,
|
|
97
|
+
);
|
|
98
|
+
path = Configs;
|
|
99
|
+
sourceTree = "<group>";
|
|
100
|
+
};
|
|
101
|
+
33CC10E42044A3C60003C045 = {
|
|
102
|
+
isa = PBXGroup;
|
|
103
|
+
children = (
|
|
104
|
+
33FAB671232836740065AC1E /* Runner */,
|
|
105
|
+
33CEB47122A05771004F2AC0 /* Flutter */,
|
|
106
|
+
33CC10EE2044A3C60003C045 /* Products */,
|
|
107
|
+
D73912EC22F37F3D000D13A0 /* Frameworks */,
|
|
108
|
+
892CC87B9FA3A80AD7C057A3 /* Pods */,
|
|
109
|
+
);
|
|
110
|
+
sourceTree = "<group>";
|
|
111
|
+
};
|
|
112
|
+
33CC10EE2044A3C60003C045 /* Products */ = {
|
|
113
|
+
isa = PBXGroup;
|
|
114
|
+
children = (
|
|
115
|
+
33CC10ED2044A3C60003C045 /* microtex_example.app */,
|
|
116
|
+
);
|
|
117
|
+
name = Products;
|
|
118
|
+
sourceTree = "<group>";
|
|
119
|
+
};
|
|
120
|
+
33CC11242044D66E0003C045 /* Resources */ = {
|
|
121
|
+
isa = PBXGroup;
|
|
122
|
+
children = (
|
|
123
|
+
33CC10F22044A3C60003C045 /* Assets.xcassets */,
|
|
124
|
+
33CC10F42044A3C60003C045 /* MainMenu.xib */,
|
|
125
|
+
33CC10F72044A3C60003C045 /* Info.plist */,
|
|
126
|
+
);
|
|
127
|
+
name = Resources;
|
|
128
|
+
path = ..;
|
|
129
|
+
sourceTree = "<group>";
|
|
130
|
+
};
|
|
131
|
+
33CEB47122A05771004F2AC0 /* Flutter */ = {
|
|
132
|
+
isa = PBXGroup;
|
|
133
|
+
children = (
|
|
134
|
+
335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */,
|
|
135
|
+
33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */,
|
|
136
|
+
33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */,
|
|
137
|
+
33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */,
|
|
138
|
+
);
|
|
139
|
+
path = Flutter;
|
|
140
|
+
sourceTree = "<group>";
|
|
141
|
+
};
|
|
142
|
+
33FAB671232836740065AC1E /* Runner */ = {
|
|
143
|
+
isa = PBXGroup;
|
|
144
|
+
children = (
|
|
145
|
+
33CC10F02044A3C60003C045 /* AppDelegate.swift */,
|
|
146
|
+
33CC11122044BFA00003C045 /* MainFlutterWindow.swift */,
|
|
147
|
+
33E51913231747F40026EE4D /* DebugProfile.entitlements */,
|
|
148
|
+
33E51914231749380026EE4D /* Release.entitlements */,
|
|
149
|
+
33CC11242044D66E0003C045 /* Resources */,
|
|
150
|
+
33BA886A226E78AF003329D5 /* Configs */,
|
|
151
|
+
);
|
|
152
|
+
path = Runner;
|
|
153
|
+
sourceTree = "<group>";
|
|
154
|
+
};
|
|
155
|
+
892CC87B9FA3A80AD7C057A3 /* Pods */ = {
|
|
156
|
+
isa = PBXGroup;
|
|
157
|
+
children = (
|
|
158
|
+
D9DFF003B0DD2ADA5BFE83FE /* Pods-Runner.debug.xcconfig */,
|
|
159
|
+
05591634370C2318044CA982 /* Pods-Runner.release.xcconfig */,
|
|
160
|
+
6C3E144934AF12A54E4F0396 /* Pods-Runner.profile.xcconfig */,
|
|
161
|
+
);
|
|
162
|
+
name = Pods;
|
|
163
|
+
path = Pods;
|
|
164
|
+
sourceTree = "<group>";
|
|
165
|
+
};
|
|
166
|
+
D73912EC22F37F3D000D13A0 /* Frameworks */ = {
|
|
167
|
+
isa = PBXGroup;
|
|
168
|
+
children = (
|
|
169
|
+
F3AA1DE8363B8A9A8884CD3E /* Pods_Runner.framework */,
|
|
170
|
+
);
|
|
171
|
+
name = Frameworks;
|
|
172
|
+
sourceTree = "<group>";
|
|
173
|
+
};
|
|
174
|
+
/* End PBXGroup section */
|
|
175
|
+
|
|
176
|
+
/* Begin PBXNativeTarget section */
|
|
177
|
+
33CC10EC2044A3C60003C045 /* Runner */ = {
|
|
178
|
+
isa = PBXNativeTarget;
|
|
179
|
+
buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */;
|
|
180
|
+
buildPhases = (
|
|
181
|
+
042BE9EE53538AC73E7D5826 /* [CP] Check Pods Manifest.lock */,
|
|
182
|
+
33CC10E92044A3C60003C045 /* Sources */,
|
|
183
|
+
33CC10EA2044A3C60003C045 /* Frameworks */,
|
|
184
|
+
33CC10EB2044A3C60003C045 /* Resources */,
|
|
185
|
+
33CC110E2044A8840003C045 /* Bundle Framework */,
|
|
186
|
+
3399D490228B24CF009A79C7 /* ShellScript */,
|
|
187
|
+
3E09AF51F0BB103F733F868A /* [CP] Embed Pods Frameworks */,
|
|
188
|
+
);
|
|
189
|
+
buildRules = (
|
|
190
|
+
);
|
|
191
|
+
dependencies = (
|
|
192
|
+
33CC11202044C79F0003C045 /* PBXTargetDependency */,
|
|
193
|
+
);
|
|
194
|
+
name = Runner;
|
|
195
|
+
productName = Runner;
|
|
196
|
+
productReference = 33CC10ED2044A3C60003C045 /* microtex_example.app */;
|
|
197
|
+
productType = "com.apple.product-type.application";
|
|
198
|
+
};
|
|
199
|
+
/* End PBXNativeTarget section */
|
|
200
|
+
|
|
201
|
+
/* Begin PBXProject section */
|
|
202
|
+
33CC10E52044A3C60003C045 /* Project object */ = {
|
|
203
|
+
isa = PBXProject;
|
|
204
|
+
attributes = {
|
|
205
|
+
LastSwiftUpdateCheck = 0920;
|
|
206
|
+
LastUpgradeCheck = 1300;
|
|
207
|
+
ORGANIZATIONNAME = "";
|
|
208
|
+
TargetAttributes = {
|
|
209
|
+
33CC10EC2044A3C60003C045 = {
|
|
210
|
+
CreatedOnToolsVersion = 9.2;
|
|
211
|
+
LastSwiftMigration = 1100;
|
|
212
|
+
ProvisioningStyle = Automatic;
|
|
213
|
+
SystemCapabilities = {
|
|
214
|
+
com.apple.Sandbox = {
|
|
215
|
+
enabled = 1;
|
|
216
|
+
};
|
|
217
|
+
};
|
|
218
|
+
};
|
|
219
|
+
33CC111A2044C6BA0003C045 = {
|
|
220
|
+
CreatedOnToolsVersion = 9.2;
|
|
221
|
+
ProvisioningStyle = Manual;
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
};
|
|
225
|
+
buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */;
|
|
226
|
+
compatibilityVersion = "Xcode 9.3";
|
|
227
|
+
developmentRegion = en;
|
|
228
|
+
hasScannedForEncodings = 0;
|
|
229
|
+
knownRegions = (
|
|
230
|
+
en,
|
|
231
|
+
Base,
|
|
232
|
+
);
|
|
233
|
+
mainGroup = 33CC10E42044A3C60003C045;
|
|
234
|
+
productRefGroup = 33CC10EE2044A3C60003C045 /* Products */;
|
|
235
|
+
projectDirPath = "";
|
|
236
|
+
projectRoot = "";
|
|
237
|
+
targets = (
|
|
238
|
+
33CC10EC2044A3C60003C045 /* Runner */,
|
|
239
|
+
33CC111A2044C6BA0003C045 /* Flutter Assemble */,
|
|
240
|
+
);
|
|
241
|
+
};
|
|
242
|
+
/* End PBXProject section */
|
|
243
|
+
|
|
244
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
245
|
+
33CC10EB2044A3C60003C045 /* Resources */ = {
|
|
246
|
+
isa = PBXResourcesBuildPhase;
|
|
247
|
+
buildActionMask = 2147483647;
|
|
248
|
+
files = (
|
|
249
|
+
33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */,
|
|
250
|
+
33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */,
|
|
251
|
+
);
|
|
252
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
253
|
+
};
|
|
254
|
+
/* End PBXResourcesBuildPhase section */
|
|
255
|
+
|
|
256
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
257
|
+
042BE9EE53538AC73E7D5826 /* [CP] Check Pods Manifest.lock */ = {
|
|
258
|
+
isa = PBXShellScriptBuildPhase;
|
|
259
|
+
buildActionMask = 2147483647;
|
|
260
|
+
files = (
|
|
261
|
+
);
|
|
262
|
+
inputFileListPaths = (
|
|
263
|
+
);
|
|
264
|
+
inputPaths = (
|
|
265
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
266
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
267
|
+
);
|
|
268
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
269
|
+
outputFileListPaths = (
|
|
270
|
+
);
|
|
271
|
+
outputPaths = (
|
|
272
|
+
"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
|
|
273
|
+
);
|
|
274
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
275
|
+
shellPath = /bin/sh;
|
|
276
|
+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
277
|
+
showEnvVarsInLog = 0;
|
|
278
|
+
};
|
|
279
|
+
3399D490228B24CF009A79C7 /* ShellScript */ = {
|
|
280
|
+
isa = PBXShellScriptBuildPhase;
|
|
281
|
+
alwaysOutOfDate = 1;
|
|
282
|
+
buildActionMask = 2147483647;
|
|
283
|
+
files = (
|
|
284
|
+
);
|
|
285
|
+
inputFileListPaths = (
|
|
286
|
+
);
|
|
287
|
+
inputPaths = (
|
|
288
|
+
);
|
|
289
|
+
outputFileListPaths = (
|
|
290
|
+
);
|
|
291
|
+
outputPaths = (
|
|
292
|
+
);
|
|
293
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
294
|
+
shellPath = /bin/sh;
|
|
295
|
+
shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n";
|
|
296
|
+
};
|
|
297
|
+
33CC111E2044C6BF0003C045 /* ShellScript */ = {
|
|
298
|
+
isa = PBXShellScriptBuildPhase;
|
|
299
|
+
buildActionMask = 2147483647;
|
|
300
|
+
files = (
|
|
301
|
+
);
|
|
302
|
+
inputFileListPaths = (
|
|
303
|
+
Flutter/ephemeral/FlutterInputs.xcfilelist,
|
|
304
|
+
);
|
|
305
|
+
inputPaths = (
|
|
306
|
+
Flutter/ephemeral/tripwire,
|
|
307
|
+
);
|
|
308
|
+
outputFileListPaths = (
|
|
309
|
+
Flutter/ephemeral/FlutterOutputs.xcfilelist,
|
|
310
|
+
);
|
|
311
|
+
outputPaths = (
|
|
312
|
+
);
|
|
313
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
314
|
+
shellPath = /bin/sh;
|
|
315
|
+
shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire";
|
|
316
|
+
};
|
|
317
|
+
3E09AF51F0BB103F733F868A /* [CP] Embed Pods Frameworks */ = {
|
|
318
|
+
isa = PBXShellScriptBuildPhase;
|
|
319
|
+
buildActionMask = 2147483647;
|
|
320
|
+
files = (
|
|
321
|
+
);
|
|
322
|
+
inputFileListPaths = (
|
|
323
|
+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
324
|
+
);
|
|
325
|
+
name = "[CP] Embed Pods Frameworks";
|
|
326
|
+
outputFileListPaths = (
|
|
327
|
+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
328
|
+
);
|
|
329
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
330
|
+
shellPath = /bin/sh;
|
|
331
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
|
|
332
|
+
showEnvVarsInLog = 0;
|
|
333
|
+
};
|
|
334
|
+
/* End PBXShellScriptBuildPhase section */
|
|
335
|
+
|
|
336
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
337
|
+
33CC10E92044A3C60003C045 /* Sources */ = {
|
|
338
|
+
isa = PBXSourcesBuildPhase;
|
|
339
|
+
buildActionMask = 2147483647;
|
|
340
|
+
files = (
|
|
341
|
+
33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */,
|
|
342
|
+
33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */,
|
|
343
|
+
335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */,
|
|
344
|
+
);
|
|
345
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
346
|
+
};
|
|
347
|
+
/* End PBXSourcesBuildPhase section */
|
|
348
|
+
|
|
349
|
+
/* Begin PBXTargetDependency section */
|
|
350
|
+
33CC11202044C79F0003C045 /* PBXTargetDependency */ = {
|
|
351
|
+
isa = PBXTargetDependency;
|
|
352
|
+
target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */;
|
|
353
|
+
targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */;
|
|
354
|
+
};
|
|
355
|
+
/* End PBXTargetDependency section */
|
|
356
|
+
|
|
357
|
+
/* Begin PBXVariantGroup section */
|
|
358
|
+
33CC10F42044A3C60003C045 /* MainMenu.xib */ = {
|
|
359
|
+
isa = PBXVariantGroup;
|
|
360
|
+
children = (
|
|
361
|
+
33CC10F52044A3C60003C045 /* Base */,
|
|
362
|
+
);
|
|
363
|
+
name = MainMenu.xib;
|
|
364
|
+
path = Runner;
|
|
365
|
+
sourceTree = "<group>";
|
|
366
|
+
};
|
|
367
|
+
/* End PBXVariantGroup section */
|
|
368
|
+
|
|
369
|
+
/* Begin XCBuildConfiguration section */
|
|
370
|
+
338D0CE9231458BD00FA5F75 /* Profile */ = {
|
|
371
|
+
isa = XCBuildConfiguration;
|
|
372
|
+
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
|
|
373
|
+
buildSettings = {
|
|
374
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
375
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
376
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
377
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
378
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
379
|
+
CLANG_ENABLE_MODULES = YES;
|
|
380
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
381
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
382
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
383
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
384
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
385
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
386
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
387
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
388
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
389
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
390
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
391
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
392
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
393
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
394
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
395
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
396
|
+
CODE_SIGN_IDENTITY = "-";
|
|
397
|
+
COPY_PHASE_STRIP = NO;
|
|
398
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
399
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
400
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
401
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
402
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
403
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
404
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
405
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
406
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
407
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
408
|
+
MACOSX_DEPLOYMENT_TARGET = 10.13;
|
|
409
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
410
|
+
SDKROOT = macosx;
|
|
411
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
|
412
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
413
|
+
};
|
|
414
|
+
name = Profile;
|
|
415
|
+
};
|
|
416
|
+
338D0CEA231458BD00FA5F75 /* Profile */ = {
|
|
417
|
+
isa = XCBuildConfiguration;
|
|
418
|
+
baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;
|
|
419
|
+
buildSettings = {
|
|
420
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
421
|
+
CLANG_ENABLE_MODULES = YES;
|
|
422
|
+
CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements;
|
|
423
|
+
CODE_SIGN_STYLE = Automatic;
|
|
424
|
+
COMBINE_HIDPI_IMAGES = YES;
|
|
425
|
+
INFOPLIST_FILE = Runner/Info.plist;
|
|
426
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
427
|
+
"$(inherited)",
|
|
428
|
+
"@executable_path/../Frameworks",
|
|
429
|
+
);
|
|
430
|
+
PROVISIONING_PROFILE_SPECIFIER = "";
|
|
431
|
+
SWIFT_VERSION = 5.0;
|
|
432
|
+
};
|
|
433
|
+
name = Profile;
|
|
434
|
+
};
|
|
435
|
+
338D0CEB231458BD00FA5F75 /* Profile */ = {
|
|
436
|
+
isa = XCBuildConfiguration;
|
|
437
|
+
buildSettings = {
|
|
438
|
+
CODE_SIGN_STYLE = Manual;
|
|
439
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
440
|
+
};
|
|
441
|
+
name = Profile;
|
|
442
|
+
};
|
|
443
|
+
33CC10F92044A3C60003C045 /* Debug */ = {
|
|
444
|
+
isa = XCBuildConfiguration;
|
|
445
|
+
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
|
|
446
|
+
buildSettings = {
|
|
447
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
448
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
449
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
450
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
451
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
452
|
+
CLANG_ENABLE_MODULES = YES;
|
|
453
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
454
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
455
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
456
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
457
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
458
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
459
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
460
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
461
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
462
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
463
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
464
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
465
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
466
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
467
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
468
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
469
|
+
CODE_SIGN_IDENTITY = "-";
|
|
470
|
+
COPY_PHASE_STRIP = NO;
|
|
471
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
472
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
473
|
+
ENABLE_TESTABILITY = YES;
|
|
474
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
475
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
476
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
477
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
478
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
479
|
+
"DEBUG=1",
|
|
480
|
+
"$(inherited)",
|
|
481
|
+
);
|
|
482
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
483
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
484
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
485
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
486
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
487
|
+
MACOSX_DEPLOYMENT_TARGET = 10.13;
|
|
488
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
489
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
490
|
+
SDKROOT = macosx;
|
|
491
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
492
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
493
|
+
};
|
|
494
|
+
name = Debug;
|
|
495
|
+
};
|
|
496
|
+
33CC10FA2044A3C60003C045 /* Release */ = {
|
|
497
|
+
isa = XCBuildConfiguration;
|
|
498
|
+
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
|
|
499
|
+
buildSettings = {
|
|
500
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
501
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
502
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
503
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
504
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
505
|
+
CLANG_ENABLE_MODULES = YES;
|
|
506
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
507
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
508
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
509
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
510
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
511
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
512
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
513
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
514
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
515
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
516
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
517
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
518
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
519
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
520
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
521
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
522
|
+
CODE_SIGN_IDENTITY = "-";
|
|
523
|
+
COPY_PHASE_STRIP = NO;
|
|
524
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
525
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
526
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
527
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
528
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
529
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
530
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
531
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
532
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
533
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
534
|
+
MACOSX_DEPLOYMENT_TARGET = 10.13;
|
|
535
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
536
|
+
SDKROOT = macosx;
|
|
537
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
|
538
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
539
|
+
};
|
|
540
|
+
name = Release;
|
|
541
|
+
};
|
|
542
|
+
33CC10FC2044A3C60003C045 /* Debug */ = {
|
|
543
|
+
isa = XCBuildConfiguration;
|
|
544
|
+
baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;
|
|
545
|
+
buildSettings = {
|
|
546
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
547
|
+
CLANG_ENABLE_MODULES = YES;
|
|
548
|
+
CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements;
|
|
549
|
+
CODE_SIGN_STYLE = Automatic;
|
|
550
|
+
COMBINE_HIDPI_IMAGES = YES;
|
|
551
|
+
INFOPLIST_FILE = Runner/Info.plist;
|
|
552
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
553
|
+
"$(inherited)",
|
|
554
|
+
"@executable_path/../Frameworks",
|
|
555
|
+
);
|
|
556
|
+
PROVISIONING_PROFILE_SPECIFIER = "";
|
|
557
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
558
|
+
SWIFT_VERSION = 5.0;
|
|
559
|
+
};
|
|
560
|
+
name = Debug;
|
|
561
|
+
};
|
|
562
|
+
33CC10FD2044A3C60003C045 /* Release */ = {
|
|
563
|
+
isa = XCBuildConfiguration;
|
|
564
|
+
baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;
|
|
565
|
+
buildSettings = {
|
|
566
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
567
|
+
CLANG_ENABLE_MODULES = YES;
|
|
568
|
+
CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements;
|
|
569
|
+
CODE_SIGN_STYLE = Automatic;
|
|
570
|
+
COMBINE_HIDPI_IMAGES = YES;
|
|
571
|
+
INFOPLIST_FILE = Runner/Info.plist;
|
|
572
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
573
|
+
"$(inherited)",
|
|
574
|
+
"@executable_path/../Frameworks",
|
|
575
|
+
);
|
|
576
|
+
PROVISIONING_PROFILE_SPECIFIER = "";
|
|
577
|
+
SWIFT_VERSION = 5.0;
|
|
578
|
+
};
|
|
579
|
+
name = Release;
|
|
580
|
+
};
|
|
581
|
+
33CC111C2044C6BA0003C045 /* Debug */ = {
|
|
582
|
+
isa = XCBuildConfiguration;
|
|
583
|
+
buildSettings = {
|
|
584
|
+
CODE_SIGN_STYLE = Manual;
|
|
585
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
586
|
+
};
|
|
587
|
+
name = Debug;
|
|
588
|
+
};
|
|
589
|
+
33CC111D2044C6BA0003C045 /* Release */ = {
|
|
590
|
+
isa = XCBuildConfiguration;
|
|
591
|
+
buildSettings = {
|
|
592
|
+
CODE_SIGN_STYLE = Automatic;
|
|
593
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
594
|
+
};
|
|
595
|
+
name = Release;
|
|
596
|
+
};
|
|
597
|
+
/* End XCBuildConfiguration section */
|
|
598
|
+
|
|
599
|
+
/* Begin XCConfigurationList section */
|
|
600
|
+
33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = {
|
|
601
|
+
isa = XCConfigurationList;
|
|
602
|
+
buildConfigurations = (
|
|
603
|
+
33CC10F92044A3C60003C045 /* Debug */,
|
|
604
|
+
33CC10FA2044A3C60003C045 /* Release */,
|
|
605
|
+
338D0CE9231458BD00FA5F75 /* Profile */,
|
|
606
|
+
);
|
|
607
|
+
defaultConfigurationIsVisible = 0;
|
|
608
|
+
defaultConfigurationName = Release;
|
|
609
|
+
};
|
|
610
|
+
33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = {
|
|
611
|
+
isa = XCConfigurationList;
|
|
612
|
+
buildConfigurations = (
|
|
613
|
+
33CC10FC2044A3C60003C045 /* Debug */,
|
|
614
|
+
33CC10FD2044A3C60003C045 /* Release */,
|
|
615
|
+
338D0CEA231458BD00FA5F75 /* Profile */,
|
|
616
|
+
);
|
|
617
|
+
defaultConfigurationIsVisible = 0;
|
|
618
|
+
defaultConfigurationName = Release;
|
|
619
|
+
};
|
|
620
|
+
33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = {
|
|
621
|
+
isa = XCConfigurationList;
|
|
622
|
+
buildConfigurations = (
|
|
623
|
+
33CC111C2044C6BA0003C045 /* Debug */,
|
|
624
|
+
33CC111D2044C6BA0003C045 /* Release */,
|
|
625
|
+
338D0CEB231458BD00FA5F75 /* Profile */,
|
|
626
|
+
);
|
|
627
|
+
defaultConfigurationIsVisible = 0;
|
|
628
|
+
defaultConfigurationName = Release;
|
|
629
|
+
};
|
|
630
|
+
/* End XCConfigurationList section */
|
|
631
|
+
};
|
|
632
|
+
rootObject = 33CC10E52044A3C60003C045 /* Project object */;
|
|
633
|
+
}
|