|
| 1 | +add_library(ArgumentParser |
| 2 | + "Parsable Properties/Argument.swift" |
| 3 | + "Parsable Properties/ArgumentHelp.swift" |
| 4 | + "Parsable Properties/Flag.swift" |
| 5 | + "Parsable Properties/NameSpecification.swift" |
| 6 | + "Parsable Properties/Option.swift" |
| 7 | + "Parsable Properties/OptionGroup.swift" |
| 8 | + "Parsable Properties/ValidationError.swift" |
| 9 | + |
| 10 | + "Parsable Types/CommandConfiguration.swift" |
| 11 | + "Parsable Types/ExpressibleByArgument.swift" |
| 12 | + "Parsable Types/ParsableArguments.swift" |
| 13 | + "Parsable Types/ParsableCommand.swift" |
| 14 | + |
| 15 | + Parsing/ArgumentDecoder.swift |
| 16 | + Parsing/ArgumentDefinition.swift |
| 17 | + Parsing/ArgumentSet.swift |
| 18 | + Parsing/ArgumentSetSequence.swift |
| 19 | + Parsing/CommandParser.swift |
| 20 | + Parsing/InputOrigin.swift |
| 21 | + Parsing/Name.swift |
| 22 | + Parsing/Parsed.swift |
| 23 | + Parsing/ParsedValues.swift |
| 24 | + Parsing/ParserError.swift |
| 25 | + Parsing/SplitArguments.swift |
| 26 | + |
| 27 | + Usage/HelpCommand.swift |
| 28 | + Usage/HelpGenerator.swift |
| 29 | + Usage/MessageInfo.swift |
| 30 | + Usage/UsageGenerator.swift |
| 31 | + |
| 32 | + Utilities/StringExtensions.swift |
| 33 | + Utilities/Tree.swift) |
| 34 | +set_target_properties(ArgumentParser PROPERTIES |
| 35 | + INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY}) |
| 36 | +target_compile_options(ArgumentParser PRIVATE |
| 37 | + $<$<BOOL:${BUILD_TESTING}>:-enable-testing>) |
| 38 | +target_link_libraries(ArgumentParser PRIVATE |
| 39 | + Foundation) |
0 commit comments