From d153003dc545cb1f48d6a7c86963c15b7b97f3b2 Mon Sep 17 00:00:00 2001 From: DubbleClick Date: Mon, 11 Nov 2024 12:49:12 +0700 Subject: [PATCH] remove old third party recompilation option --- CMakeLists.txt | 6 ------ 1 file changed, 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ee35fdf..7133d0b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,12 +9,6 @@ if(NOT(CMAKE_SIZEOF_VOID_P EQUAL 4)) message(FATAL_ERROR "You are configuring a non 32-bit build, this is not supported. Run cmake with `-A Win32`") endif() -option(CLEAN "Cleans third party libraries and recompiles them" OFF) -if(${CLEAN} MATCHES "ON") - message("Removing directory: ${PROJECT_SOURCE_DIR}/bin/install") - file(REMOVE_RECURSE ${PROJECT_SOURCE_DIR}/bin/install) -endif() - set(VERSION_MAJOR 1) set(VERSION_MINOR 7) set(VERSION_PATCH 0)