2016-09-27 19:01:08 +00: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 20:03:42 +00:00
|
|
|
#ifndef cm_kwiml_h
|
|
|
|
#define cm_kwiml_h
|
|
|
|
|
2015-12-18 14:57:55 +00:00
|
|
|
/* Use the KWIML library configured for CMake. */
|
|
|
|
#include "cmThirdParty.h"
|
|
|
|
#ifdef CMAKE_USE_SYSTEM_KWIML
|
2016-05-16 14:34:04 +00:00
|
|
|
#include <kwiml/abi.h>
|
|
|
|
#include <kwiml/int.h>
|
2015-12-18 14:57:55 +00:00
|
|
|
#else
|
2016-05-16 14:34:04 +00:00
|
|
|
#include "KWIML/include/kwiml/abi.h"
|
|
|
|
#include "KWIML/include/kwiml/int.h"
|
2015-12-18 14:57:55 +00:00
|
|
|
#endif
|
2015-12-17 20:03:42 +00:00
|
|
|
|
|
|
|
#endif
|