mirror of
https://github.com/reactos/CMake.git
synced 2024-12-14 23:29:57 +00:00
78be324762
Enable the C and CXX languages only in the test cases that really need them. In the failure cases we do not get far enough to really use the languages, so skip enabling them.
7 lines
346 B
CMake
7 lines
346 B
CMake
enable_language(C)
|
|
enable_language(CXX)
|
|
include(CheckStructHasMember)
|
|
check_struct_has_member("struct timeval" tv_sec sys/select.h HAVE_TIMEVAL_TV_SEC)
|
|
check_struct_has_member("struct timeval" tv_sec sys/select.h HAVE_TIMEVAL_TV_SEC_C LANGUAGE C)
|
|
check_struct_has_member("struct timeval" tv_sec sys/select.h HAVE_TIMEVAL_TV_SEC_CXX LANGUAGE CXX)
|