diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-07-05 22:37:19 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-07-05 22:37:19 +0100 |
commit | 8f42118e4ec910e39ebfd1b3095dcdb3fd665498 (patch) | |
tree | 5b1074716d05418c90fde6d79cba1b2bb6078aec /Jamroot.jam | |
parent | Remove boost::filesystem in favour of std::filesystem (diff) | |
download | mythfs-8f42118e4ec910e39ebfd1b3095dcdb3fd665498.tar.bz2 mythfs-8f42118e4ec910e39ebfd1b3095dcdb3fd665498.tar.xz mythfs-8f42118e4ec910e39ebfd1b3095dcdb3fd665498.zip |
Get glibmm flags from pkg-configmythfs-0.3.2.1
Diffstat (limited to 'Jamroot.jam')
-rw-r--r-- | Jamroot.jam | 22 |
1 files changed, 3 insertions, 19 deletions
diff --git a/Jamroot.jam b/Jamroot.jam index 896177a..ad30640 100644 --- a/Jamroot.jam +++ b/Jamroot.jam @@ -2,6 +2,8 @@ import os ; import slice ; using gcc : : [ os.environ CXX ] ; +using pkg-config ; +import pkg-config ; variant component ; variant coverage : debug ; @@ -20,23 +22,5 @@ project build-project mythfs ; -# Some useful aliases - -lib glibmm-2.4 ; -lib gobject-2.0 ; -lib glib-2.0 ; -lib sigc-2.0 ; - -alias glibmm : : : : - <include>/usr/include/glibmm-2.4 - <include>/usr/lib/glibmm-2.4/include - <include>/usr/include/glib-2.0 - <include>/usr/lib/glib-2.0/include - <include>/usr/include/sigc++-2.0 - <include>/usr/lib/sigc++-2.0/include - <library>glibmm-2.4 - <library>gobject-2.0 - <library>glib-2.0 - <library>sigc-2.0 - ; +pkg-config.import glibmm : : <name>glibmm-2.4 ; |