From 25a38bc021abf95fb5c8addace23b00e87fdf492 Mon Sep 17 00:00:00 2001 From: datacrystals Date: Mon, 11 Apr 2022 06:03:02 +0000 Subject: [PATCH] Add Precompiled Python Binaries To ERS (#147) --- CMake/BuildUtils/Python.cmake | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/CMake/BuildUtils/Python.cmake b/CMake/BuildUtils/Python.cmake index ac5ed260c3..efdd4684d8 100644 --- a/CMake/BuildUtils/Python.cmake +++ b/CMake/BuildUtils/Python.cmake @@ -2,12 +2,6 @@ # Builds Library For ERS # ########################## -ERSBuildLogger(${Green} "Configuring Backward Library") -if (${ENABLE_BACKWARD}) - add_subdirectory(${LIB_DIR}/backward) - ERSBuildLogger(${Green} "Backwards Library Enabled, Configuring") -else() - set(BACKWARD_ENABLE "") - ERSBuildLogger(${Green} "Backwards Library Disabled, Skipping") -endif() -ERSBuildLogger(${BoldGreen} "Finished Configuring Backward Library") \ No newline at end of file +ERSBuildLogger(${Green} "Configuring Python Library") +add_subdirectory(${LIB_DIR}/Python3.9/) +ERSBuildLogger(${BoldGreen} "Finished Configuring Python Library") \ No newline at end of file