From 60bc16b16130dfad30dcf612c3144ebfc1ea2547 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Tue, 10 Sep 2019 12:23:50 +0000 Subject: [PATCH] Make CMake ignore if FLUID can't be found Fixes #45 --- DoConfig/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/DoConfig/CMakeLists.txt b/DoConfig/CMakeLists.txt index a2973d94..a2344cf8 100644 --- a/DoConfig/CMakeLists.txt +++ b/DoConfig/CMakeLists.txt @@ -22,6 +22,7 @@ endif() # Find FLTK if(NOT FORCE_LOCAL_LIBS) + set(FLTK_SKIP_FLUID ON) find_package(FLTK) endif()