cmake: fix finding Marble

Silly bug. A lot of things in cmake are case insensitive. Some care about
case. Stupid.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-04-21 18:19:16 -07:00
parent 216fa8d543
commit 164170cfdf

View file

@ -53,7 +53,7 @@ endif()
# optional marble
if(NOT NO_MARBLE)
find_package(MARBLE QUIET)
find_package(Marble QUIET)
if(MARBLE_FOUND)
include_directories(${MARBLE_INCLUDE_DIR})
else()