| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- add_library(ArgumentParser
- Completions/BashCompletionsGenerator.swift
- Completions/CompletionsGenerator.swift
- Completions/FishCompletionsGenerator.swift
- Completions/ZshCompletionsGenerator.swift
- "Parsable Properties/Argument.swift"
- "Parsable Properties/ArgumentDiscussion.swift"
- "Parsable Properties/ArgumentHelp.swift"
- "Parsable Properties/ArgumentVisibility.swift"
- "Parsable Properties/CompletionKind.swift"
- "Parsable Properties/Errors.swift"
- "Parsable Properties/Flag.swift"
- "Parsable Properties/NameSpecification.swift"
- "Parsable Properties/Option.swift"
- "Parsable Properties/OptionGroup.swift"
- "Parsable Types/AsyncParsableCommand.swift"
- "Parsable Types/CommandGroup.swift"
- "Parsable Types/CommandConfiguration.swift"
- "Parsable Types/EnumerableFlag.swift"
- "Parsable Types/ExpressibleByArgument.swift"
- "Parsable Types/ParsableArguments.swift"
- "Parsable Types/ParsableCommand.swift"
- Parsing/ArgumentDecoder.swift
- Parsing/ArgumentDefinition.swift
- Parsing/ArgumentSet.swift
- Parsing/CommandParser.swift
- Parsing/InputKey.swift
- Parsing/InputOrigin.swift
- Parsing/Name.swift
- Parsing/Parsed.swift
- Parsing/ParsedValues.swift
- Parsing/ParserError.swift
- Parsing/SplitArguments.swift
- Usage/DumpHelpGenerator.swift
- Usage/HelpCommand.swift
- Usage/HelpGenerator.swift
- Usage/MessageInfo.swift
- Usage/UsageGenerator.swift
- Utilities/CollectionExtensions.swift
- Utilities/Mutex.swift
- Utilities/Foundation.swift
- Utilities/Platform.swift
- Utilities/SequenceExtensions.swift
- Utilities/StringExtensions.swift
- Utilities/SwiftExtensions.swift
- Utilities/Tree.swift
-
- Validators/CodingKeyValidator.swift
- Validators/NonsenseFlagsValidator.swift
- Validators/ParsableArgumentsValidation.swift
- Validators/PositionalArgumentsValidator.swift
- Validators/UniqueNamesValidator.swift)
- # NOTE: workaround for CMake not setting up include flags yet
- set_target_properties(ArgumentParser PROPERTIES
- INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY})
- target_compile_options(ArgumentParser PRIVATE
- $<$<BOOL:${BUILD_TESTING}>:-enable-testing>)
- target_link_libraries(ArgumentParser PRIVATE
- ArgumentParserToolInfo)
- if(Foundation_FOUND)
- target_link_libraries(ArgumentParser PRIVATE
- Foundation)
- endif()
- _install_target(ArgumentParser)
- set_property(GLOBAL APPEND PROPERTY ArgumentParser_EXPORTS ArgumentParser)
|