4

我正在尝试dll使用 cmake 中的源文件生成文件。它给出了配置完成和生成完成。但是.dll.lib文件没有生成。请提供此问题的解决方案。

我在根目录下的 cmake 配置是:

CMAKE_MINIMUM_REQUIRED(VERSION 2.8)

PROJECT(mydll C)

INCLUDE_DIRECTORIES(../common/include) 

ADD_SUBDIRECTORY(mydll bin)

cmake configuration in mydll directory is :

SET(my_lib_src dllmain.cpp mydll.cpp funcs.def)

ADD_LIBRARY(mydll  SHARED ${my_lib_src})

SET_TARGET_PROPERTIES(mydll PROPERTIES LINKER_LANGUAGE C)
4

1 回答 1

2

我会把它作为回应,而不是评论。

你的问题是你没有编译你的解决方案,你只是在生成它......

看来您可以使用命令行构建项目:

cmake --build <dir> [options] [-- [native-options]]

    <dir>          = Project binary directory to be built.
    --target <tgt> = Build <tgt> instead of default targets.
    --config <cfg> = For multi-configuration tools, choose <cfg>.
    --clean-first  = Build target 'clean' first, then build.
                     (To clean only, use --target 'clean'.)
    --use-stderr   =  Don't merge stdout/stderr.
    --             = Pass remaining options to the native tool

但是我没试过...

于 2013-08-08T10:27:07.727 回答