Fix logic which decides when to execute automoc test
Alex
This commit is contained in:
parent
77a5c6e0d8
commit
2963d0b078
|
@ -842,22 +842,23 @@ ${CMake_BINARY_DIR}/bin/cmake -DVERSION=master -P ${CMake_SOURCE_DIR}/Utilities/
|
||||||
|
|
||||||
IF(NOT QT4_FOUND)
|
IF(NOT QT4_FOUND)
|
||||||
FIND_PACKAGE(Qt4)
|
FIND_PACKAGE(Qt4)
|
||||||
IF(QT4_FOUND)
|
|
||||||
ADD_TEST(QtAutomoc ${CMAKE_CTEST_COMMAND}
|
|
||||||
--build-and-test
|
|
||||||
"${CMake_SOURCE_DIR}/Tests/QtAutomoc"
|
|
||||||
"${CMake_BINARY_DIR}/Tests/QtAutomoc"
|
|
||||||
--build-generator ${CMAKE_TEST_GENERATOR}
|
|
||||||
--build-project QtAutomoc
|
|
||||||
--build-makeprogram ${CMAKE_TEST_MAKEPROGRAM}
|
|
||||||
--build-exe-dir "${CMake_BINARY_DIR}/Tests/QtAutomoc"
|
|
||||||
--force-new-ctest-process
|
|
||||||
--test-command ${CMAKE_CTEST_COMMAND} -V
|
|
||||||
)
|
|
||||||
LIST(APPEND TEST_BUILD_DIRS "${CMake_BINARY_DIR}/Tests/QtAutomoc")
|
|
||||||
ENDIF()
|
|
||||||
ENDIF(NOT QT4_FOUND)
|
ENDIF(NOT QT4_FOUND)
|
||||||
|
|
||||||
|
IF(QT4_FOUND)
|
||||||
|
ADD_TEST(QtAutomoc ${CMAKE_CTEST_COMMAND}
|
||||||
|
--build-and-test
|
||||||
|
"${CMake_SOURCE_DIR}/Tests/QtAutomoc"
|
||||||
|
"${CMake_BINARY_DIR}/Tests/QtAutomoc"
|
||||||
|
--build-generator ${CMAKE_TEST_GENERATOR}
|
||||||
|
--build-project QtAutomoc
|
||||||
|
--build-makeprogram ${CMAKE_TEST_MAKEPROGRAM}
|
||||||
|
--build-exe-dir "${CMake_BINARY_DIR}/Tests/QtAutomoc"
|
||||||
|
--force-new-ctest-process
|
||||||
|
--test-command ${CMAKE_CTEST_COMMAND} -V
|
||||||
|
)
|
||||||
|
LIST(APPEND TEST_BUILD_DIRS "${CMake_BINARY_DIR}/Tests/QtAutomoc")
|
||||||
|
ENDIF()
|
||||||
|
|
||||||
ADD_TEST(ExternalProject ${CMAKE_CTEST_COMMAND}
|
ADD_TEST(ExternalProject ${CMAKE_CTEST_COMMAND}
|
||||||
--build-and-test
|
--build-and-test
|
||||||
"${CMake_SOURCE_DIR}/Tests/ExternalProject"
|
"${CMake_SOURCE_DIR}/Tests/ExternalProject"
|
||||||
|
|
Loading…
Reference in New Issue