我正在尝试使用Visual Studio 2013编译一个非常简单的CMake项目,但是在尝试对其进行编译时出现以下错误:

error LNK1120: 1 unresolved externals   cmake_issue\build\Debug\cmake_issue.exe 1   1   cmake_issue
error LNK2001: unresolved external symbol "public: static int Other::value" (?value@Other@@2HA) cmake_issue\build\test.obj  cmake_issue

我有一个带有以下CMakeLists.txt的基本目录:
project(cmake_issue)
add_subdirectory(other)
add_executable(cmake_issue src/test.cc)
target_link_libraries(cmake_issue other)

以及src/test.cc的内容:

#include <cstdio>

#include "other/other.h"

int main(int argc, char *argv[]) {
    printf("value = %d\n", Other::value);

    return 0;
}

还有一个名为other的子目录,其中包含以下CMakeLists.txt:
add_library(other SHARED src/other.cc)
target_include_directories(other PUBLIC include)
target_link_libraries(other)

以及other/include/other/other.h的内容:

#ifndef _OTHER_H_
#define _OTHER_H_

class __declspec(dllexport) Other {
public:
    static int value;
};

#endif

以及other/src/other.cc的内容:

#include "other/other.h"

int Other::value = 30;

如果我使用cmake构建项目,然后在Visual Studio中打开生成的sln,则这两个项目都将出现在解决方案资源管理器中。

如果我右键单击并构建other,它将构建良好。但是,如果我尝试构建cmake_issue,则会收到上述错误。似乎cmake_issue解决方案未使用编译other.dll解决方案时生成的other.lib(或other)文件。

如果需要,我可以上传源的zip。

最佳答案

好的,问题不在CMake方面,而是C++。当您在可执行文件中使用dllexport'ed类时,其定义应为class __declspec(dllimport) Other。该代码可以正常工作,例如:

#include <cstdio>

class __declspec(dllimport) Other {
public:
    static int value;
    int a();
};

int main(int argc, char *argv[]) {
    printf("value = %d\n", Other::value);

    return 0;
}

这是完整解决方案的链接:https://social.msdn.microsoft.com/Forums/en-US/6c43599d-6d9d-4709-abf5-4d1e3f5e4fc9/exporting-static-class-members

关于c++ - CMake Unresolved external ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32108071/

10-12 23:50