forked from libpd/libpd
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlibpd.podspec
More file actions
18 lines (13 loc) · 788 Bytes
/
libpd.podspec
File metadata and controls
18 lines (13 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "libpd"
s.version = "0.0.1"
s.license = { :type => 'Standard Improved BSD License', :file => 'License.txt' }
s.summary = "libpd turns Pd into an embeddable library, so you can use Pd as a sound engine in mobile phone apps, games, web pages, and art projects."
s.homepage = "https://github.com/libpd/libpd"
s.author = { "name or nickname" => "email@address.com" }
s.source = { :git => "https://github.com/libpd/libpd.git", :commit => "HEAD" }
s.source_files = 'cpp/**/*.{hpp,cpp}', 'libpd_wrapper/**/*.{h,c}', 'objc/**/*.{h,m}', 'pure-data/src/**/*.{h,c}'
s.ios.deployment_target = '4.0'
s.frameworks = 'Foundation'
s.compiler_flags = '-w -DPD -DUSEAPI_DUMMY -DHAVE_LIBDL -DHAVE_UNISTD_H'
end