summaryrefslogtreecommitdiffstats
path: root/Source/CursesDialog/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* ccmake: Use type-based colors to display cache valuesSylvain Joubert2019-11-041-0/+21
| | | | | The colors are based on the entry type (or value for booleans), paths and filepaths sharing the same color.
* Add option to configure Ninja link job pool for CMake's own binariesBrad King2019-10-101-0/+4
| | | | | Create an undocumented `CMake_JOB_POOL_LINK_BIN` option that builders can set to avoid linking too many of our binaries at once.
* CursesDialog: modernize CMake usageTushar Maheshwari2019-09-261-20/+16
|
* ccmake: Fix form.h include with CMAKE_USE_SYSTEM_FORMChristoph Grüninger2019-08-201-0/+4
| | | | | | | Some distributions have form.h in ncurses/ next to the ncurses.h found by FindCurses. Fixes: #19589
* cmake: specify source file extensionsBen Boeckel2018-01-091-13/+13
|
* CursesDialog: use target_include_directories for cmFormDaniel Pfeifer2017-08-181-4/+0
|
* Simplify CMake per-source license noticesBrad King2016-09-271-11/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | Per-source copyright/license notice headers that spell out copyright holder names and years are hard to maintain and often out-of-date or plain wrong. Precise contributor information is already maintained automatically by the version control tool. Ultimately it is the receiver of a file who is responsible for determining its licensing status, and per-source notices are merely a convenience. Therefore it is simpler and more accurate for each source to have a generic notice of the license name and references to more detailed information on copyright holders and full license terms. Our `Copyright.txt` file now contains a list of Contributors whose names appeared source-level copyright notices. It also references version control history for more precise information. Therefore we no longer need to spell out the list of Contributors in each source file notice. Replace CMake per-source copyright/license notice headers with a short description of the license and links to `Copyright.txt` and online information available from "https://cmake.org/licensing". The online URL also handles cases of modules being copied out of our source into other projects, so we can drop our notices about replacing links with full license text. Run the `Utilities/Scripts/filter-notices.bash` script to perform the majority of the replacements mechanically. Manually fix up shebang lines and trailing newlines in a few files. Manually update the notices in a few files that the script does not handle.
* Add option to control 'bin' directory of CMake's own installation (#16076)Nicolas BUNEL2016-06-011-1/+1
| | | | | Add a `CMAKE_BIN_DIR` cache entry to CMake's own build configuration. Add a `--bindir` option to the `bootstrap` script to set it.
* CMake: New option CMake_INSTALL_COMPONENTSKonstantin Podsvirov2015-07-071-1/+2
| | | | | By default is OFF. Now it's used with CPack IFW himself installer.
* CMake: Install COMPONENTsKonstantin Podsvirov2015-07-071-1/+1
| | | | | | | | | | | | | | | Added components: - cmake - ctest - cpack - cmake-gui - ccmake - data - sphinx-html - sphinx-singlehtml - sphinx-qthelp Other now Unspecified.
* ccmake: Add CMAKE_USE_SYSTEM_FORM option to use libform instead of cmFormÅdne Hovda2014-11-251-3/+15
|
* ccmake: Teach dialog to support cache STRINGS propertyBill Hoffman2013-10-071-0/+1
| | | | | | This commit adds the ability to ccmake of cycling through cache options. This uses the STRINGS property of the cache entry. The enter key will cycle forward, and the right and left arrows will go up and down in the list.
* Clean up install rules of CMake itself (#14371)Brad King2013-08-261-1/+1
| | | | | | | | | | | Ensure CMAKE_DATA_DIR, CMAKE_DOC_DIR, and CMAKE_MAN_DIR are always relative paths in CMake code, and set defaults accordingly. Use the install() command instead of install_files() and install_targets(). This is more modern and also avoids stripping of the first character from user-specified destinations. While at it, fix the default destinations reported in the bootstrap help.
* Convert CMake-language commands to lower caseKitware Robot2012-08-131-7/+7
| | | | | | | | | | | | | | | | | Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code: cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | xargs -0 sed -i -f convert.sed && rm convert.sed
* Convert CMake to OSI-approved BSD LicenseBrad King2009-09-281-0/+11
| | | | | | | This converts the CMake license to a pure 3-clause OSI-approved BSD License. We drop the previous license clause requiring modified versions to be plainly marked. We also update the CMake copyright to cover the full development time range.
* ENH: Simplify code by removing unnecessary LINK_DIRECTORIES call.Brad King2008-01-231-1/+0
|
* COMP: make it build on NetBSD, which has separate curses and ncurses, soAlexander Neundorf2007-08-271-4/+3
| | | | | | | it has to be detected that curses isn't good enough, but ncurses is, and that ncurses.h instead of curses.h is included Alex
* BUG: add explicit clean up of the cachemanager at exit of programs, so dll ↵Bill Hoffman2002-08-231-4/+0
| | | | destruction is not a problem.
* added libKen Martin2002-08-221-0/+1
|
* BUG: Changed from SOURCE_FILES to SETAmitha Perera2002-04-221-3/+3
|
* ENH: use target link libraries and add the link directory for cmformBill Hoffman2002-02-051-5/+6
|
* try to get this working for dec cxx default compiler optionsBill Hoffman2002-01-311-12/+12
|
* Improvements to the curses interface.Berk Geveci2001-11-291-0/+1
|
* fixes to curses stuffKen Martin2001-11-131-1/+3
|
* Renaming ccurses to ccmake.Berk Geveci2001-11-091-2/+2
|
* Trying to fix curses.Berk Geveci2001-11-091-1/+0
|
* Changes to remove warnings and fix dependencies.Berk Geveci2001-11-081-1/+2
|
* HPUX support.Berk Geveci2001-11-051-0/+5
|
* Fixing problems on Sun (name collusions between STL and curses) and ↵Berk Geveci2001-11-051-1/+5
| | | | disabling curses temporarily.
* Adding curses support.Berk Geveci2001-11-041-0/+18