diff options
author | Christophe Giboudeaux <christophe@krop.fr> | 2021-03-29 20:28:58 +0200 |
---|---|---|
committer | Christophe Giboudeaux <christophe@krop.fr> | 2021-04-06 19:59:17 +0000 |
commit | 272352969834598cfd20f3e8b15916aa3ccebbbb (patch) | |
tree | d0d831203f0816ee2d4edecb526cdbdec64ea3d4 /attic/modules/FindWcecompat.cmake | |
parent | d88db6a1469bdcb48e64f265d35a6f7867767b54 (diff) | |
download | extra-cmake-modules-272352969834598cfd20f3e8b15916aa3ccebbbb.tar.gz extra-cmake-modules-272352969834598cfd20f3e8b15916aa3ccebbbb.tar.bz2 |
Clean ECM's attic
Diffstat (limited to 'attic/modules/FindWcecompat.cmake')
-rw-r--r-- | attic/modules/FindWcecompat.cmake | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/attic/modules/FindWcecompat.cmake b/attic/modules/FindWcecompat.cmake deleted file mode 100644 index acba2dd4..00000000 --- a/attic/modules/FindWcecompat.cmake +++ /dev/null @@ -1,25 +0,0 @@ -# Try to find Wcecompat functionality -# Once done this will define -# -# WCECOMPAT_FOUND - system has Wcecompat -# WCECOMPAT_INCLUDE_DIR - Wcecompat include directory -# WCECOMPAT_LIBRARIES - Libraries needed to use Wcecompat -# -# Copyright (c) 2010, Andreas Holzammer, <andy@kdab.com> -# -# Redistribution and use is allowed according to the terms of the BSD license. - -find_path(WCECOMPAT_INCLUDE_DIR errno.h PATH_SUFFIXES wcecompat) - -set(WCECOMPAT_LIB_FOUND FALSE) - -if(WCECOMPAT_INCLUDE_DIR) - find_library(WCECOMPAT_LIBRARIES NAMES wcecompat wcecompatex ) - - if(WCECOMPAT_LIBRARIES) - set(WCECOMPAT_LIB_FOUND TRUE) - endif() -endif() - -include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(Wcecompat DEFAULT_MSG WCECOMPAT_LIBRARIES WCECOMPAT_LIB_FOUND) |