https://github.com/Kitware/CMake

sort by:
Revision Author Date Message Commit Date
0e339f7 Merge topic 'CPack-fixCPACK_MONOLITHIC_INSTALL-handling' 805c1b2 Handle CPACK_MONOLITHIC_INSTALL in some rare use cases. 19 March 2012, 18:42:00 UTC
1df15c6 Merge topic 'CPack-fixSTGZpermission-bug13046' 4576f40 CPack STGZ put execute permission on all packages files (component case) 19 March 2012, 18:41:56 UTC
36a85b4 Merge topic 'write-cache-atomically' 9eb8e4b Write CMakeCache.txt atomically (#13040) 19 March 2012, 18:41:51 UTC
bfc8d13 Merge topic 'fix-12621-xcode43' 0f4dfa6 CPack: Use real path to PackageMaker to find its version file (#12621) 4693cf8 Xcode: Detect new default locations of Xcode 4.3 bits and pieces (#12621) 19 March 2012, 18:41:43 UTC
93d5509 Merge branch 'ninja-object-library' into object-library * ninja-object-library: (37 commits) Ninja: Honor $<TARGET_OBJECTS:...> source expressions Build object library targets in Ninja Pre-compute object file names before Ninja generation Simplify cmNinjaTargetGenerator using cmGeneratorTarget Ninja: Avoid using 'this' in member initializers Ninja: Fix for PDB files with spaces in the path. Ninja: Constify use of cmCustomCommand Ninja: add /DEF: flag to linker call Ninja: Add a cache option CMAKE_ENABLE_NINJA to enable the ninja generator. Ninja: Add friend struct so it can access the private ConvertToNinjaPath. Ninja: add .def file support Ninja: ensure the output dir exists at compile time Ninja: Remove an unnecessary variable Ninja: Use cmSystemTools::ExpandListArgument to split compile/link commands Ninja: Add a missed license header Ninja: CMake: Adapt Ninja generator for per-target include dirs Ninja: windows msvc: create for each target a .pdb file Ninja: Import library support for Windows Ninja: mark the Windows specific hacks with a comment only Ninja: disable unfinished Windows ninja support ... 19 March 2012, 17:11:27 UTC
821037c Merge branch 'xcode-object-library' into object-library * xcode-object-library: Xcode: Honor $<TARGET_OBJECTS:...> source expressions Build object library targets in Xcode Pre-compute object file names before Xcode generation Allow txt files as ExtraSources in object library targets Add a default source group for object files. Xcode: Re-factor some existing methods into "FromPath" variants Xcode: Re-factor code into GetObjectsNormalDirectory method 19 March 2012, 17:11:22 UTC
eb24c99 Merge branch 'object-library' into xcode-object-library 19 March 2012, 15:53:41 UTC
63d1be8 Xcode: Honor $<TARGET_OBJECTS:...> source expressions Add objects from object libraries referenced using this syntax to the set of objects linked in a target. 19 March 2012, 15:53:29 UTC
020ba38 Merge branch 'object-library' into xcode-object-library 19 March 2012, 15:53:24 UTC
e8ea615 Build object library targets in Xcode Treat OBJECT libraries as STATIC libraries. The Xcode project file format provides no way to avoid running the libtool so hide the resulting .a away next to the object files as it should never be referenced. The object files will be left behind for reference by other targets later. 19 March 2012, 15:53:04 UTC
8045e17 Pre-compute object file names before Xcode generation 19 March 2012, 15:52:40 UTC
6d100f9 find_package: Test rejection of required+optional components 19 March 2012, 14:53:36 UTC
d81d83c add macro check_required_components() to configure_package_config_file() As discussed on cmake-developers, this patch adds a macro check_required_components() to the file configured via configure_package_config_file(), so for proper handling of components in Config.cmake files users can simply call check_required_components(PackageName) and this will do the right thing. Alex 19 March 2012, 14:53:36 UTC
b15c0b4 FPHSA(): add HANDLE_COMPONENTS option if the HANDLE_COMPONENTS is used, FPHSA() now also checks all required COMPONENTS, i.e. all elements from <name>_FIND_COMPONENTS for which <name>_FIND_REQUIRED_<comp> is true, and sets <name>_FOUND only to true if all have been found. As discussed on cmake-developers. Alex 19 March 2012, 14:53:36 UTC
34108cd find_package: add documentation for OPTIONAL_COMPONENTS This patch adds documentation for OPTIONAL_COMPONENTS to cmFindPackage.cxx, and also extends Modules/readme.txt significantly with regard to how components should be handled. Alex 19 March 2012, 14:53:36 UTC
cdabde8 FPHSA(): add missing "]" to documentation Alex 19 March 2012, 14:53:36 UTC
f2e0a18 find_package: add OPTIONAL_COMPONENTS keyword Add an OPTIONAL_COMPONENTS keyword to find_package() so we can have a clear distinction between required and optional components. Don't allow a component to be both required and optional. Alex 19 March 2012, 14:53:36 UTC
c337c7e Ninja: Fix <OBJECT_DIR> substitution Don't forget the subdirectories. 19 March 2012, 14:09:40 UTC
572994b Merge topic 'ninja-generator' 8485208 Ninja: shell escape $(CMAKE_SOURCE_DIR) and $(CMAKE_BINARY_DIR) df84767 Ninja: add support for OBJECT_OUTPUTS, fix PrecompiledHeader test case 48eb7fc Ninja: Avoid using 'this' in member initializers bba37dd Ninja: Fix for PDB files with spaces in the path. ac800f4 Ninja: Constify use of cmCustomCommand 9a0d5a8 Ninja: add /DEF: flag to linker call d40eebd Ninja: Add a cache option CMAKE_ENABLE_NINJA to enable the ninja generator. 8c63433 Ninja: Add friend struct so it can access the private ConvertToNinjaPath. dbe3dce Ninja: add .def file support f1bb08f Ninja: ensure the output dir exists at compile time 7a6b5f4 Ninja: Remove an unnecessary variable 80ff210 Ninja: Use cmSystemTools::ExpandListArgument to split compile/link commands d2731a3 Ninja: Add a missed license header eabc9b0 Ninja: CMake: Adapt Ninja generator for per-target include dirs bada88e Merge branch 'target-include-directories' into ninja-generator 54bd175 Ninja: windows msvc: create for each target a .pdb file ... 19 March 2012, 13:29:06 UTC
9987d95 KWSys Nightly Date Stamp 19 March 2012, 04:05:07 UTC
805c1b2 Handle CPACK_MONOLITHIC_INSTALL in some rare use cases. For example, when CPACK_<GEN>_COMPONENT_INSTALL and CPACK_MONOLITHIC_INSTALL are both set. Previously, this combination of variable settings produced an error without any explanation. Now, in this case CPACK_MONOLITHIC_INSTALL wins without trouble. This is useful for when e.g. CPACK_ARCHIVE_COMPONENT_INSTALL is globally on and one wants MONOLITHIC install for STGZ (but not other generators). The same behavior may be obtained by re-setting CPACK_ARCHIVE_COMPONENT_INSTALL to 0 but in any case the 'both set' case should have been handled without error. 18 March 2012, 19:21:35 UTC
4576f40 CPack STGZ put execute permission on all packages files (component case) 18 March 2012, 16:52:56 UTC
1bfe81e KWSys Nightly Date Stamp 18 March 2012, 04:05:05 UTC
8485208 Ninja: shell escape $(CMAKE_SOURCE_DIR) and $(CMAKE_BINARY_DIR) 17 March 2012, 23:16:40 UTC
df84767 Ninja: add support for OBJECT_OUTPUTS, fix PrecompiledHeader test case 17 March 2012, 23:16:40 UTC
6330f67 KWSys Nightly Date Stamp 17 March 2012, 04:05:07 UTC
247a132 Allow txt files as ExtraSources in object library targets Necessary for the Xcode generator, in which the CMakeLists.txt files are added as sources merely for convenient access, without any associated custom command. 16 March 2012, 18:25:22 UTC
b063599 Add a default source group for object files. 16 March 2012, 18:25:21 UTC
be01f3b Xcode: Re-factor some existing methods into "FromPath" variants ...to avoid depending on cmSourceFile instances. Prep work for supporting OBJECT_LIBRARY in the Xcode generator. 16 March 2012, 18:23:13 UTC
2693dbe Merge branch 'object-library' into ninja-object-library 16 March 2012, 14:20:20 UTC
51997cb Ninja: Honor $<TARGET_OBJECTS:...> source expressions Add objects from object libraries referenced using this syntax to the set of objects linked in a target. 16 March 2012, 14:19:44 UTC
23ec258 Merge branch 'object-library' into ninja-object-library 16 March 2012, 14:19:10 UTC
61124de Build object library targets in Ninja Treat OBJECT libraries as STATIC libraries but leave out the archive step. The object files will be left behind for reference by other targets later. 16 March 2012, 14:18:36 UTC
a2514f1 Simplify cmNinjaTargetGenerator using cmGeneratorTarget Replace the classification of source files in this generator using that computed by cmGeneratorTarget. 16 March 2012, 14:18:35 UTC
f5b06cd Pre-compute object file names before Ninja generation Implement cmGlobalGenerator::ComputeTargetObjects in the Ninja generator to pre-compute all the object file names. Use the results during generation instead of re-computing it later. 16 March 2012, 14:18:35 UTC
c68cc06 Merge branch 'object-library' into ninja-object-library 16 March 2012, 14:18:01 UTC
48eb7fc Ninja: Avoid using 'this' in member initializers VS complains warning C4355: 'this' : used in base member initializer list so initialize the member in the constructor body instead. 16 March 2012, 14:16:55 UTC
bba37dd Ninja: Fix for PDB files with spaces in the path. This calls ConvertToOutputFormat on the PDB paths for pdb file paths used in both library creation and the building of object files. 16 March 2012, 14:16:45 UTC
cd146c6 Document OBJECT library type in add_library command Describe the OBJECT library signature of add_library and the $<TARGET_OBJECTS:...> expressions needed to use object libraries. Also document the what is not allowed for object library targets. 16 March 2012, 14:12:31 UTC
c324250 Test OBJECT library use without other sources Reference OBJECT libraries for inclusion in targets that have no other sources to verify that the linker language propagates correctly from the object libraries. Test with a STATIC library, a SHARED library, and an EXECUTABLE target. Use the static and shared libraries each in executables that end up using the object library symbols. In VS 6, 7, and 7.1 add a dummy object file to convince the IDE to build the targets without sources. In Xcode add a dummy source file to convince it to build targets without sources. 16 March 2012, 14:12:30 UTC
db7ef82 Test OBJECT library language propagation Teach the RunCMake.ObjectLibrary test to verify that languages used in an OBJECT library are propagated to targets that use it so that the languages can be included in link analysis. 16 March 2012, 14:12:30 UTC
5683101 Test OBJECT library failure cases Add "RunCMake.ObjectLibrary" test to verify that unsupported use cases are rejected with errors: * An OBJECT library may not reference another object library * An OBJECT library may not be referenced in target_link_libraries * An OBJECT library may not contain non-compiling sources * An OBJECT library may not have pre/post build/link commands * An OBJECT library may not be installed, exported, or imported Also verify that invalid $<TARGET_OBJECTS:...> expressions are diagnosed. 16 March 2012, 14:12:30 UTC
69d3d18 Test OBJECT library success cases Add "ObjectLibrary" test to build and use OBJECT libraries. Build multiple object libraries in separate directories with different flags. Use a custom command to generate a source file in one OBJECT library. Reference the OBJECT libraries for inclusion in a STATIC library, a SHARED library, and an EXECUTABLE target. Use the static and shared libraries each in executables that end up using the object library symbols. Verify that object library symbols are exported from the shared library. 16 March 2012, 14:12:30 UTC
c403f27 Add $<TARGET_OBJECTS:...> expression to use an object library For now do not allow an OBJECT library to reference other object libraries. Teach cmTarget::ComputeLinkImplementation to include the languages of object libraries used by a target. 16 March 2012, 14:12:15 UTC
34e4985 Xcode: Re-factor code into GetObjectsNormalDirectory method ...in preparation for calling it from more than one location. Required to support OBJECT_LIBRARY targets in Xcode. 16 March 2012, 14:05:46 UTC
b4f949a KWSys Nightly Date Stamp 16 March 2012, 04:05:07 UTC
acc3862 KWSys Nightly Date Stamp 15 March 2012, 04:05:05 UTC
9eb8e4b Write CMakeCache.txt atomically (#13040) The write code introduced by commit 0b0d1b1d (add CMakeCache.txt support, 2001-02-22) uses a temporary file but does not replace the original atomically. Use cmGeneratedFileStream to do both copy-if-different and atomic replacement. 14 March 2012, 12:18:15 UTC
50fe2c6 KWSys Nightly Date Stamp 14 March 2012, 04:05:08 UTC
0cf8447 find_package: additional test for checking the error message This patch adds a test which checks the error message, which is produced in the case that a Config file has set Foo_FOUND to FALSE by itself. Alex 13 March 2012, 20:56:52 UTC
56ae3f9 find_package: add test for setting Foo_FOUND to FALSE in a Config file Alex 13 March 2012, 20:56:52 UTC
16c0c73 find_package: allow <pkg>Config.cmake to set <pkg>_FOUND to FALSE Before, find_package in Config mode always set Foo_FOUND to true if the Config file has been found and could be executed. If the Config file itself detected some problem, like a missing dependency, it did not have a way to signal to the outside that the package is not working. With this patch, if a Config file sets Foo_FOUND to FALSE, this is taken into account and not overridden. Alex 13 March 2012, 20:56:23 UTC
3a53005 Build object library targets in VS Treat OBJECT libraries as STATIC libraries. The VS project file format provides no way to avoid running the librarian so hide the resulting .lib away next to the object files as it should never be referenced. The object files will be left behind for reference by other targets later. 13 March 2012, 18:38:02 UTC
3aa741a Build object library targets in Makefiles Treat OBJECT libraries as STATIC libraries but leave out the archive step. The object files will be left behind for reference by other targets later. 13 March 2012, 18:38:02 UTC
b87d7a6 Add OBJECT_LIBRARY target type This library type can compile sources to object files but does not link or archive them. It will be useful to reference from executable and normal library targets for direct inclusion of object files in them. Diagnose and reject the following as errors: * An OBJECT library may not be referenced in target_link_libraries. * An OBJECT library may contain only compiling sources and supporting headers and custom commands. Other source types that are not normally ignored are not allowed. * An OBJECT library may not have PRE_BUILD, PRE_LINK, or POST_BUILD commands. * An OBJECT library may not be installed, exported, or imported. Some of these cases may be supported in the future but are not for now. Teach the VS generator that OBJECT_LIBRARY targets are "linkable" just like STATIC_LIBRARY targets for the LinkLibraryDependencies behavior. 13 March 2012, 18:37:32 UTC
0f4dfa6 CPack: Use real path to PackageMaker to find its version file (#12621) On machines where a usr/bin/packagemaker symlink is found, we were unable to find the version.plist file relative to the symlink. Resolve the symlink first, so we can find it relative to the real PackageMaker. 13 March 2012, 18:01:19 UTC
e8f1d7f Merge topic 'doc-Fortran-mod-dir-issue-13034' 54604ee Document Fortran_MODULE_DIRECTORY as OUTPUT only (#13034) 13 March 2012, 15:54:58 UTC
d4c0aab Merge topic 'test-RunCMake' 55b2aa8 Use generalized RunCMake test infrastrucure for build_command test eb33000 Use generalized RunCMake test infrastrucure for find_package test 42a81e7 Add stronger infrastructure for CMake-only tests 13 March 2012, 15:54:47 UTC
6452aea Merge topic 'ExactVersionModeForVersionFile' e390f87 WriteBasicConfigVersionFile: add test for ExactVersion mode 5d18223 write_basic_package_version_file: add ExactVersion mode 1c69cd8 write_basic_package_version_file(): improve documentation 13 March 2012, 15:54:33 UTC
15e96b0 Merge topic 'update-KWIML' 289e5e6 Merge branch 'upstream-kwiml' into update-KWIML f94ae0e KWIML: Make test_INT robust to #define-d int#_t and INT#_C 13 March 2012, 15:54:21 UTC
8872015 Merge topic 'fix-cpack-hdiutil-retry-loops' 05a76d5 CPack: Fix retry logic when calls to hdiutil fail 13 March 2012, 15:54:03 UTC
b964240 Merge topic 'ctest-match-valgrind' ea4416c CTest: Match valgrind errors with "points to" (#12922) 13 March 2012, 15:53:38 UTC
3cd124c Merge topic 'ctest-clang-in-xcode' c7da50d CTest: Detect Xcode error "Command ... failed with exit code" 13 March 2012, 15:53:35 UTC
1ee4b65 Merge topic 'cleanup-object-file-names' 0996f2a Hide Makefile local object info inside local generator 67734be VS: Simplify object name computation 4ae7f36 Remove unused partial OBJECT_FILES property implementation 13 March 2012, 15:53:28 UTC
4770d53 Merge topic 'suppress-warnings' b926cff Suppress warnings occurring on the dashboards using the PGI compiler. 13 March 2012, 15:53:13 UTC
ffdb8e2 Merge topic 'FindCxxTest-version-4-issue-13022' a556137 FindCxxTest: Add support for CxxTest 4 (#13022) 13 March 2012, 15:52:54 UTC
ac800f4 Ninja: Constify use of cmCustomCommand The generator never needs to modify custom command instances. 13 March 2012, 15:23:14 UTC
9a0d5a8 Ninja: add /DEF: flag to linker call 13 March 2012, 15:20:29 UTC
738d94f KWSys Nightly Date Stamp 13 March 2012, 04:05:06 UTC
d5aedf1 Merge branch 'test-RunCMake' into object-library 12 March 2012, 20:44:49 UTC
f737bd4 Pre-compute and store target object directory in cmGeneratorTarget Add cmGeneratorTarget::ObjectDirectory member to hold the value. In ComputeTargetObjects set the value to the full path to the target object directory including any necessary placeholder for the configuration name. 12 March 2012, 20:44:03 UTC
54604ee Document Fortran_MODULE_DIRECTORY as OUTPUT only (#13034) CMake does not automatically pass the Fortran module output directory location to the module search path. Add a note to the documentation that the location must also be specified by INCLUDE_DIRECTORIES. 12 March 2012, 15:54:54 UTC
55b2aa8 Use generalized RunCMake test infrastrucure for build_command test The CMakeCommands.build_command test performs output/error checking so move it over to RunCMake to re-use the generalized infrastrucure. This is the only test left using Tests/CMakeCommands/CMakeLists.txt so remove it. 12 March 2012, 13:33:21 UTC
eb33000 Use generalized RunCMake test infrastrucure for find_package test 12 March 2012, 13:33:21 UTC
42a81e7 Add stronger infrastructure for CMake-only tests The CMakeOnly directory added by commit 9a20abf0 (Add infrastructure for CMake-only tests, 2012-01-11) was sufficient only for tests that always run CMake to successfully configure a project. Later commit eeaaffcb (find_package: Test error and warning messages in failure cases, 2012-02-28) added a sample test that covers failure cases. Generalize the above to create new "RunCMake" test infrastructure that can run CMake multiple times for a single project with different variations and check for expected result/stdout/stderr. Allow for both successful and failing CMake project configuration cases. This will be useful to test error messages and failure behavior. 12 March 2012, 13:33:21 UTC
3551844 KWSys Nightly Date Stamp 12 March 2012, 04:05:05 UTC
335b659 KWSys Nightly Date Stamp 11 March 2012, 05:05:10 UTC
e390f87 WriteBasicConfigVersionFile: add test for ExactVersion mode Alex 10 March 2012, 15:19:02 UTC
5d18223 write_basic_package_version_file: add ExactVersion mode This mode is for packages which consider themselves only compatible if exactly the same version is requested. The tweak version is ignored. Alex 10 March 2012, 15:10:52 UTC
1c69cd8 write_basic_package_version_file(): improve documentation add notes when which mode should be used Alex 10 March 2012, 15:09:17 UTC
71c16e4 KWSys Nightly Date Stamp 10 March 2012, 05:05:06 UTC
289e5e6 Merge branch 'upstream-kwiml' into update-KWIML 09 March 2012, 20:28:40 UTC
f94ae0e KWIML: Make test_INT robust to #define-d int#_t and INT#_C Our TEST* macro calls pass arguments such as "int64_t" with the expectation that the preprocessing token will be used literally. Some platforms #define int64_t as "long long" which is not a valid preprocessing token. Perform preprocessor symbol concatenation on the type names at the first level of macro evaluation to avoid expanding the names. 09 March 2012, 20:26:26 UTC
9c0a00d Rename/constify build-time config placeholder lookup Rename cmGlobalGenerator::GetCMakeCFG{InitDirectory => IntDir} to have a shorter name without a typo. Add a 'const' qualifier since the method is only for lookup and never needs to modify anything. 09 March 2012, 20:16:03 UTC
46f4940 Remove unused cmSourceGroup method The non-const GetSourceFiles method is not needed. 09 March 2012, 20:16:03 UTC
d57047d Pre-compute object file names before VS project generation Implement cmGlobalGenerator::ComputeTargetObjects in the VS generator to pre-compute all the object file names. Use the results during generation instead of re-computing it later. 09 March 2012, 20:16:02 UTC
3baaf6c Pre-compute object file names before Makefile generation Add a virtual cmGlobalGenerator::ComputeTargetObjects method invoked during cmGeneratorTarget construction. Implement it in the Makefile generator to pre-compute all object file names for each target. Use the results during generation instead of re-computing it later. 09 March 2012, 20:16:02 UTC
62a841b Simplify cmVisualStudio10TargetGenerator using cmGeneratorTarget Use CustomCommands and ModuleDefinitionFile computed in the latter instead of recomputing them from the original target source files. 09 March 2012, 20:16:02 UTC
45c2f93 Simplify cmMakefileTargetGenerator using cmGeneratorTarget Replace the classification of source files in this generator using that computed by cmGeneratorTarget. 09 March 2012, 20:16:02 UTC
4b24558 Create a cmGeneratorTarget for each cmTarget during generation Construct the instances after the final set of targets is known but before computing inter-target dependencies. This order will allow initialization of cmGeneratorTarget instances to adjust and finalize declared inter-target dependencies. 09 March 2012, 20:16:02 UTC
11d9b21 Add cmGeneratorTarget to represent a target during generation Some per-target information and logic is common to all generators. Some of that information is currently stored in cmTarget but that should be reserved for the configure step. Create a class to hold per-target information for generators. On construction classify sources from the target and store them in separate members. This classification is already implemented separately in each generator. 09 March 2012, 20:16:02 UTC
51b6736 Merge branch 'cleanup-object-file-names' into object-library 09 March 2012, 20:15:37 UTC
d40eebd Ninja: Add a cache option CMAKE_ENABLE_NINJA to enable the ninja generator. Make the option default to on, for platforms where CMake passes all tests with the ninja generator. This is currently only Linux. 09 March 2012, 19:28:21 UTC
05a76d5 CPack: Fix retry logic when calls to hdiutil fail The long-standing sporadic failures of CPack tests on the Mac dashboards are caused by an occasional problem running hdiutil. To compensate for this, a retry loop was added in the code in a previous commit: a9fa71a4 ... but the logic for breaking out of the retry loop was flawed, breaking out of the loop (and not retrying) when the hdiutil command returns an error instead of when it returns success. This commit fixes the flawed logic, bumps up the number of retries from 4 to 10, and adds a half-second delay in between retries. The delay is specifically added in case a virus checker or spotlight indexer is temporarily causing the hdiutil failure by hanging onto a newly created file longer than hdiutil expects it to. As with all sporadically occurring issues, we'll never know if this is really fixed all the way. But I'll be happy even if we can only get it to happen just a bit less often. 09 March 2012, 16:39:01 UTC
ea4416c CTest: Match valgrind errors with "points to" (#12922) Teach CTest to match valgrind errors of the format "Syscall param ... points to uninitialised byte(s)". 09 March 2012, 14:32:28 UTC
c7da50d CTest: Detect Xcode error "Command ... failed with exit code" 09 March 2012, 12:59:56 UTC
c7bdef5 KWSys Nightly Date Stamp 09 March 2012, 05:05:04 UTC
4693cf8 Xcode: Detect new default locations of Xcode 4.3 bits and pieces (#12621) Xcode 4.3 installs into "/Applications" by default, from the Mac App Store. Also, the paths to the available SDKs changed: they are now within the Xcode.app bundle. PackageMaker is installed as a separate program, and may be installed anywhere. It is not installed with Xcode 4.3 by default anymore. Download the "Auxiliary Tools for Xcode" to get PackageMaker. Put PackageMaker inside the Xcode.app bundle, in its nested Applications folder, or put it alongside Xcode in "/Applications" and CMake will find it. Update references to "find" paths: add new possible locations for finding Xcode.app and PackageMaker.app. Prefer the most recent version's locations first, but keep the old locations as fallback search paths, too. Thanks to all the contributors who provided and tested out various patches for fixing this issue. Especially, but by no means limited to: Francisco Requena Espí, Jamie Kirkpatrick and drfrogsplat. 09 March 2012, 03:43:19 UTC
36ce6e0 Merge topic 'qt4-deploy' 2c601c1 DeployQt4: Add path to Qt dlls on Windows. 08 March 2012, 20:14:40 UTC
fa0f065 Merge topic 'find_package_fatal_error_if_required_and_config_not_found' c5ae733 find_package: Test that REQUIRED aborts processing correctly c91a54d find_package: error out if REQUIRED Config has not been found 08 March 2012, 20:14:23 UTC
back to top