aboutsummaryrefslogtreecommitdiff
path: root/modules/FindMusicBrainz.cmake
blob: a30e2973ae6f56c893fa518bc5d71e79fcbf6b6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Option for build or not MusicBrainz
#
# Copyright (c) 2006, Laurent Montel, <montel@kde.org>
#
# Redistribution and use is allowed according to the terms of the BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.


FIND_PATH(MUSICBRAINZ_INCLUDE_DIR musicbrainz/musicbrainz.h)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args( MusicBrainz DEFAULT_MSG
                                   MUSICBRAINZ_INCLUDE_DIR)

MARK_AS_ADVANCED(MUSICBRAINZ_INCLUDE_DIR)