panthema / 2012 / 1119-eSAIS-Inducing-Suffix-and-LCP-Arrays-in-External-Memory / eSAIS-DC3-LCP-0.5.4 / stxxl / misc / cmake / stxxl-config.cmake.in (Download File)
# CMake config file for STXXL
#
# It defines the following variables
#  STXXL_CXX_FLAGS    - C++ flags for STXXL
#  STXXL_INCLUDE_DIRS - include directories for STXXL
#  STXXL_LIBRARIES    - libraries to link against

# compute paths from current cmake file path
get_filename_component(STXXL_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
set(STXXL_INCLUDE_DIRS "@CONF_INCLUDE_DIRS@")

# additional compiler flags. these often include -fopenmp!
set(STXXL_CXX_FLAGS "@STXXL_CXX_FLAGS@")

# load our library dependencies (contains definitions for IMPORTED targets)
include("${STXXL_CMAKE_DIR}/stxxl-targets.cmake")

# these are IMPORTED targets created by stxxl-targets.cmake, link these with
# your program.
set(STXXL_LIBRARIES "@STXXL_LIBRARIES@")