mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
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:
parent
216fa8d543
commit
164170cfdf
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue