fix set_target_properties if property value is an empty string
This commit is contained in:
parent
d49754381b
commit
849aa51f7f
1 changed files with 3 additions and 3 deletions
|
@ -107,9 +107,9 @@ endif()
|
|||
# Set the Version and SOVersion and define the public API #
|
||||
# for the BigWhoop library. #
|
||||
#----------------------------------------------------------#
|
||||
set_target_properties(bwclib PROPERTIES VERSION ${BWC_VERSION}
|
||||
SOVERSION ${BWC_VERSION_MAJOR}
|
||||
PUBLIC_HEADER ${CMAKE_SOURCE_DIR}/include/library/public/bwc.h)
|
||||
set_target_properties(bwclib PROPERTIES VERSION "${BWC_VERSION}"
|
||||
SOVERSION "${BWC_VERSION_MAJOR}"
|
||||
PUBLIC_HEADER "${CMAKE_SOURCE_DIR}/include/library/public/bwc.h")
|
||||
|
||||
#----------------------------------------------------------#
|
||||
# Setup up the include directory for the BigWhoop library. #
|
||||
|
|
Loading…
Reference in a new issue