diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2019-01-31 08:13:47 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2019-01-31 08:13:47 +0800 |
commit | f1f607d5e501bb064bfd1bf28d128d78ec4c7fc4 (patch) | |
tree | e049077f8ff3bb9f94d99e3b5ab1cef3e16e9fa1 | |
parent | eb315107776a9205c33136f5969f2dd793921041 (diff) | |
download | tangerine-mcl-f1f607d5e501bb064bfd1bf28d128d78ec4c7fc4.tar.gz tangerine-mcl-f1f607d5e501bb064bfd1bf28d128d78ec4c7fc4.tar.zst tangerine-mcl-f1f607d5e501bb064bfd1bf28d128d78ec4c7fc4.zip |
remove SOVERSION of library in cmake
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c7bf1de..bf54175 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -87,7 +87,8 @@ include_directories( add_library(mcl STATIC ${SRCS}) add_library(mcl_dy SHARED ${SRCS}) target_link_libraries(mcl_dy ${LIBS}) -set_target_properties(mcl_dy PROPERTIES OUTPUT_NAME mcl VERSION 1.0.0 SOVERSION 1) +set_target_properties(mcl_dy PROPERTIES OUTPUT_NAME mcl) +#set_target_properties(mcl_dy PROPERTIES OUTPUT_NAME mcl VERSION 1.0.0 SOVERSION 1) # For semantics of ABI compatibility including when you must bump SOVERSION, see: # https://community.kde.org/Policies/Binary_Compatibility_Issues_With_C%2B%2B#The_Do.27s_and_Don.27ts |