├── .bazelrc ├── .bazelversion ├── .bcr ├── metadata.template.json ├── presubmit.yml └── source.template.json ├── .codecov.yml ├── .github └── workflows │ ├── bazel.yml │ ├── cmake.yml │ ├── jazzy.yml │ ├── nightly.yml │ ├── pod_lib_lint.yml │ ├── swiftlint.yml │ ├── swiftlint_analyze.yml │ ├── swiftpm.yml │ └── xcodebuild.yml ├── .gitignore ├── .jazzy.yaml ├── .spi.yml ├── .swiftlint.yml ├── BUILD ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── Docs.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── MODULE.bazel ├── Package.swift ├── Package@swift-6.0.swift ├── README.md ├── Sources ├── CMakeLists.txt ├── CYaml │ ├── CMakeLists.txt │ ├── include │ │ ├── CYaml.h │ │ ├── module.modulemap │ │ └── yaml.h │ └── src │ │ ├── api.c │ │ ├── emitter.c │ │ ├── parser.c │ │ ├── reader.c │ │ ├── scanner.c │ │ ├── writer.c │ │ └── yaml_private.h └── Yams │ ├── AliasDereferencingStrategy.swift │ ├── Anchor.swift │ ├── CMakeLists.txt │ ├── Constructor.swift │ ├── Decoder.swift │ ├── Emitter.swift │ ├── Encoder.swift │ ├── Mark.swift │ ├── Node.Alias.swift │ ├── Node.Mapping.swift │ ├── Node.Scalar.swift │ ├── Node.Sequence.swift │ ├── Node.swift │ ├── Parser.swift │ ├── RedundancyAliasingStrategy.swift │ ├── Representer.swift │ ├── Resolver.swift │ ├── String+Yams.swift │ ├── Tag.swift │ ├── YamlAnchorProviding.swift │ ├── YamlError.swift │ ├── YamlTagProviding.swift │ └── Yams.h ├── Tests ├── BUILD ├── CMakeLists.txt ├── LinuxMain.swift └── YamsTests │ ├── AliasingStrategyTests.swift │ ├── AnchorCodingTests.swift │ ├── AnchorTolerancesTests.swift │ ├── CMakeLists.txt │ ├── ClassReferenceDecodingTests.swift │ ├── ConstructorTests.swift │ ├── DecodableWithConfigurationTests.swift │ ├── EmitterTests.swift │ ├── EncoderTests.swift │ ├── Fixtures │ └── SourceKitten#289 │ │ └── debug.yaml │ ├── MarkTests.swift │ ├── NodeDecoderTests.swift │ ├── NodeInternalHelpersTests.swift │ ├── NodeTests.swift │ ├── PerformanceTests.swift │ ├── RepresenterTests.swift │ ├── ResolverTests.swift │ ├── SpecTests.swift │ ├── StringTests.swift │ ├── TagCodingTests.swift │ ├── TagTolerancesTests.swift │ ├── TestHelper.swift │ ├── TopLevelDecoderTests.swift │ └── YamlErrorTests.swift ├── WORKSPACE ├── Yams.podspec ├── Yams.xcodeproj ├── Yams.xctestplan ├── YamsTests_Info.plist ├── Yams_Info.plist ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── Yams.xcscheme │ └── xcschememanagement.plist ├── cmake └── modules │ ├── CMakeLists.txt │ ├── SwiftSupport.cmake │ └── YamsConfig.cmake.in └── yams.jpg /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/.bazelrc -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 7.1.1 2 | -------------------------------------------------------------------------------- /.bcr/metadata.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/.bcr/metadata.template.json -------------------------------------------------------------------------------- /.bcr/presubmit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/.bcr/presubmit.yml -------------------------------------------------------------------------------- /.bcr/source.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/.bcr/source.template.json -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- 1 | paths: 2 | - Sources/Yams 3 | -------------------------------------------------------------------------------- /.github/workflows/bazel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/.github/workflows/bazel.yml -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.github/workflows/jazzy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/.github/workflows/jazzy.yml -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.github/workflows/pod_lib_lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/.github/workflows/pod_lib_lint.yml -------------------------------------------------------------------------------- /.github/workflows/swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/.github/workflows/swiftlint.yml -------------------------------------------------------------------------------- /.github/workflows/swiftlint_analyze.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/.github/workflows/swiftlint_analyze.yml -------------------------------------------------------------------------------- /.github/workflows/swiftpm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/.github/workflows/swiftpm.yml -------------------------------------------------------------------------------- /.github/workflows/xcodebuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/.github/workflows/xcodebuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/.gitignore -------------------------------------------------------------------------------- /.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/.jazzy.yaml -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/.spi.yml -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/BUILD -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Docs.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/LICENSE -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/MODULE.bazel -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Package.swift -------------------------------------------------------------------------------- /Package@swift-6.0.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Package@swift-6.0.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/README.md -------------------------------------------------------------------------------- /Sources/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/CYaml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/CYaml/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/CYaml/include/CYaml.h: -------------------------------------------------------------------------------- 1 | #include "yaml.h" 2 | -------------------------------------------------------------------------------- /Sources/CYaml/include/module.modulemap: -------------------------------------------------------------------------------- 1 | module CYaml { 2 | header "yaml.h" 3 | } 4 | -------------------------------------------------------------------------------- /Sources/CYaml/include/yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/CYaml/include/yaml.h -------------------------------------------------------------------------------- /Sources/CYaml/src/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/CYaml/src/api.c -------------------------------------------------------------------------------- /Sources/CYaml/src/emitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/CYaml/src/emitter.c -------------------------------------------------------------------------------- /Sources/CYaml/src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/CYaml/src/parser.c -------------------------------------------------------------------------------- /Sources/CYaml/src/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/CYaml/src/reader.c -------------------------------------------------------------------------------- /Sources/CYaml/src/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/CYaml/src/scanner.c -------------------------------------------------------------------------------- /Sources/CYaml/src/writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/CYaml/src/writer.c -------------------------------------------------------------------------------- /Sources/CYaml/src/yaml_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/CYaml/src/yaml_private.h -------------------------------------------------------------------------------- /Sources/Yams/AliasDereferencingStrategy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/AliasDereferencingStrategy.swift -------------------------------------------------------------------------------- /Sources/Yams/Anchor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/Anchor.swift -------------------------------------------------------------------------------- /Sources/Yams/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/Yams/Constructor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/Constructor.swift -------------------------------------------------------------------------------- /Sources/Yams/Decoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/Decoder.swift -------------------------------------------------------------------------------- /Sources/Yams/Emitter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/Emitter.swift -------------------------------------------------------------------------------- /Sources/Yams/Encoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/Encoder.swift -------------------------------------------------------------------------------- /Sources/Yams/Mark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/Mark.swift -------------------------------------------------------------------------------- /Sources/Yams/Node.Alias.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/Node.Alias.swift -------------------------------------------------------------------------------- /Sources/Yams/Node.Mapping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/Node.Mapping.swift -------------------------------------------------------------------------------- /Sources/Yams/Node.Scalar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/Node.Scalar.swift -------------------------------------------------------------------------------- /Sources/Yams/Node.Sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/Node.Sequence.swift -------------------------------------------------------------------------------- /Sources/Yams/Node.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/Node.swift -------------------------------------------------------------------------------- /Sources/Yams/Parser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/Parser.swift -------------------------------------------------------------------------------- /Sources/Yams/RedundancyAliasingStrategy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/RedundancyAliasingStrategy.swift -------------------------------------------------------------------------------- /Sources/Yams/Representer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/Representer.swift -------------------------------------------------------------------------------- /Sources/Yams/Resolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/Resolver.swift -------------------------------------------------------------------------------- /Sources/Yams/String+Yams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/String+Yams.swift -------------------------------------------------------------------------------- /Sources/Yams/Tag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/Tag.swift -------------------------------------------------------------------------------- /Sources/Yams/YamlAnchorProviding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/YamlAnchorProviding.swift -------------------------------------------------------------------------------- /Sources/Yams/YamlError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/YamlError.swift -------------------------------------------------------------------------------- /Sources/Yams/YamlTagProviding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/YamlTagProviding.swift -------------------------------------------------------------------------------- /Sources/Yams/Yams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Sources/Yams/Yams.h -------------------------------------------------------------------------------- /Tests/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/BUILD -------------------------------------------------------------------------------- /Tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/YamsTests/AliasingStrategyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/AliasingStrategyTests.swift -------------------------------------------------------------------------------- /Tests/YamsTests/AnchorCodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/AnchorCodingTests.swift -------------------------------------------------------------------------------- /Tests/YamsTests/AnchorTolerancesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/AnchorTolerancesTests.swift -------------------------------------------------------------------------------- /Tests/YamsTests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/CMakeLists.txt -------------------------------------------------------------------------------- /Tests/YamsTests/ClassReferenceDecodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/ClassReferenceDecodingTests.swift -------------------------------------------------------------------------------- /Tests/YamsTests/ConstructorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/ConstructorTests.swift -------------------------------------------------------------------------------- /Tests/YamsTests/DecodableWithConfigurationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/DecodableWithConfigurationTests.swift -------------------------------------------------------------------------------- /Tests/YamsTests/EmitterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/EmitterTests.swift -------------------------------------------------------------------------------- /Tests/YamsTests/EncoderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/EncoderTests.swift -------------------------------------------------------------------------------- /Tests/YamsTests/Fixtures/SourceKitten#289/debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/Fixtures/SourceKitten#289/debug.yaml -------------------------------------------------------------------------------- /Tests/YamsTests/MarkTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/MarkTests.swift -------------------------------------------------------------------------------- /Tests/YamsTests/NodeDecoderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/NodeDecoderTests.swift -------------------------------------------------------------------------------- /Tests/YamsTests/NodeInternalHelpersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/NodeInternalHelpersTests.swift -------------------------------------------------------------------------------- /Tests/YamsTests/NodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/NodeTests.swift -------------------------------------------------------------------------------- /Tests/YamsTests/PerformanceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/PerformanceTests.swift -------------------------------------------------------------------------------- /Tests/YamsTests/RepresenterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/RepresenterTests.swift -------------------------------------------------------------------------------- /Tests/YamsTests/ResolverTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/ResolverTests.swift -------------------------------------------------------------------------------- /Tests/YamsTests/SpecTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/SpecTests.swift -------------------------------------------------------------------------------- /Tests/YamsTests/StringTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/StringTests.swift -------------------------------------------------------------------------------- /Tests/YamsTests/TagCodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/TagCodingTests.swift -------------------------------------------------------------------------------- /Tests/YamsTests/TagTolerancesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/TagTolerancesTests.swift -------------------------------------------------------------------------------- /Tests/YamsTests/TestHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/TestHelper.swift -------------------------------------------------------------------------------- /Tests/YamsTests/TopLevelDecoderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/TopLevelDecoderTests.swift -------------------------------------------------------------------------------- /Tests/YamsTests/YamlErrorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Tests/YamsTests/YamlErrorTests.swift -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Yams.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Yams.podspec -------------------------------------------------------------------------------- /Yams.xcodeproj/Yams.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Yams.xcodeproj/Yams.xctestplan -------------------------------------------------------------------------------- /Yams.xcodeproj/YamsTests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Yams.xcodeproj/YamsTests_Info.plist -------------------------------------------------------------------------------- /Yams.xcodeproj/Yams_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Yams.xcodeproj/Yams_Info.plist -------------------------------------------------------------------------------- /Yams.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Yams.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Yams.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Yams.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Yams.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Yams.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Yams.xcodeproj/xcshareddata/xcschemes/Yams.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Yams.xcodeproj/xcshareddata/xcschemes/Yams.xcscheme -------------------------------------------------------------------------------- /Yams.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/Yams.xcodeproj/xcshareddata/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /cmake/modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/cmake/modules/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/modules/SwiftSupport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/cmake/modules/SwiftSupport.cmake -------------------------------------------------------------------------------- /cmake/modules/YamsConfig.cmake.in: -------------------------------------------------------------------------------- 1 | if(NOT TARGET Yams) 2 | include(@YAMS_EXPORTS_FILE@) 3 | endif() 4 | -------------------------------------------------------------------------------- /yams.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpsim/Yams/HEAD/yams.jpg --------------------------------------------------------------------------------