qmltests: working but by calling qmltestrunner explicitly

This commit is contained in:
Tal Lancaster
2017-01-18 16:25:49 -07:00
parent bf1b62038a
commit 62d42724ae
3 changed files with 28 additions and 2 deletions
+22
View File
@@ -42,11 +42,33 @@ if (NOT NO_TESTS)
message(STATUS "Testing enabled; add dir tests")
include(CTest)
enable_testing()
set(BUILD_TESTING ON)
add_subdirectory(tests)
else()
message(STATUS "Tests disabled")
endif()
##
### config for getting/building gtest
# Download and unpack googletest at configure time
configure_file(CMakeLists.txt.in
googletest-download/CMakeLists.txt)
execute_process(COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}" .
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/googletest-download )
execute_process(COMMAND ${CMAKE_COMMAND} --build .
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/googletest-download )
# Prevent GoogleTest from overriding our compiler/linker options
# when building with Visual Studio
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
# Add googletest directly to our build. This adds
# the following targets: gtest, gtest_main, gmock
# and gmock_main
add_subdirectory(${CMAKE_BINARY_DIR}/googletest-src
${CMAKE_BINARY_DIR}/googletest-build)
set(SRC_LIST main.cpp)
# add an executable based on the project name and source list