* Make Google Test optional * Download googletest with brew * Set gtest and gmock lib vars in Libraries.cmake * Fixed cmake format * Add googletest-devel for openSUSE * Fixed missing Meson arg for Windows * Add gmock-devel for openSUSE * Fixed openSUSE package names * Fixed openSUSE package names (correct OS) * Add success message to disambiguate confusing messages * Restore original gtest lib var for subproject * Make WinToast optional * Fixed formatting * Fixed cmake format * Only build WinToast sources if found
10 lines
292 B
Python
10 lines
292 B
Python
import colorama # type: ignore
|
|
from colorama import Fore # type: ignore
|
|
|
|
colorama.init()
|
|
|
|
SUCCESS_TEXT = f"{Fore.GREEN}Success:{Fore.RESET}"
|
|
ERROR_TEXT = f"{Fore.RED}Error:{Fore.RESET}"
|
|
WARNING_TEXT = f"{Fore.YELLOW}Warning:{Fore.RESET}"
|
|
HINT_TEXT = f"{Fore.LIGHTBLUE_EX}Hint:{Fore.RESET}"
|