From 2fa12cda609c6a422cde0b6f5bb7a3d294a3c316 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20H=C3=BCttel?= Date: Sat, 17 Jul 2021 15:11:36 +0200 Subject: [PATCH] Throw error in case the python virtualenv cannot be found --- stm-firmware/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/stm-firmware/CMakeLists.txt b/stm-firmware/CMakeLists.txt index 22a84a6..b9c4c6f 100644 --- a/stm-firmware/CMakeLists.txt +++ b/stm-firmware/CMakeLists.txt @@ -61,6 +61,7 @@ if (VIRTUALENV) ) message("${BoldGreen}python virtual environment set up!${ColorReset}") else(VIRTUALENV) + message("${BoldRed}Python virtual environment not set up: virtualenv: command not found!${ColorReset}") endif (VIRTUALENV)