Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Tests: Add workaround to Wrapping test for Watcom failure | Brad King | 2016-04-28 | 1 | -1/+1 |
| | | | | | | The Watcom tools do not seem to like our wrapFLTK executable to mix C and C++ sources. Work around this by using C++ for both sources. | ||||
* | Tests: Cover fltk_wrap_ui on an executable that links libraries | Brad King | 2016-01-21 | 1 | -4/+6 |
| | | | | | | | CMake 3.4 may crash on this case. The problem seems to have been fixed since then, but keep it working by adding a test case now. Reported-by: Gonzalo Garramuño <ggarra13@gmail.com> | ||||
* | Tests: Don't read the LOCATION property from build targets. | Stephen Kelly | 2013-11-19 | 1 | -2/+1 |
| | |||||
* | Drop use of configure_file IMMEDIATE option | Daniele E. Domenichelli | 2013-11-13 | 1 | -2/+2 |
| | | | | | | Since commit 7d47c693 (Drop compatibility with CMake < 2.4, 2013-10-08) we no longer need to use the configure_file IMMEDIATE option to support compatibility modes less than 2.0. | ||||
* | Fix casing of 'Qt' in docs, comments and user-visible strings. | Stephen Kelly | 2012-08-28 | 1 | -4/+4 |
| | | | | | QT (cue-tea) is Apple QuickTime. Qt (cute) is the C++ framework. | ||||
* | Remove CMake-language block-end command arguments | Kitware Robot | 2012-08-13 | 1 | -5/+5 |
| | | | | | | | | | | | | | | | | | Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style. Run the following shell code: for c in else endif endforeach endfunction endmacro endwhile; do echo 's/\b'"$c"'\(\s*\)(.\+)/'"$c"'\1()/' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | egrep -z -v 'Tests/CMakeTests/While-Endwhile-' | xargs -0 sed -i -f convert.sed && rm convert.sed | ||||
* | Convert CMake-language commands to lower case | Kitware Robot | 2012-08-13 | 1 | -48/+48 |
| | | | | | | | | | | | | | | | | | 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 | ||||
* | Remove trailing whitespace from most CMake and C/C++ code | Kitware Robot | 2012-08-13 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | | | Our Git commit hooks disallow modification or addition of lines with trailing whitespace. Wipe out all remnants of trailing whitespace everywhere except third-party code. Run the following shell code: git ls-files -z -- \ bootstrap doxygen.config '*.readme' \ '*.c' '*.cmake' '*.cpp' '*.cxx' \ '*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \ '*.mm' '*.pike' '*.py' '*.txt' '*.vim' | egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' | egrep -z -v '^(Modules/CPack\..*\.in)' | xargs -0 sed -i 's/ \+$//' | ||||
* | ENH: preclean some warnings | Ken Martin | 2008-03-25 | 1 | -0/+1 |
| | |||||
* | BUG: Fixed fake generation of files to behave more like fluid. | Brad King | 2007-11-10 | 1 | -4/+0 |
| | |||||
* | ENH: remove findqt3 from cmake's cmakelist files | Bill Hoffman | 2007-11-02 | 1 | -0/+2 |
| | |||||
* | ENH: removed old VTK tests | Ken Martin | 2006-12-12 | 1 | -67/+0 |
| | |||||
* | ENH: make sure it is qt3 before running test | Bill Hoffman | 2006-11-22 | 1 | -2/+2 |
| | |||||
* | ENH: make sure findqt3 finds qt3 and not qt4 | Bill Hoffman | 2006-11-22 | 1 | -1/+1 |
| | |||||
* | ENH: for all custom commands that can not be given to a target, add them to ↵ | Bill Hoffman | 2006-01-09 | 1 | -2/+5 |
| | | | | all targets in the current makefile | ||||
* | BUG: force EXECUABLE and LIBRARY output paths so bad cache entries do not ↵ | Bill Hoffman | 2006-01-02 | 1 | -2/+2 |
| | | | | fail tests | ||||
* | COMP: Need target-level dependency from wrapper targets on Wrap executable ↵ | Brad King | 2005-11-17 | 1 | -0/+3 |
| | | | | target. | ||||
* | ENH: more qt changes | Bill Hoffman | 2005-09-12 | 1 | -2/+1 |
| | |||||
* | ENH: clean up the find qt stuff some | Bill Hoffman | 2005-09-10 | 1 | -1/+1 |
| | |||||
* | ENH: change to work with new FLTK command | Ken Martin | 2005-06-10 | 1 | -0/+1 |
| | |||||
* | ENH: no longer test ITK command | Ken Martin | 2005-06-09 | 1 | -10/+0 |
| | |||||
* | ENH: remove bad add target commands | Ken Martin | 2005-06-08 | 1 | -2/+0 |
| | |||||
* | ENH: remove requirements on 1.2 | Ken Martin | 2005-06-08 | 1 | -5/+5 |
| | |||||
* | ENH: removed old command | Ken Martin | 2005-06-02 | 1 | -3/+1 |
| | |||||
* | BUG: Do not add Qt wrapping test unless QT is found and QT_UIC_EXECUTABLE is ↵ | Brad King | 2005-03-16 | 1 | -2/+2 |
| | | | | found. | ||||
* | ENH: Adding cleaning of custom command outputs during "make clean". | Brad King | 2005-02-09 | 1 | -0/+4 |
| | |||||
* | BUG: Fix dependency to input file for QT_WRAP_CPP. Bug #421 - QT_WRAP_CPP | Andy Cedilnik | 2004-01-05 | 1 | -1/+1 |
| | |||||
* | ENH: Better testing | Andy Cedilnik | 2003-09-24 | 1 | -6/+10 |
| | |||||
* | ENH: More verbose test | Andy Cedilnik | 2003-08-07 | 1 | -0/+1 |
| | |||||
* | ENH: Make it work for QT 2.3 non commercial on windows | Andy Cedilnik | 2003-08-01 | 1 | -0/+1 |
| | |||||
* | ENH: Add more debug | Andy Cedilnik | 2003-08-01 | 1 | -0/+1 |
| | |||||
* | ERR: Only link qt to qt executable | Andy Cedilnik | 2003-08-01 | 1 | -1/+1 |
| | |||||
* | ERR: Attempt to fix wrapping on Windows | Andy Cedilnik | 2003-07-31 | 1 | -1/+4 |
| | |||||
* | ENH: Really test uic and perform configured uic test | Andy Cedilnik | 2003-07-30 | 1 | -34/+34 |
| | |||||
* | ENH: Add executable for wrapping test, so that make stage actually passes | Andy Cedilnik | 2003-07-30 | 1 | -4/+7 |
| | |||||
* | for unix add x11 and pthreads for qt | Bill Hoffman | 2003-07-25 | 1 | -0/+3 |
| | |||||
* | minor fix | Bill Hoffman | 2003-06-04 | 1 | -0/+9 |
| | |||||
* | now uses SET instead of SOURCE_LIST command | Ken Martin | 2002-12-12 | 1 | -2/+2 |
| | |||||
* | added include of FindQT.cmake | Franck Bettinger | 2002-09-12 | 1 | -2/+8 |
| | |||||
* | corrected test for QTWrapUI | Franck Bettinger | 2002-09-12 | 1 | -4/+5 |
| | |||||
* | added test for QTWrapUI | Franck Bettinger | 2002-09-11 | 1 | -1/+12 |
| | |||||
* | fixed test for new cmake | Ken Martin | 2002-09-04 | 1 | -1/+1 |
| | |||||
* | ENH: Added coverage test for ITK_WRAP_TCL. Doesn't actually invoke CABLE. | Brad King | 2002-05-08 | 1 | -0/+11 |
| | |||||
* | ENH: Removed tests for commands that no longer exist. | Brad King | 2002-04-17 | 1 | -6/+0 |
| | |||||
* | FIX: do not need CMakeLib | Sebastien Barre | 2002-03-27 | 1 | -9/+0 |
| | |||||
* | ENH: USE_MANGLED_MESA is more careful now. Try to trick it again. | Sebastien Barre | 2002-03-26 | 1 | -0/+4 |
| | |||||
* | ENH: Use ${CMAKE_CFG_INTDIR} instead of hardcoded RelInfo, Debug, Release, etc. | Sebastien Barre | 2002-03-26 | 1 | -6/+2 |
| | |||||
* | ENH: Trick VTK_WRAP_JAVA in a better way (avoid CUSTOM_TARGET) | Sebastien Barre | 2002-02-12 | 1 | -5/+7 |
| | |||||
* | Add coverage for VTK_MAKE_INSTANTIATOR | Sebastien Barre | 2002-01-21 | 1 | -0/+9 |
| | |||||
* | Add coverage for QT and FLTK wrappers. Also MANGLED_MESA | Sebastien Barre | 2002-01-20 | 1 | -0/+34 |
| |