gpt4 book ai didi

c - 我如何在Windows中执行make file

转载 作者:行者123 更新时间:2023-11-30 16:17:41 25 4
gpt4 key购买 nike

我想使用这个库https://github.com/json-c/json-c我的 C 程序在代码块(Windows)中,但我不知道如何在 Windows 上制作 makefile/cmake。我不知道在这个特定的例子中该怎么做。只有类似“Config.cmake.in”的内容。

有什么想法吗?

最佳答案

您没有说明您在 Windows 上使用的构建环境类型。因此,请在下面找到我如何使用 cmake 3.14.3 和 Visual Studio 2015 在 Windows 10 上构建 32 位版本的 json 库的简短描述。CMake 支持 Visual Studio 和 MinGW 的多个生成器(请参阅 CMake 文档)。

  1. 打开命令窗口(cmd.exe)更改为json-c库源的根目录。
  2. 使用命令行“cmake -G "Visual Studio 14 2015"-A Win32 -B build”在目录“build”中设置 32 位目标的构建配置
  3. 打开 Visual Studio 2015 x86 环境的命令窗口(开始菜单中的链接)并更改为在上一步中创建的构建目录。
  4. 运行“msbuild json-c.sln”构建 json-c 动态库的 Debug 版本
  5. 运行“msbuild json-c.sln/p:Configuration=Release”构建Release版本的json-c动态库

之后,您应该能够将构建的库添加到您的项目中。

关于c - 我如何在Windows中执行make file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56216073/

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