cmake - Change Extension of Library? -
is there way alter shared library's extension, on windows ".dll" else?
add_library(mylib shared <src>)
so instead of creating mylib.dll file need else mylib.dla.
set target's suffix
property, i.e.:
add_library(mylib shared <src>) set_target_properties(mylib properties suffix ".dla")
cmake
No comments:
Post a Comment