From 164170cfdf48f274d45a860fca4546f9029d7dd4 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Tue, 21 Apr 2015 18:19:16 -0700 Subject: [PATCH] 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 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a96129243..06fd5099b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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()