summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* BUG: fix for # 8413 add more haiku searchingBill Hoffman2009-01-291-1/+2
|
* BUG: fix for #8423Bill Hoffman2009-01-292-1/+3
|
* STYLE: fix warningBill Hoffman2009-01-291-1/+1
|
* STYLE: Nightly Date StampBrad King2009-01-291-1/+1
|
* STYLE: Reworded some of the OS-X code commentsPhilip Lowman2009-01-291-22/+23
|
* STYLE: fix warningBill Hoffman2009-01-281-1/+1
|
* ENH: Better way to add framework includes.Clinton Stimpson2009-01-281-1/+1
|
* ENH: clean up status and change order for more common compilers firstBill Hoffman2009-01-281-9/+9
|
* ENH: add openmp supportBill Hoffman2009-01-281-0/+108
|
* BUG: Fix careless typo that only caused test failures on clean builds...David Cole2009-01-281-1/+1
|
* STYLE: Nightly Date StampBrad King2009-01-281-1/+1
|
* BUG: Try to fix the universal binary continuous dashboard on dashmacmini2. I ↵David Cole2009-01-271-6/+12
| | | | am deducing that the value of CMAKE_OSX_ARCHITECTURES_DEFAULT is responsible for the failure, although I cannot reproduce it on other builds or even by running the test via ctest interactively *on* the continuous dashboard's build...
* BUG: Only set CMAKE_OSX_DEPLOYMENT_TARGET on Mac OSX 10.4 or later. The gcc ↵David Cole2009-01-271-2/+4
| | | | that runs on 10.3 and earlier does not understand the compiler flag it maps to...
* STYLE: Emit filenames in try_compile error message to get more information ↵David Cole2009-01-271-1/+5
| | | | from the Continuous dashboard test that is failing.
* BUG: Reset file submission list on test restartBrad King2009-01-272-2/+4
| | | | | | | | | | When running in script mode it is possible to run multiple separate dashboard submissions in one cmCTest instance. The recent refactoring of file submission lists into parts failed to clear the submission lists when starting a new dashboard (ctest_start or ctest_update). Only the unused old submission set was cleared. This fixes the refactored version to remove the old submission set completely and also clear the part-wise lists.
* BUG: Fix CTest submit-only operationBrad King2009-01-271-8/+1
| | | | | | | | We need to initialize cmCTestSubmitHandler on construction to make sure all parts get enabled by default. The recent fix to re-enable all parts on initialization broke submit-only operations because the handler did not initialize on construction. This also removes duplicate initialization code.
* ENH: change to use CMAKE_CREATE_VERSION from CMAKE_VERSION as CMAKE_VERSION ↵Bill Hoffman2009-01-271-1/+1
| | | | is auto-defined now
* ENH: change to use CMAKE_CREATE_VERSION from CMAKE_VERSION as CMAKE_VERSION ↵Bill Hoffman2009-01-274-32/+32
| | | | is auto-defined now
* BUG: Fix issue #6195. Add CMAKE_OSX_DEPLOYMENT_TARGET cache variable to ↵David Cole2009-01-273-35/+128
| | | | specify the target deployment runtime OS version of the built executables on Mac OSX. Thanks to Mike Jackson for the patch.
* BUG: fix for 7845, idl files compile even with headerfile only onBill Hoffman2009-01-271-2/+1
|
* STYLE: Nightly Date StampBrad King2009-01-271-1/+1
|
* BUG: Fixed recent regression when finding some includes.Clinton Stimpson2009-01-261-3/+3
|
* STYLE: Nightly Date StampBrad King2009-01-261-1/+1
|
* STYLE: Nightly Date StampBrad King2009-01-251-1/+1
|
* STYLE: Nightly Date StampBrad King2009-01-241-1/+1
|
* ENH: Should have a -F for framework includes on Mac. Fixes ParaView build ↵Clinton Stimpson2009-01-231-0/+3
| | | | with Qt 4.5 on Mac.
* ENH: Add convenience for identifying Cocoa based Qt.Clinton Stimpson2009-01-231-0/+3
|
* ENH: Turn off CPACK_BINARY_TBZ2 and CPACK_BINARY_ZIP by default. Strictly ↵David Cole2009-01-231-2/+2
| | | | speaking, this changes behavior from cpack 2.6, but now that cpack returns a non-zero exit code when it encounters an error, and it is an error to try to use a generator that is not available... It makes sense to turn these off by default since not everybody has these generators installed. It is easy for a project to turn these options back on if they need to: simply set(CPACK_BINARY_TBZ2 ON) or set(CPACK_BINARY_ZIP ON) before include(CPack) in your CMakeLists.txt...
* ENH: try to fix vs6 buildBill Hoffman2009-01-231-2/+1
|
* ENH: Better support for "fltk-config" binary, added options so the userPhilip Lowman2009-01-231-38/+61
| | | | doesn't have to have everything in order for FLTK_FOUND to be true. #7809
* STYLE: Nightly Date StampBrad King2009-01-231-1/+1
|
* BUG: Forgot to change parent class in cmCPackTypeMacro when I added ↵David Cole2009-01-221-1/+1
| | | | cmCPackDragNDropGenerator. Fix it now that it really matters. (The BundleGenerator test started failing after the last commit. This fixes it.)
* BUG: Fix issue #8383. Avoid crashing when using the Bundle CPack generator ↵David Cole2009-01-224-0/+28
| | | | and CPACK_BUNDLE_NAME is not set. Instead, fail gracefully giving an informative error message and non-zero exit code.
* ENH: Isolate policy changes in included scriptsBrad King2009-01-2212-19/+210
| | | | | | | | Isolation of policy changes inside scripts is important for protecting the including context. This teaches include() and find_package() to imply a cmake_policy(PUSH) and cmake_policy(POP) around the scripts they load, with a NO_POLICY_SCOPE option to disable the behavior. This also creates CMake Policy CMP0011 to provide compatibility. See issue #8192.
* ENH: Better policies for functions and macrosBrad King2009-01-2210-2/+105
| | | | | | | This teaches functions and macros to use policies recorded at creation time when they are invoked. It restores the policies as a weak policy stack entry so that any policies set by a function escape to its caller as before.
* ENH: Improve stack discussion in cmake_policyBrad King2009-01-221-8/+9
| | | | | | This re-organizes the discussion of the policy stack in documentation of the cmake_policy() command. The new organization clearer and easier to extend with new information.
* ENH: Create notion of a 'weak' policy stack entryBrad King2009-01-222-11/+22
| | | | | | | A 'weak' poilcy stack entry responds normally to queries. However, setting a policy in a weak entry will recursively set the policy in the next entry too. This also gives the internal interface to create a weak entry the option to provide an initial PolicyMap for it.
* BUG: Fix issue #8402. Add a drag and drop bundle generator to the Mac build ↵David Cole2009-01-228-90/+315
| | | | of CPack. Add a test of it in the CPackComponents test. Thanks to Clinton Stimpson for the patch.
* ENH: Create policy scope barriersBrad King2009-01-223-54/+82
| | | | | This creates a barrier mechanism to prevent user code from using cmake_policy(POP) to pop a scope it didn't push with cmake_policy(PUSH).
* ENH: Make policy push/pop methods privateBrad King2009-01-221-3/+7
| | | | | | | | This makes cmMakefile::PushPolicy and cmMakefile::PopPolicy private so that any outside place that uses them needs to use the PolicyPushPop helper in an automatic variable. We grant an exception to cmCMakePolicyCommand so it can implement cmake_policy(PUSH) and cmake_policy(POP).
* ENH: Refactor find_package version file scopingBrad King2009-01-221-6/+4
| | | | | This converts the variable and policy scope protection find_package() uses when loading version files to use automatic variables.
* ENH: Create automatic policy push/pop helperBrad King2009-01-222-0/+41
| | | | | | This creates cmMakefile::PolicyPushPop to push and pop policy scope automatically. It also enforces balanced push/pop pairs inside the scope it handles.
* ENH: Refactor policy stack representationBrad King2009-01-223-7/+16
| | | | | | This defines PolicyMap as a public member of cmPolicies. Its previous role as a policy stack entry is now called PolicyStackEntry and represented as a class to which more information can be added later.
* BUG: Avoid trying to package the X11 test on Windows when there is no NSIS ↵David Cole2009-01-221-3/+5
| | | | installer available.
* BUG: Fix issue #8363. Wrap output with MakeXMLSafe calls so that the ↵David Cole2009-01-221-6/+12
| | | | generated XML files are valid, parse-able XML.
* STYLE: Nightly Date StampBrad King2009-01-221-1/+1
|
* BUG: Fixes detection of FLTK on Gentoo (Issue #7809)Philip Lowman2009-01-221-3/+40
|
* BUG: Fixes #8376: FindFLTK fails because include file can be FL/Fl.H and CMakePhilip Lowman2009-01-221-1/+3
| | | | | only looks for FL/Fl.h. Verified: all FLTK header files in 1.1.9 are .H ... how bizarre.
* BUG: Fix VS IDE solution files order againBrad King2009-01-211-1/+1
| | | | | | | The previous change to order projects in the VS IDE did not account for duplicate target names (such as ALL_BUILD and ZERO_CHECK) among the input set. While we suppress generation of the duplicate project entries, we need to use a multiset to store ordered duplicates.
* BUG: Fix ALL_BUILD ordering enforcementBrad King2009-01-211-4/+4
| | | | | | The previous change to make ALL_BUILD come first among targets did not account for comparing the target name against itself. This led to an invalid ordering of the target set. This change fixes it.