Is there a way to change the extension of the shared library, only on windows from ".dll" to something else?
add_library(mylib SHARED <src>)
So, instead of creating the mylib.dll file, I need it to be something like mylib.dla.
Set the target property SUFFIX, i.e.:
SUFFIX
add_library(mylib SHARED <src>) set_target_properties(mylib PROPERTIES SUFFIX ".dla")