mirror of
https://github.com/reactos/CMake.git
synced 2024-12-12 05:45:51 +00:00
73d28d2177
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>])
9 lines
258 B
Plaintext
9 lines
258 B
Plaintext
CMake Error at .*/Modules/CheckStructHasMember.cmake:[0-9]+. \(message\):
|
|
Unknown arguments:
|
|
|
|
LANGUAG;C
|
|
|
|
Call Stack \(most recent call first\):
|
|
CheckStructHasMemberWrongKey.cmake:[0-9]+ \(check_struct_has_member\)
|
|
CMakeLists.txt:[0-9]+ \(include\)
|