Dear developers,
I would like to compile the linux target of ITK 5.4 by Cmake. It will create symlink binaries (.so and .so.1) which are not supported by windows system. So I wonder if it can be compiled without symlinks?
Best,
Rosie
Dear developers,
I would like to compile the linux target of ITK 5.4 by Cmake. It will create symlink binaries (.so and .so.1) which are not supported by windows system. So I wonder if it can be compiled without symlinks?
Best,
Rosie
I attempted to comment out these two lines in ITKModuleMacros.cmake:
macro(itk_module_target_name _name)
if(NOT
${CMAKE_SYSTEM_NAME}
MATCHES
"OpenBSD")
#set_property(TARGET ${_name} PROPERTY VERSION 1)
#set_property(TARGET ${_name} PROPERTY SOVERSION 1)
endif(
Some binary targets do not have a generated version number, but for example: the target libMritkgdcmsocketxx-5.4.so.1.2.0 is still generated with a version number.