Merge pull request #1503 from traversaro/patch-5

[gsl] Add a "d" debug postfix
This commit is contained in:
Robert Schumacher 2017-07-24 08:58:07 -07:00 committed by GitHub
commit 378b6bd957
2 changed files with 6 additions and 2 deletions

View File

@ -48,6 +48,10 @@ file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/gsl_types.h "${GSLTYPES_H}")
file(GLOB_RECURSE PUBLIC_HEADERS gsl*.h)
list(APPEND PUBLIC_HEADERS ${CMAKE_CURRENT_BINARY_DIR}/gsl_types.h)
# The debug libraries have a "d" postfix so that CMake's FindGSL.cmake
# module can distinguish between Release and Debug libraries
set(CMAKE_DEBUG_POSTFIX "d")
add_library(gslcblas ${CBLAS_SOURCES})
set_target_properties(gslcblas PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS ON)

View File

@ -1,3 +1,3 @@
Source: gsl
Version: 2.3-1
Version: 2.3-2
Description: The GNU Scientific Library is a numerical library for C and C++ programmers