diff options
author | Marc Chevrier <marc.chevrier@gmail.com> | 2020-10-01 15:47:37 (GMT) |
---|---|---|
committer | Marc Chevrier <marc.chevrier@gmail.com> | 2020-10-01 15:51:16 (GMT) |
commit | 5537ccd814700edb529e5e79137601bb2987c892 (patch) | |
tree | f5f8b3600b641516f0b4d4263b1f5455727e0e62 /Tests/FindPython/VirtualEnvConda | |
parent | 0519db374c79f654b55de396943cafcf36db695f (diff) | |
download | CMake-5537ccd814700edb529e5e79137601bb2987c892.zip CMake-5537ccd814700edb529e5e79137601bb2987c892.tar.gz CMake-5537ccd814700edb529e5e79137601bb2987c892.tar.bz2 |
FindPython: Tests optimizations
* Use 'project(... LANGUAGES NONE)' when possible
* enhance error messages wording
Diffstat (limited to 'Tests/FindPython/VirtualEnvConda')
-rw-r--r-- | Tests/FindPython/VirtualEnvConda/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/FindPython/VirtualEnvConda/CMakeLists.txt b/Tests/FindPython/VirtualEnvConda/CMakeLists.txt index 565095a..23d208d 100644 --- a/Tests/FindPython/VirtualEnvConda/CMakeLists.txt +++ b/Tests/FindPython/VirtualEnvConda/CMakeLists.txt @@ -6,7 +6,7 @@ include(CTest) find_program(CONDA_EXECUTABLE conda) if (CONDA_EXECUTABLE EQUAL NOTFOUND) - message (FATAL_ERROR "Fail to found Conda") + message (FATAL_ERROR "Failed to find Conda") endif() set (Python3_VIRTUAL_ENV "${CMAKE_CURRENT_BINARY_DIR}/condaenv") |