summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CheckModules/RunCMakeTest.cmake
Commit message (Collapse)AuthorAgeFilesLines
* CheckTypeSize: Add check_type_size(RESULT_VARIABLE)Peter Kokot2025-09-231-0/+1
| | | | | | | | | | | | | | | Changes: - Added new `RESULT_VARIABLE` keyword to enable customizing the name of the internal cache variable, which contains the boolean result of the check. - The macro check_type_size() changed to function for easier arguments handling. - Documentation synced and extended to better understand the check_type_size() command. Some typos fixed in the initial example. - CheckTypeSize tests adjusted so also C++ is tested. - Error messages slightly adjusted when checking the LANGUAGE argument. Closes: #27202
* CheckTypeSize: Move testsPeter Kokot2025-09-231-0/+11
|
* Check*: Add option to pass link directories into checksAliaksandr Averchanka2024-09-091-0/+28
|
* CheckIncludeFiles: Honor CMAKE_REQUIRED_LIBRARIESBrad King2018-04-181-0/+2
| | | | | | | | | | | | | Other check modules honor this variable, so include file checks should too. Add policy `CMP0075` to enable the behavior in a compatible way. This change was originally made by commit v3.11.0-rc1~108^2 (CheckIncludeFiles: Honor CMAKE_REQUIRED_LIBRARIES, 2017-12-24) but it was reverted by commit v3.11.1~9^2 (Revert "CheckIncludeFiles: Honor CMAKE_REQUIRED_LIBRARIES", 2018-04-04) because the behavior change could affect checks in existing projects in an incompatible way. Fixes: #9514
* CheckIncludeFiles: add unit testsDavid Adam2017-11-111-0/+6
|
* CheckTypeSize: Add unit test to cover the no-C caseDaniele E. Domenichelli2014-03-171-0/+2
|
* CheckTypeSize: Add unit testsDaniele E. Domenichelli2013-10-211-0/+6
|
* CheckStructHasMember: Add support for C++Daniele E. Domenichelli2013-10-081-0/+8
Previously if headers required to check if a struct has a member can be compiled with C++ compiler only, the check would fail because the C compiler fails. As a consequence, the result variable would be set to false, even if the struct has that particular member. Teach CHECK_STRUCT_HAS_MEMBER to accept a new optional argument LANGUAGE that allows one to explicitly set the compiler to use. The new signature is therefore: CHECK_STRUCT_HAS_MEMBER (<struct> <member> <header> <variable> [LANGUAGE <language>])