mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-13 19:29:53 +03:00
15 lines
378 B
Diff
15 lines
378 B
Diff
Fix build with cmake ninja backend
|
|
|
|
Ref https://github.com/nielssp/csol/pull/9
|
|
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -11,7 +11,7 @@ file(COPY themes DESTINATION .)
|
|
|
|
set(CURSES_NEED_WIDE TRUE)
|
|
find_package(Curses REQUIRED)
|
|
-include_directories("$(CURSES_INCLUDE_DIR)")
|
|
+include_directories(${CURSES_INCLUDE_DIRS})
|
|
|
|
include_directories(${CMAKE_BINARY_DIR}/src src)
|
|
|