Re: [CMake] lintian errors when using cpack

2019-10-10 Thread Kerstin Keller
Hi, what CPACK_DEBIAN_* options have you set and to what values have you set them? I guess you're both using: set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON) set(CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS ON) When I generate the file for my lib it looks a bit different (e.g. it pins the package to a certain

[CMake] dll artifacts - Runtime or Library Output

2019-04-04 Thread Kerstin Keller
On Windows, a .dll is considered by CMake to be a "RUNTIME" Output artifact if it was added with the `add_library(my_liib SHARED my_lib.cpp), however if it was added with the MODULE keyword, it is considered to be a "LIBRARY" output, as stated in the documentation