# - Config file for the library package # It defines the following variables # MSGUTILS_INCLUDE_DIRS - include directories for this library # MSGUTILS_SCRIPTS_DIR - scripts directories for this library # MSGUTILS_LIBRARIES - other libraries to link against # MSGUTILS_EXECUTABLE - any executables produced for this library (e.g. examples, unit tests, etc.) # Compute paths get_filename_component(MSGUTILS_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) set(MSGUTILS_INCLUDE_DIRS "@CONF_INCLUDE_DIRS@") set(MSGUTILS_SCRIPTS_DIR "${MSGUTILS_SOURCE_DIR}/scripts") # Our library dependencies (contains definitions for IMPORTED targets) if(NOT TARGET MsgUtils AND NOT MsgUtils_BINARY_DIR) include("${MSGUTILS_CMAKE_DIR}/MsgUtilsTargets.cmake") endif() # These are IMPORTED targets created by MsgUtilsTargets.cmake set(MSGUTILS_LIBRARIES MsgUtils) set(MSGUTILS_EXECUTABLE MsgUtilsTest)