Skip to content
Snippets Groups Projects

Add inspect-library helper

Merged Ludovico de Nittis requested to merge wip/denittis/inspect-library into master
Compare and Show latest version
1 file
+ 19
16
Compare changes
  • Side-by-side
  • Inline
+ 19
16
@@ -21,25 +21,28 @@
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
helpers = [
'inspect-library',
'true',
]
executable(
multiarch + '-true',
'true.c',
install : true,
install_dir : join_paths(
get_option('libexecdir'),
'steam-runtime-tools-' + api_major,
)
)
foreach helper_name : helpers
executable(
multiarch + '-' + helper_name,
files(helper_name + '.c'),
dependencies : [libdl],
c_args : [
executable(
'steam-runtime-inspect-library',
'inspect-library.c',
dependencies : [libdl],
c_args : [
'-D_GNU_SOURCE',
],
install : true,
install_dir : join_paths(
get_option('libexecdir'),
'steam-runtime-tools-' + api_major,
)
install : true,
install_dir : join_paths(
get_option('libexecdir'),
'steam-runtime-tools-' + api_major,
)
endforeach
)
# vim:set sw=2 sts=2 et:
Loading