2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2015-12-17 23:03:42 +03:00
|
|
|
#ifndef cm_kwiml_h
|
|
|
|
#define cm_kwiml_h
|
|
|
|
|
2015-12-18 17:57:55 +03:00
|
|
|
/* Use the KWIML library configured for CMake. */
|
|
|
|
#include "cmThirdParty.h"
|
|
|
|
#ifdef CMAKE_USE_SYSTEM_KWIML
|
2016-05-16 17:34:04 +03:00
|
|
|
#include <kwiml/abi.h>
|
|
|
|
#include <kwiml/int.h>
|
2015-12-18 17:57:55 +03:00
|
|
|
#else
|
2016-05-16 17:34:04 +03:00
|
|
|
#include "KWIML/include/kwiml/abi.h"
|
|
|
|
#include "KWIML/include/kwiml/int.h"
|
2015-12-18 17:57:55 +03:00
|
|
|
#endif
|
2015-12-17 23:03:42 +03:00
|
|
|
|
|
|
|
#endif
|