blob: 06c0470677a980f64aa71b0a8182b75aa68d0dab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# - Config file for the TNG_IO package
# It defines the following variables
# TNG_IO_INCLUDE_DIRS - include directories for TNG_IO
# TNG_IO_LIBRARIES - libraries to link against
# TNG_IO_DEFINITIONS - definitions used when compiling
# Compute paths
get_filename_component(TNG_IO_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
set(TNG_IO_INCLUDE_DIRS "@CONF_INCLUDE_DIRS@")
set(TNG_IO_DEFINITIONS "@TNG_COMPILE_DEFS@")
set(TNG_IO_LIBRARIES tng_io)
|