TargetName"、 "Debugging->Command"和 "Linker->General->Output File"-6ren"> TargetName"、 "Debugging->Command"和 "Linker->General->Output File"-我在 VS 项目编译中收到警告。尽管编译成功,但我无法获得文件的输出。您知道如何设置上述每一项吗? 它是在谈论哪个命令和outfile文件?应该给出什么路径? //testlib.h #include-6ren">
gpt4 book ai didi

c - 如何设置 "General->TargetName"、 "Debugging->Command"和 "Linker->General->Output File"

转载 作者:行者123 更新时间:2023-11-30 15:48:03 25 4
gpt4 key购买 nike

我在 VS 项目编译中收到警告。尽管编译成功,但我无法获得文件的输出。您知道如何设置上述每一项吗?

它是在谈论哪个命令和outfile文件?应该给出什么路径?

//testlib.h

#include <stdio.h>

__declspec(dllexport) void hello();

c++文件如下:

//testlib.cpp

#include "testlib.h"

void hello() {
printf("DLL hello() called\n");
}

main.cpp如下:

//main.cpp
#include <testlib.h>

int main() {
hello();
}

我正在为 teSTLib.h 和 teSTLib.cpp 创建 dll。然后我想用它来运行main.cpp文件。

最佳答案

已解决:

使用 dll 通过 teSTLib.h 和 teSTLib.cp 创建项目

为 main.cpp 创建新项目时使用 Windows 项目执行此命令会创建 .exe 文件。

将 .dll 文件添加到 .exe 文件所在的同一文件夹中,它将根据您的需要运行!

关于c - 如何设置 "General->TargetName"、 "Debugging->Command"和 "Linker->General->Output File",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17059429/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com