mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 01:00:11 -05:00
18 lines
527 B
CMake
18 lines
527 B
CMake
include(CheckIncludeFile)
|
|
include(CheckFunctionExists)
|
|
|
|
if(UNIX)
|
|
check_function_exists(getpass HAVE_GETPASS)
|
|
check_include_file(termios.h HAVE_TERMIOS_H)
|
|
check_include_file(sys/mman.h HAVE_SYS_MMAN_H)
|
|
if(HAVE_SYS_MMAN_H)
|
|
check_function_exists(mmap HAVE_MMAP)
|
|
endif(HAVE_SYS_MMAN_H)
|
|
else(UNIX)
|
|
check_include_file(windows.h HAVE_MAPVIEWOFFILE)
|
|
endif(UNIX)
|
|
|
|
if(NOT (HAVE_MMAP OR HAVE_MAPVIEWOFFILE))
|
|
message(FATAL_ERROR "Error: Need file mapping function to build.")
|
|
endif(NOT (HAVE_MMAP OR HAVE_MAPVIEWOFFILE))
|