CMake: Generate import library from definition file

1.5k Views Asked by At

I am using CMake to build a project for MSVC.

All I have is a .def file with exported functions from a dll library. My project doesn't have access to a dll or a source code. And I need an import library to eliminate unresolved externals. The SDK I'm building my project for, uses only header files and import libraries. However some libraries are not built, so I must build them alone without a source code or a DLL libraries (they are packed with the product, not SDK).

I can build an import library with following command, I used it as a pre-link event in the VS project:

lib /def:<def path> /OUT:<lib name> /MACHINE:<machine type>

Is there a way for the CMake as well? I've tried commands like:

add_library(Ilib STATIC empty.cpp expfile.def)
add_library(Ilib SHARED empty.cpp expfile.def)
add_library(Ilib STATIC expfile.def)
set_target_properties(Ilib PROPERTIES LINKER_LANGUAGE CXX)

But none of them are working.

I think, the only solution would be to create an execute_process or add_custom_command command.

1

There are 1 best solutions below

0
On

This post was the top search result when I was searching for this last night and I couldn't find anything useful. Here's what I ended up with if it's useful for someone (or for future me looking for this again):

(Assumes the def file is next to the CMakeLists.txt)

project(msvcrt)

add_custom_command(
  OUTPUT msvcrt.lib
  COMMAND lib.exe /machine:X64 /def:${CMAKE_CURRENT_SOURCE_DIR}/msvcrt.def /out:msvcrt.lib
  DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/msvcrt.def
  VERBATIM)

add_custom_target(msvcrtlib ALL
    DEPENDS msvcrt.lib
    VERBATIM)

install(FILES ${CMAKE_CURRENT_BINARY_DIR}/msvcrt.lib DESTINATION foobar)