Browse Source

ccmake: Fix form.h include with CMAKE_USE_SYSTEM_FORM

Some distributions have form.h in ncurses/ next to the ncurses.h found
by FindCurses.

Fixes: #19589
Christoph Grüninger 6 years ago
parent
commit
66654135c1
1 changed files with 4 additions and 0 deletions
  1. 4 0
      Source/CursesDialog/CMakeLists.txt

+ 4 - 0
Source/CursesDialog/CMakeLists.txt

@@ -23,6 +23,10 @@ include_directories(${CURSES_INCLUDE_PATH})
 add_executable(ccmake ${CURSES_SRCS} )
 target_link_libraries(ccmake CMakeLib)
 if(CMAKE_USE_SYSTEM_FORM)
+  find_path(CURSES_FORM_INCLUDE_DIR NAMES form.h HINTS ${CURSES_INCLUDE_PATH} ${CURSES_INCLUDE_PATH}/ncurses)
+  if(CURSES_FORM_INCLUDE_DIR)
+    target_include_directories(ccmake PRIVATE ${CURSES_FORM_INCLUDE_DIR})
+  endif()
   target_link_libraries(ccmake
     ${CURSES_FORM_LIBRARY}
     ${CURSES_LIBRARY}