Merge topic 'Haiku-CPU-count'

eef42a0 ProcessorCount: make it work on Haiku
This commit is contained in:
Brad King 2013-12-03 09:30:31 -05:00 committed by CMake Topic Stage
commit 1af0c41278
1 changed files with 14 additions and 0 deletions

View File

@ -182,6 +182,20 @@ function(ProcessorCount var)
endif()
endif()
if(NOT count)
# Haiku
find_program(ProcessorCount_cmd_sysinfo sysinfo)
if(ProcessorCount_cmd_sysinfo)
execute_process(COMMAND ${ProcessorCount_cmd_sysinfo}
ERROR_QUIET
OUTPUT_STRIP_TRAILING_WHITESPACE
OUTPUT_VARIABLE sysinfo_X_output)
string(REGEX MATCHALL "\nCPU #[0-9]+:" procs "\n${sysinfo_X_output}")
list(LENGTH procs count)
#message("ProcessorCount: trying sysinfo '${ProcessorCount_cmd_sysinfo}'")
endif()
endif()
# Since cygwin builds of CMake do not define WIN32 anymore, but they still
# run on Windows, and will still have this env var defined:
#