summaryrefslogtreecommitdiffstats
path: root/src/tools/uic/cpp/cppwriteinitialization.cpp
Commit message (Expand)AuthorAgeFilesLines
* Fix crash in uic regarding setting QIconJarek Kobus2009-04-281-7/+7
* Fix management of svg iconsJarek Kobus2009-04-171-8/+8
* Long live Qt 4.5!Lars Knoll2009-03-231-0/+2919
d colspan='5' class='logmsg'> The previous wording of the VERBATIM option documentation in the add_custom_command and add_custom_target commands was confusing. It could be interpreted as the opposite of what the option means (no escaping instead of escaping). This clarifies the documentation to explicitly state that it escapes. * | STYLE: Nightly Date StampBrad King2009-04-011-2/+2 | | * | BUG: Fix issue #8804. Add vtk-5.4 lib path to the FindVTK.cmake module.David Cole2009-03-311-0/+1 | | * | ENH: use 0 not FALSEBill Hoffman2009-03-311-1/+1 | | * | ENH: add submit via cp modeBill Hoffman2009-03-312-3/+82 | | * | STYLE: White space only change to see if continuous is working on new ↵David Cole2009-03-311-1/+0 | | | | | | | | dashboard machine... * | STYLE: White space only change to see if continuous is working on new ↵David Cole2009-03-311-0/+1 | | | | | | | | dashboard machine... * | ENH: use a newer cmakeBill Hoffman2009-03-311-1/+1 | | * | BUG: Fix AddExternalProject config command idBrad King2009-03-311-10/+6 | | | | | | | | | | | | This fixes the get_configure_command_id function to not mistake CONFIGURE_COMMAND values that run "cmake -P" or "cmake -E" for a CMake project configuration. These values just help run scripts. * | STYLE: Nightly Date StampBrad King2009-03-311-1/+1 | | * | BUG: Fix inconsistency with lowercase drive letters on Windows.Clinton Stimpson2009-03-301-2/+6 | | * | ENH: Simpler AddExternalProject install stepBrad King2009-03-301-21/+8 | | | | | | | | This simplifies the implementation with add_external_project_step. * | ENH: Simpler AddExternalProject build stepBrad King2009-03-301-21/+8 | | | | | | | | This simplifies the implementation with add_external_project_step. * | ENH: Simpler AddExternalProject configure stepBrad King2009-03-301-41/+24 | | | | | | | | This simplifies the implementation with add_external_project_step. * | ENH: Simpler AddExternalProject patch stepBrad King2009-03-301-18/+7 | | | | | | | | This simplifies the implementation with add_external_project_step. * | ENH: Simpler AddExternalProject update stepBrad King2009-03-301-79/+26 | | | | | | | | This simplifies the implementation with add_external_project_step. * | ENH: Simpler AddExternalProject download stepBrad King2009-03-301-148/+65 | | | | | | | | This simplifies the implementation with add_external_project_step. * | ENH: Generalize AddExternalProject step creationBrad King2009-03-302-1/+90 | | | | | | | | | | | | This creates function 'add_external_project_step' to centralize creation of external project steps. Users may call it to add custom steps to external project builds. * | ENH: Factor argument parsing in AddExternalProjectBrad King2009-03-301-42/+49 | | | | | | | | | | | | The add_external_project function parses its arguments and puts them in properties of the target it creates. This factors out implementation of the behavior for use by other functions in the module. * | ENH: Teach AddExternalProject a 'complete' stepBrad King2009-03-301-8/+15 | | | | | | | | | | This separates creation of the project completion sentinel file from the 'install' step to allow more steps to be added in between later. * | ENH: Add version info to about dialog, including Qt version.Clinton Stimpson2009-03-301-1/+7 | | * | COMP: missing string.h header for strlen.Mathieu Malaterre2009-03-301-1/+3 | | * | ENH: Document scope of add_custom_command outputsBrad King2009-03-302-4/+10 | | | | | | | | | | | | This explicitly states the scope of add_custom_command rules in the documentation of add_custom_command and add_custom_target. See issue #8815. * | ENH: remote debugging of sunosMathieu Malaterre2009-03-301-2/+13 | | * | STYLE: Nightly Date StampBrad King2009-03-301-1/+1 | | * | STYLE: Nightly Date StampBrad King2009-03-291-1/+1 | | * | STYLE: fix line lenghtBill Hoffman2009-03-281-2/+4 | | * | ENH: change qt to 4.5Bill Hoffman2009-03-282-2/+3 | | * | STYLE: Nightly Date StampBrad King2009-03-281-1/+1 | | * | ENH: mark the two variables as advancedAlexander Neundorf2009-03-271-3/+1 | | | | | | | | | | | | -remove unnecessary deault search dirs Alex * | BUG: fix for #8686 add some more compiler flagsBill Hoffman2009-03-271-0/+11 | | * | ENH: LIBPATH is not required for cl to workBill Hoffman2009-03-271-2/+1 | | * | ENH: fix spaces in path escapeBill Hoffman2009-03-271-1/+1 | | * | ENH: use a different cmakeBill Hoffman2009-03-271-1/+1 | | * | STYLE: Nightly Date StampBrad King2009-03-271-1/+1 | | * | BUG: Don't return checkable flag for item when in the middle of ↵Clinton Stimpson2009-03-261-0/+1 | | | | | | | | configure/generate. * | ENH: Do a recheck of QT_MAC_USE_COCOA when qmake executable changes.Clinton Stimpson2009-03-261-0/+3 | | * | STYLE: Nightly Date StampBrad King2009-03-261-1/+1 | | * | ENH: Support OUTPUT_LOCATION property for qm files.Clinton Stimpson2009-03-251-1/+7 | | | | | | | | Fixes #8492. * | BUG: Fix CMAKE_CURRENT_LIST_FILE in macrosBrad King2009-03-253-5/+16 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The value of CMAKE_CURRENT_LIST_FILE is supposed to be the list file currently being executed. Before macros were introduced this was always the context of the argument referencing the variable. Our original implementation of macros replaced the context of command arguments inside the macro with that of the arguments of the calling context. This worked recursively, but only worked when macros had at least one argument. Furthermore, it caused parsing errors of the arguments to report the wrong location (calling context instead of line with error). The commit "Improve context for errors in macros" fixed the latter bug by keeping the lexical context of command arguments in macros. It broke evaluation of CMAKE_CURRENT_LIST_FILE because the calling context was no longer preserved in the argument referencing the variable. However, since our list file processing now maintains the proper value of CMAKE_CURRENT_LIST_FILE with dynamic scope we no longer need the context of the argument and can just evaluate the variable normally. * | STYLE: Nightly Date StampBrad King2009-03-251-1/+1 | | * | STYLE: Nightly Date StampBrad King2009-03-241-1/+1 | | * | ENH: Support preprocessor def values in VS6Brad King2009-03-23