diff options
author | Philip Chimento <philip@endlessm.com> | 2013-04-10 12:17:07 +0100 |
---|---|---|
committer | P. F. Chimento <philip.chimento@gmail.com> | 2013-04-17 17:14:21 +0200 |
commit | 408f93ec2327a8647030139a2e6f295e8b2c8de1 (patch) | |
tree | c0a796adc7ca6981b8eb0b53e8c21b5101dd2962 /endless-0.pc.in | |
parent | 5299f7acf85200a46679334a6bd230d4e2101b7f (diff) |
Skeleton build system to build a shared library
Builds a dummy shared library that exports one symbol for testing,
eos_hello_sample_function().
[#1]
Diffstat (limited to 'endless-0.pc.in')
-rw-r--r-- | endless-0.pc.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/endless-0.pc.in b/endless-0.pc.in new file mode 100644 index 0000000..083f995 --- /dev/null +++ b/endless-0.pc.in @@ -0,0 +1,15 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: @PACKAGE_NAME@ +Version: @PACKAGE_VERSION@ +Description: Software development kit for applications for the developing world +URL: @PACKAGE_URL@ + +Requires: @EOS_REQUIRED_MODULES@ +Requires.private: @EOS_REQUIRED_MODULES_PRIVATE@ +Cflags: -I${includedir}/@EOS_SDK_API_NAME@ +Libs: -L${libdir} -l@EOS_SDK_API_NAME@ + |