12345678910111213141516171819202122232425262728293031323334 |
- diff --git a/CMakeLists.txt b/CMakeLists.txt
- index 464854d..6801276 100644
- --- a/CMakeLists.txt
- +++ b/CMakeLists.txt
- @@ -297,25 +297,10 @@ endif()
-
- # TODO: package documentation files
-
- -if(MCUT_BUILD_AS_SHARED_LIB)
- - #
- - # dynamic libs
- - #
- -
- - install(TARGETS ${mpn_shared_lib_name}
- - LIBRARY
- - DESTINATION lib/shared
- - COMPONENT dynamic_libraries)
- -else()
- - #
- - # static libs
- - #
- -
- - install(TARGETS ${mpn_static_lib_name}
- - ARCHIVE
- - DESTINATION lib/static
- - COMPONENT static_libraries)
- -endif()
- +install(TARGETS ${target_name}
- + RUNTIME DESTINATION bin
- + LIBRARY DESTINATION lib
- + ARCHIVE DESTINATION lib)
-
- #
- # headers
|