|
| 1 | +# This source file is part of the Swift.org open source project |
| 2 | +# |
| 3 | +# Copyright (c) 2024 Apple Inc. and the Swift project authors |
| 4 | +# Licensed under Apache License v2.0 with Runtime Library Exception |
| 5 | +# |
| 6 | +# See http://swift.org/LICENSE.txt for license information |
| 7 | +# See http://swift.org/CONTRIBUTORS.txt for Swift project authors |
| 8 | + |
| 9 | +add_library(Testing |
| 10 | + EntryPoints/ABIEntryPoint.swift |
| 11 | + EntryPoints/ABIv0/ABIv0.Record.swift |
| 12 | + EntryPoints/ABIv0/ABIv0.Record+Streaming.swift |
| 13 | + EntryPoints/ABIv0/ABIv0.swift |
| 14 | + EntryPoints/ABIv0/Encoded/ABIv0.EncodedEvent.swift |
| 15 | + EntryPoints/ABIv0/Encoded/ABIv0.EncodedInstant.swift |
| 16 | + EntryPoints/ABIv0/Encoded/ABIv0.EncodedIssue.swift |
| 17 | + EntryPoints/ABIv0/Encoded/ABIv0.EncodedMessage.swift |
| 18 | + EntryPoints/ABIv0/Encoded/ABIv0.EncodedTest.swift |
| 19 | + EntryPoints/EntryPoint.swift |
| 20 | + EntryPoints/SwiftPMEntryPoint.swift |
| 21 | + EntryPoints/XCTestScaffold.swift |
| 22 | + Events/Clock.swift |
| 23 | + Events/Event.swift |
| 24 | + Events/Recorder/Event.ConsoleOutputRecorder.swift |
| 25 | + Events/Recorder/Event.HumanReadableOutputRecorder.swift |
| 26 | + Events/Recorder/Event.JUnitXMLRecorder.swift |
| 27 | + Events/Recorder/Event.Symbol.swift |
| 28 | + Events/TimeValue.swift |
| 29 | + ExitTests/ExitCondition.swift |
| 30 | + ExitTests/ExitTest.swift |
| 31 | + ExitTests/WaitFor.swift |
| 32 | + Expectations/Expectation.swift |
| 33 | + Expectations/Expectation+Macro.swift |
| 34 | + Expectations/ExpectationChecking+Macro.swift |
| 35 | + Issues/Confirmation.swift |
| 36 | + Issues/ErrorSnapshot.swift |
| 37 | + Issues/Issue.swift |
| 38 | + Issues/Issue+Recording.swift |
| 39 | + Issues/KnownIssue.swift |
| 40 | + Parameterization/CustomTestArgumentEncodable.swift |
| 41 | + Parameterization/Test.Case.Generator.swift |
| 42 | + Parameterization/Test.Case.ID.swift |
| 43 | + Parameterization/Test.Case.swift |
| 44 | + Parameterization/TypeInfo.swift |
| 45 | + Running/Configuration.swift |
| 46 | + Running/Configuration.TestFilter.swift |
| 47 | + Running/Configuration+EventHandling.swift |
| 48 | + Running/Runner.Plan.swift |
| 49 | + Running/Runner.Plan+Dumping.swift |
| 50 | + Running/Runner.RuntimeState.swift |
| 51 | + Running/Runner.swift |
| 52 | + Running/SkipInfo.swift |
| 53 | + SourceAttribution/Backtrace.swift |
| 54 | + SourceAttribution/CustomTestStringConvertible.swift |
| 55 | + SourceAttribution/Expression.swift |
| 56 | + SourceAttribution/Expression+Macro.swift |
| 57 | + SourceAttribution/SourceContext.swift |
| 58 | + SourceAttribution/SourceLocation.swift |
| 59 | + Support/Additions/ArrayAdditions.swift |
| 60 | + Support/Additions/CollectionDifferenceAdditions.swift |
| 61 | + Support/Additions/CommandLineAdditions.swift |
| 62 | + Support/Additions/NumericAdditions.swift |
| 63 | + Support/Additions/ResultAdditions.swift |
| 64 | + Support/Additions/StringAdditions.swift |
| 65 | + Support/CartesianProduct.swift |
| 66 | + Support/CError.swift |
| 67 | + Support/Environment.swift |
| 68 | + Support/FileHandle.swift |
| 69 | + Support/Graph.swift |
| 70 | + Support/JSON.swift |
| 71 | + Support/Locked.swift |
| 72 | + Support/SystemError.swift |
| 73 | + Support/UncheckedSendable.swift |
| 74 | + Support/Versions.swift |
| 75 | + Test.ID.Selection.swift |
| 76 | + Test.ID.swift |
| 77 | + Test.swift |
| 78 | + Test+Discovery.swift |
| 79 | + Test+Macro.swift |
| 80 | + Traits/Bug.swift |
| 81 | + Traits/Comment.swift |
| 82 | + Traits/Comment+Macro.swift |
| 83 | + Traits/ConditionTrait.swift |
| 84 | + Traits/ConditionTrait+Macro.swift |
| 85 | + Traits/HiddenTrait.swift |
| 86 | + Traits/ParallelizationTrait.swift |
| 87 | + Traits/SPIAwareTrait.swift |
| 88 | + Traits/Tags/Tag.Color.swift |
| 89 | + Traits/Tags/Tag.Color+Loading.swift |
| 90 | + Traits/Tags/Tag.List.swift |
| 91 | + Traits/Tags/Tag.swift |
| 92 | + Traits/Tags/Tag+Macro.swift |
| 93 | + Traits/Tags/Tag+Predefined.swift |
| 94 | + Traits/TimeLimitTrait.swift |
| 95 | + Traits/Trait.swift) |
| 96 | +target_link_libraries(Testing PRIVATE |
| 97 | + _TestingInternals) |
| 98 | +add_dependencies(Testing |
| 99 | + TestingMacros) |
| 100 | +target_compile_definitions(Testing PRIVATE |
| 101 | + SWT_BUILDING_WITH_CMAKE) |
| 102 | +target_compile_options(Testing PUBLIC |
| 103 | + -load-plugin-executable "${TestingMacrosPath}") |
| 104 | +target_compile_options(Testing PRIVATE |
| 105 | + -enable-library-evolution) |
0 commit comments