https://github.com/Kitware/CMake
Revision f36eaf6a6eb8a7ef1127ad43e419896be89f0e39 authored by Brad King on 09 March 2017, 20:56:30 UTC, committed by Brad King on 09 March 2017, 21:25:15 UTC
Use `cmGeneratorTarget::ModuleDefinitionInfo` to combine the
implementation of `WINDOWS_EXPORT_ALL_SYMBOLS` with that of using a
`.def` file as a source.  Only one of these could be used within a
single target before anyway.
1 parent 25d261e
Raw File
Tip revision: f36eaf6a6eb8a7ef1127ad43e419896be89f0e39 authored by Brad King on 09 March 2017, 20:56:30 UTC
Refactor WINDOWS_EXPORT_ALL_SYMBOLS implementation
Tip revision: f36eaf6
cm_rhash.h
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */
#ifndef cm_rhash_h
#define cm_rhash_h

/* Use the LibRHash library configured for CMake.  */
#include "cmThirdParty.h"
#ifdef CMAKE_USE_SYSTEM_LIBRHASH
#include <rhash.h>
#else
#include <cmlibrhash/librhash/rhash.h>
#endif

#endif
back to top