Description: Don't use cmake to find tweeny
 Hardcode the path to tweeny.
Author: Hubert Chathi <uhoreg@debian.org>

Last-Update: 2020-04-22

--- nheko-0.7.0.orig/CMakeLists.txt
+++ nheko-0.7.0/CMakeLists.txt
@@ -418,7 +418,8 @@ if(USE_BUNDLED_TWEENY)
 		)
 	FetchContent_MakeAvailable(Tweeny)
 else()
-	find_package(Tweeny REQUIRED)
+	add_library(tweeny INTERFACE)
+	target_include_directories(tweeny INTERFACE /usr/include/tweeny)
 endif()
 
 # single instance functionality
