6

For some reason, the below CMake file fails to install the project libraries. It creates the directory in the right location, and it even recursively installs the headers... But it fails to install the library. How can this be fixed?

cmake_minimum_required(VERSION 2.8)
project(MyLib)

include_directories(include)
add_library(MyLib SHARED source/stuff.cpp)

if(CMAKE_SYSTEM MATCHES "Windows")
target_link_libraries(MyLib DbgHelp ws2_32 iphlpapi)
set(CMAKE_INSTALL_PREFIX "../../devel_artifacts")
endif(CMAKE_SYSTEM MATCHES "Windows")

install(TARGETS MyLib LIBRARY DESTINATION "lib"
                      ARCHIVE DESTINATION "lib"
                      COMPONENT library)
install(DIRECTORY include/${PROJECT_NAME} DESTINATION include)
Peter Mortensen
  • 30,030
  • 21
  • 100
  • 124
dicroce
  • 42,886
  • 27
  • 97
  • 139

1 Answers1

13

You're just missing the RUNTIME DESTINATION argument in the install(TARGETS...) command.

CMake treats shared libraries as runtime objects on "DLL platforms" like Windows. If you change your command to:

install(TARGETS MyLib LIBRARY DESTINATION "lib"
                      ARCHIVE DESTINATION "lib"
                      RUNTIME DESTINATION "bin"
                      COMPONENT library)

then you should find that MyLib.dll ends up in "devel_artifacts/bin".

Fraser
  • 70,437
  • 17
  • 232
  • 212