-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
32 lines (31 loc) · 799 Bytes
/
Podfile
File metadata and controls
32 lines (31 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
platform :osx, '10.15'
source 'https://github.com/TwoRingSoft/podspecs.git'
abstract_target 'aocTargets' do
unless ENV['FASTMATH_PATH'] == nil then
pod 'FastMath', :path => ENV['FASTMATH_PATH'], :testspecs => ['Tests']
else
pod 'FastMath'
end
unless ENV['PIPPIN_LIBRARY_PATH'] == nil then
pod 'PippinLibrary', :path => ENV['PIPPIN_LIBRARY_PATH'], :testspecs => ['Tests']
else
pod 'PippinLibrary'
end
target "aocHelpers"
target "aoc2015"
target "aoc2015Tests"
target "aoc2016"
target "aoc2016Tests"
target "aoc2017"
target "aoc2017Tests"
target "aoc2018"
target "aoc2018Tests"
target "aoc2019"
target "aoc2019Tests"
target "aoc2020"
target "aoc2020Tests"
target "aoc2021"
target "aoc2021Tests"
target "aoc2022"
target "aoc2022Tests"
end