You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
include(RunCMake)
|
|
|
|
if(SYSTEM_NAME MATCHES "^(.*BSD|DragonFly)$")
|
|
set(EXPECT_BSD 1)
|
|
endif()
|
|
|
|
foreach(case
|
|
Opt
|
|
Root
|
|
Usr
|
|
UsrLocal
|
|
)
|
|
if(EXPECT_BSD)
|
|
set(RunCMake-stderr-file ${case}-BSD-stderr.txt)
|
|
endif()
|
|
run_cmake(${case})
|
|
endforeach()
|