cmake: Don't require test projects with minimal distribution (issue #2169)

This commit is contained in:
amaitland 2017-05-12 16:27:28 +10:00 committed by Marshall Greenblatt
parent 85d041c0e2
commit b14167ad04
1 changed files with 6 additions and 4 deletions

View File

@ -199,10 +199,12 @@ add_subdirectory(${CEF_LIBCEF_DLL_WRAPPER_PATH} libcef_dll_wrapper)
# Include application targets.
# Comes from the <target>/CMakeLists.txt file in the current directory.
# TODO: Change these lines to match your project target when you copy this file.
add_subdirectory(tests/cefclient)
add_subdirectory(tests/cefsimple)
add_subdirectory(tests/gtest)
add_subdirectory(tests/ceftests)
if(EXISTS tests)
add_subdirectory(tests/cefclient)
add_subdirectory(tests/cefsimple)
add_subdirectory(tests/gtest)
add_subdirectory(tests/ceftests)
endif()
# Display configuration settings.
PRINT_CEF_CONFIG()