Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CMake configuration #218

Merged
merged 1 commit into from
Oct 20, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update CMake configuration
lorentey committed Oct 20, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 3c6cb8cd56d04392bf9f79a2d5020fc2abf1958d
1 change: 1 addition & 0 deletions Sources/BitCollections/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -47,6 +47,7 @@ add_library(BitCollections
"BitSet/BitSet+SetAlgebra formUnion.swift"
"BitSet/BitSet+SetAlgebra intersection.swift"
"BitSet/BitSet+SetAlgebra isDisjoint.swift"
"BitSet/BitSet+SetAlgebra isEqual.swift"
"BitSet/BitSet+SetAlgebra isStrictSubset.swift"
"BitSet/BitSet+SetAlgebra isStrictSuperset.swift"
"BitSet/BitSet+SetAlgebra isSubset.swift"
17 changes: 11 additions & 6 deletions Sources/OrderedCollections/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -8,14 +8,16 @@ See https://swift.org/LICENSE.txt for license information
#]]

add_library(OrderedCollections
"HashTable/_HashTable.swift"
"HashTable/_HashTable+Bucket.swift"
"HashTable/_HashTable+BucketIterator.swift"
"HashTable/_HashTable+Constants.swift"
"HashTable/_HashTable+CustomStringConvertible.swift"
"HashTable/_Hashtable+Header.swift"
"HashTable/_HashTable+Testing.swift"
"HashTable/_HashTable+UnsafeHandle.swift"
"HashTable/_HashTable.swift"
"HashTable/_Hashtable+Header.swift"
"OrderedDictionary/OrderedDictionary.Elements.swift"
"OrderedDictionary/OrderedDictionary.swift"
"OrderedDictionary/OrderedDictionary+Codable.swift"
"OrderedDictionary/OrderedDictionary+CustomReflectable.swift"
"OrderedDictionary/OrderedDictionary+Deprecations.swift"
@@ -31,8 +33,7 @@ add_library(OrderedCollections
"OrderedDictionary/OrderedDictionary+Sendable.swift"
"OrderedDictionary/OrderedDictionary+Sequence.swift"
"OrderedDictionary/OrderedDictionary+Values.swift"
"OrderedDictionary/OrderedDictionary.Elements.swift"
"OrderedDictionary/OrderedDictionary.swift"
"OrderedSet/OrderedSet.swift"
"OrderedSet/OrderedSet+Codable.swift"
"OrderedSet/OrderedSet+CustomReflectable.swift"
"OrderedSet/OrderedSet+Descriptions.swift"
@@ -45,17 +46,21 @@ add_library(OrderedCollections
"OrderedSet/OrderedSet+Invariants.swift"
"OrderedSet/OrderedSet+Partial MutableCollection.swift"
"OrderedSet/OrderedSet+Partial RangeReplaceableCollection.swift"
"OrderedSet/OrderedSet+Partial SetAlgebra isDisjoint.swift"
"OrderedSet/OrderedSet+Partial SetAlgebra isEqual.swift"
"OrderedSet/OrderedSet+Partial SetAlgebra isStrictSubset.swift"
"OrderedSet/OrderedSet+Partial SetAlgebra isStrictSuperset.swift"
"OrderedSet/OrderedSet+Partial SetAlgebra isSubset.swift"
"OrderedSet/OrderedSet+Partial SetAlgebra isSuperset.swift"
"OrderedSet/OrderedSet+Partial SetAlgebra+Basics.swift"
"OrderedSet/OrderedSet+Partial SetAlgebra+Operations.swift"
"OrderedSet/OrderedSet+Partial SetAlgebra+Predicates.swift"
"OrderedSet/OrderedSet+RandomAccessCollection.swift"
"OrderedSet/OrderedSet+ReserveCapacity.swift"
"OrderedSet/OrderedSet+Sendable.swift"
"OrderedSet/OrderedSet+SubSequence.swift"
"OrderedSet/OrderedSet+Testing.swift"
"OrderedSet/OrderedSet+UnorderedView.swift"
"OrderedSet/OrderedSet+UnstableInternals.swift"
"OrderedSet/OrderedSet.swift"
"Utilities/_UnsafeBitset.swift"
)
target_link_libraries(OrderedCollections PRIVATE
2 changes: 2 additions & 0 deletions Sources/_CollectionsUtilities/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -8,6 +8,8 @@ See https://swift.org/LICENSE.txt for license information
#]]

add_library(_CollectionsUtilities
"_SortedCollection.swift"
"_UniqueCollection.swift"
"Array+WithContiguousStorage Compatibility.swift"
"Debugging.swift"
"Descriptions.swift"