"failstar" sounds like a name for a cruise liner from the 80s. As "*" isn't a desirable part of directory names, just name the whole thing "fail/", the core parts being stored in "fail/core/". Additionally fixing two build system dependency issues: - missing jobserver -> protomessages dependency - broken bochs -> fail dependency (add_custom_target DEPENDS only allows plain file dependencies ... cmake for the win) git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@956 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
56 lines
1.3 KiB
CMake
56 lines
1.3 KiB
CMake
# - Try to find libelf
|
|
# Once done this will define
|
|
#
|
|
# LIBELF_FOUND - system has libelf
|
|
# LIBELF_INCLUDE_DIRS - the libelf include directory
|
|
# LIBELF_LIBRARIES - Link these to use libelf
|
|
# LIBELF_DEFINITIONS - Compiler switches required for using libelf
|
|
#
|
|
# Copyright (c) 2008 Bernhard Walle <bernhard.walle@gmx.de>
|
|
#
|
|
# Redistribution and use is allowed according to the terms of the New
|
|
# BSD license.
|
|
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
|
|
#
|
|
|
|
|
|
if (LIBELF_LIBRARIES AND LIBELF_INCLUDE_DIRS)
|
|
set (LibElf_FIND_QUIETLY TRUE)
|
|
endif (LIBELF_LIBRARIES AND LIBELF_INCLUDE_DIRS)
|
|
|
|
find_path (LIBELF_INCLUDE_DIRS
|
|
NAMES
|
|
libelf.h
|
|
PATHS
|
|
/usr/include
|
|
/usr/include/libelf
|
|
/usr/local/include
|
|
/usr/local/include/libelf
|
|
/opt/local/include
|
|
/opt/local/include/libelf
|
|
/sw/include
|
|
/sw/include/libelf
|
|
ENV CPATH)
|
|
|
|
find_library (LIBELF_LIBRARIES
|
|
NAMES
|
|
elf
|
|
PATHS
|
|
/usr/lib
|
|
/usr/local/lib
|
|
/opt/local/lib
|
|
/sw/lib
|
|
ENV LIBRARY_PATH
|
|
ENV LD_LIBRARY_PATH)
|
|
|
|
include (FindPackageHandleStandardArgs)
|
|
|
|
|
|
# handle the QUIETLY and REQUIRED arguments and set LIBELF_FOUND to TRUE if all listed variables are TRUE
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(LibElf DEFAULT_MSG
|
|
LIBELF_LIBRARIES
|
|
LIBELF_INCLUDE_DIRS)
|
|
|
|
|
|
mark_as_advanced(LIBELF_INCLUDE_DIRS LIBELF_LIBRARIES)
|