e838cf644f
Change-Id: Id2f57cc2f64ae25f5f84d1206035b7a2c309d1c7 Reviewed-by: Clinton Stimpson <clinton@elemtech.com> Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
34 lines
734 B
CMake
34 lines
734 B
CMake
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(qmake_cmake_files)
|
|
|
|
macro(_do_build _dir)
|
|
try_compile(Result ${CMAKE_CURRENT_BINARY_DIR}/${_dir}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/${_dir}
|
|
${_dir}
|
|
OUTPUT_VARIABLE Out
|
|
)
|
|
endmacro()
|
|
|
|
macro(expect_pass _dir)
|
|
_do_build(${_dir})
|
|
if (NOT Result)
|
|
message(SEND_ERROR "Build failed: ${Out}")
|
|
endif()
|
|
endmacro()
|
|
|
|
macro(expect_fail _dir)
|
|
_do_build(${_dir})
|
|
if (Result)
|
|
message(SEND_ERROR "Build should fail, but did not: ${Out}")
|
|
endif()
|
|
endmacro()
|
|
|
|
# Requires a patched cmake for the automoc stuff. Will uncomment when it is released.
|
|
# expect_pass(pass1)
|
|
expect_pass(pass2)
|
|
expect_pass(pass3)
|
|
expect_fail(fail4)
|
|
expect_fail(fail5)
|