mirror of
https://github.com/taglib/taglib.git
synced 2025-07-17 20:44:20 -04:00
Ok, let's go back a few steps. Apparently I really confused svn move by adding
the directory and moving things to it in the same commit. git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@588014 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
20
ConfigureChecks.cmake
Normal file
20
ConfigureChecks.cmake
Normal file
@ -0,0 +1,20 @@
|
||||
# NOTE: only add something here if it is really needed by all of kdelibs.
|
||||
# Otherwise please prefer adding to the relevant config-foo.h.cmake file,
|
||||
# and the CMakeLists.txt that generates it (or a separate ConfigureChecks.make file if you prefer)
|
||||
# to minimize recompilations and increase modularity.
|
||||
|
||||
include(CheckIncludeFile)
|
||||
include(CheckIncludeFiles)
|
||||
include(CheckSymbolExists)
|
||||
include(CheckFunctionExists)
|
||||
include(CheckLibraryExists)
|
||||
include(CheckTypeSize)
|
||||
include(CheckCXXSourceCompiles)
|
||||
|
||||
#check for libz using the cmake supplied FindZLIB.cmake
|
||||
|
||||
IF(ZLIB_FOUND)
|
||||
SET(HAVE_LIBZ 1)
|
||||
ELSE(ZLIB_FOUND)
|
||||
SET(HAVE_LIBZ 0)
|
||||
ENDIF(ZLIB_FOUND)
|
Reference in New Issue
Block a user