What may be the reason that CMake target RUN_TESTS was not generated in Visual Studio 2015? I can't include the complete CMakeLists.txt as it is huge and consists of many subprojects with own CMakeLists.txt, but it contains enable_testing()
command executed, tests are added and built, there is simply no predefined target. Other predefined targets like: ZERO_CHECK, INSTALL, ALL_BUILD are there.
My cmake execution is:
cmake -C conaninitialcache.cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Debug <source_path>
Could it be the Conan's fault?