-
First of all, thanks so much for creating xmake, it's easily the most enjoyable build tool I've worked with yet! I'm building a cross-platform library, StereoKit, and I have some community members that are trying to add it as a dependency in their own projects on Linux. They're using pkg-config to locate and reference their dependencies, but I've looked around in docs and samples for how to output the pkg-config information, and I haven't quite managed to pin it down. Do you have any tips or pointers here for how to go about doing this? My build file is here if that's helpful. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can write a xxx.pc file in xmake/xmake/modules/private/action/require/impl/actions/install.lua Lines 77 to 91 in a1ebb6a or wait this feature #1268 |
Beta Was this translation helpful? Give feedback.
You can write a xxx.pc file in
after_install()
, like thisxmake/xmake/modules/private/action/require/impl/actions/install.lua
Lines 77 to 91 in a1ebb6a