2024-02-12 15:09:10 +00:00
|
|
|
# SPDX-License-Identifier: 0BSD
|
|
|
|
|
|
|
|
#############################################################################
|
2020-02-24 21:38:16 +00:00
|
|
|
#
|
|
|
|
# tuklib_progname.cmake - see tuklib_progname.m4 for description and comments
|
|
|
|
#
|
|
|
|
# Author: Lasse Collin
|
|
|
|
#
|
2024-02-12 15:09:10 +00:00
|
|
|
#############################################################################
|
2020-02-24 21:38:16 +00:00
|
|
|
|
2020-02-25 18:42:31 +00:00
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake")
|
2020-02-24 21:38:16 +00:00
|
|
|
include(CheckSymbolExists)
|
|
|
|
|
|
|
|
function(tuklib_progname TARGET_OR_ALL)
|
|
|
|
# NOTE: This glibc extension requires _GNU_SOURCE.
|
|
|
|
check_symbol_exists(program_invocation_name errno.h
|
2023-01-02 14:33:48 +00:00
|
|
|
HAVE_PROGRAM_INVOCATION_NAME)
|
|
|
|
tuklib_add_definition_if("${TARGET_OR_ALL}" HAVE_PROGRAM_INVOCATION_NAME)
|
2020-02-24 21:38:16 +00:00
|
|
|
endfunction()
|