From be705d191b0b02a48c175626d8f2d365e7aacee9 Mon Sep 17 00:00:00 2001 From: Sean Robinson Date: Tue, 17 Jan 2023 14:15:05 -0700 Subject: [PATCH] Remove cmake option for removable '-v' This was made obsolete by commit ea1f7ef663. Signed-off-by: Sean Robinson --- CMakeLists.txt | 6 ------ 1 file changed, 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c269bb1..0654064 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,6 @@ project(argparse option(ARGPARSE_INSTALL ON) option(ARGPARSE_BUILD_TESTS OFF) -option(ARGPARSE_LONG_VERSION_ARG_ONLY OFF) include(GNUInstallDirs) include(CMakePackageConfigHelpers) @@ -17,11 +16,6 @@ include(CMakePackageConfigHelpers) add_library(argparse INTERFACE) add_library(argparse::argparse ALIAS argparse) - -if (ARGPARSE_LONG_VERSION_ARG_ONLY) - target_compile_definitions(argparse INTERFACE ARGPARSE_LONG_VERSION_ARG_ONLY=true) -endif () - target_compile_features(argparse INTERFACE cxx_std_17) target_include_directories(argparse INTERFACE $