From 1ff8b430a973b3e7cff48a9d228fcdeab894bfbe Mon Sep 17 00:00:00 2001 From: datacrystals Date: Mon, 11 Apr 2022 06:01:32 +0000 Subject: [PATCH] Add Precompiled Python Binaries To ERS (#147) --- Third-Party/Python3.9/CMakeLists.txt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Third-Party/Python3.9/CMakeLists.txt b/Third-Party/Python3.9/CMakeLists.txt index 9578faca19..585da8a239 100644 --- a/Third-Party/Python3.9/CMakeLists.txt +++ b/Third-Party/Python3.9/CMakeLists.txt @@ -1,8 +1,10 @@ # Automatically copies python binaries to bin dir on windows +ERSBuildLogger(${Green} "Setting Up Python Libraries") if (WIN32) - - ERS_BUILD_ + ERSBuildLogger(${Green} "Copying Python Embedded Library") file(COPY "${LIB_DIR}/Python3.9/Binaries" DESTINATION "${BIN_DIR}/") - -endif() \ No newline at end of file + ERSBuildLogger(${BoldGreen} "Finished Copying Python Embedded Library") +else () + ERSBuildLogger(${Purple} "Python Libraries Will Not Be Copied On Linux, Please Install Python Using Your Package Manager") +endif()