summaryrefslogtreecommitdiff
path: root/dev-lang/souffle/files/souffle-2.4.1-ncurses.patch
blob: 96882d9f29da11a932a82718f463202226d5ead4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -288,8 +288,8 @@ endif()
 if (SOUFFLE_USE_CURSES)
     target_compile_definitions(libsouffle PUBLIC USE_NCURSES)
     target_compile_definitions(compiled PUBLIC USE_NCURSES)
-    target_link_libraries(libsouffle PUBLIC Curses::NCurses)
-    target_link_libraries(compiled PUBLIC Curses::NCurses)
+    target_link_libraries(libsouffle PUBLIC ${CURSES_LIBRARIES})
+    target_link_libraries(compiled PUBLIC ${CURSES_LIBRARIES})
 endif()
 
 if (SOUFFLE_USE_ZLIB)