mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
This needs to be fixed to fail gracefully for users without CppUnit available. CCMAIL:lalinsky@gmail.com git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@735160 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
26 lines
805 B
CMake
26 lines
805 B
CMake
# 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
|
|
FIND_PACKAGE(ZLIB)
|
|
|
|
IF(ZLIB_FOUND)
|
|
SET(HAVE_ZLIB 1)
|
|
ELSE(ZLIB_FOUND)
|
|
SET(HAVE_ZLIB 0)
|
|
ENDIF(ZLIB_FOUND)
|
|
|
|
# Currently breaks CMake when CppUnit is not present.
|
|
#SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules)
|
|
#FIND_PACKAGE(CppUnit)
|