瀏覽代碼

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 年之前
父節點
當前提交
66654135c1
共有 1 個文件被更改,包括 4 次插入0 次删除
  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} )
 add_executable(ccmake ${CURSES_SRCS} )
 target_link_libraries(ccmake CMakeLib)
 target_link_libraries(ccmake CMakeLib)
 if(CMAKE_USE_SYSTEM_FORM)
 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
   target_link_libraries(ccmake
     ${CURSES_FORM_LIBRARY}
     ${CURSES_FORM_LIBRARY}
     ${CURSES_LIBRARY}
     ${CURSES_LIBRARY}