From 99e0a150ff62f37dec48334c559d2421574d3658 Mon Sep 17 00:00:00 2001 From: Matt Davis Date: Fri, 1 Mar 2019 15:15:27 -0800 Subject: [PATCH] allow override of Windows static lib name * also changed name back to original default of yaml, as the change in #10 to `yaml_static` broke things that relied on that --- CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1abdd77..e00193e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,6 +8,7 @@ set (YAML_VERSION_PATCH 7) set (YAML_VERSION_STRING "${YAML_VERSION_MAJOR}.${YAML_VERSION_MINOR}.${YAML_VERSION_PATCH}") option(BUILD_SHARED_LIBS "Build libyaml as a shared library" OFF) +option(YAML_STATIC_LIB_NAME "base name of static library output" yaml) # # Output directories for a build tree @@ -56,8 +57,8 @@ add_library(yaml ${SRCS}) if(NOT BUILD_SHARED_LIBS) set_target_properties(yaml - PROPERTIES OUTPUT_NAME yaml_static - ) + PROPERTIES OUTPUT_NAME ${YAML_STATIC_LIB_NAME} + ) endif() set_target_properties(yaml -- 2.45.1