Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
81b5c3b3
Commit
81b5c3b3
authored
Aug 07, 2003
by
Andy Cedilnik
Browse files
ENH: Fix dependencies for curses dialog
parent
1de2bba7
Changes
2
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
81b5c3b3
...
...
@@ -60,6 +60,13 @@ SUBDIRS(Source/kwsys)
SET
(
CMAKE_BUILD_WITH_CURL 1
)
SUBDIRS
(
Source/CTest/Curl
)
IF
(
UNIX
)
INCLUDE
(
${
CMake_SOURCE_DIR
}
/Modules/FindCurses.cmake OPTIONAL
)
IF
(
CURSES_LIBRARY
)
SUBDIRS
(
Source/CursesDialog/form
)
ENDIF
(
CURSES_LIBRARY
)
ENDIF
(
UNIX
)
SUBDIRS
(
Source Modules Templates Utilities
)
ENABLE_TESTING
()
...
...
Source/CMakeLists.txt
View file @
81b5c3b3
...
...
@@ -134,7 +134,6 @@ ENDIF(CMAKE_BUILD_WITH_CURL)
IF
(
UNIX
)
INCLUDE
(
${
CMake_SOURCE_DIR
}
/Modules/FindCurses.cmake OPTIONAL
)
IF
(
CURSES_LIBRARY
)
SUBDIRS
(
CursesDialog/form
)
INCLUDE
(
${
CMake_SOURCE_DIR
}
/Source/CursesDialog/CMakeLists.txt
)
ENDIF
(
CURSES_LIBRARY
)
ENDIF
(
UNIX
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment