diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2020-02-24 23:38:16 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2020-02-25 00:00:32 +0200 |
commit | 7e3493d40eac0c3fa3d5124097745a70e15c41f6 (patch) | |
tree | 8fe76b6569d9193749064ff5271c70ebff9355e0 /cmake/tuklib_progname.cmake | |
parent | Update m4/.gitignore. (diff) | |
download | xz-7e3493d40eac0c3fa3d5124097745a70e15c41f6.tar.xz |
Build: Add very limited experimental CMake support.
This does *NOT* replace the Autotools-based build system in
the foreseeable future. See the comment in the beginning
of CMakeLists.txt.
So far this has been tested only on GNU/Linux but I commit
it anyway to make it easier for others to test. Since I
haven't played much with CMake before, it's likely that
there are things that have been done in a silly or wrong
way and need to be fixed.
Diffstat (limited to 'cmake/tuklib_progname.cmake')
-rw-r--r-- | cmake/tuklib_progname.cmake | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/cmake/tuklib_progname.cmake b/cmake/tuklib_progname.cmake new file mode 100644 index 00000000..417495e6 --- /dev/null +++ b/cmake/tuklib_progname.cmake @@ -0,0 +1,19 @@ +# +# tuklib_progname.cmake - see tuklib_progname.m4 for description and comments +# +# Author: Lasse Collin +# +# This file has been put into the public domain. +# You can do whatever you want with this file. +# + +include(${CMAKE_CURRENT_LIST_DIR}/tuklib_common.cmake) +include(CheckSymbolExists) + +function(tuklib_progname TARGET_OR_ALL) + # NOTE: This glibc extension requires _GNU_SOURCE. + check_symbol_exists(program_invocation_name errno.h + HAVE_DECL_PROGRAM_INVOCATION_NAME) + tuklib_add_definition_if(${TARGET_OR_ALL} + HAVE_DECL_PROGRAM_INVOCATION_NAME) +endfunction() |