shithub: cstory

Download patch

ref: 60bc16b16130dfad30dcf612c3144ebfc1ea2547
parent: c60cdb36100cefd3183744acbf3332e098308385
author: Clownacy <Clownacy@users.noreply.github.com>
date: Tue Sep 10 08:23:50 EDT 2019

Make CMake ignore if FLUID can't be found

Fixes #45

--- a/DoConfig/CMakeLists.txt
+++ b/DoConfig/CMakeLists.txt
@@ -22,6 +22,7 @@
 
 # Find FLTK
 if(NOT FORCE_LOCAL_LIBS)
+	set(FLTK_SKIP_FLUID ON)
 	find_package(FLTK)
 endif()
 
--