使用 cmake 不同的安装目标

发布于 2024-10-28 15:15:29 字数 278 浏览 1 评论 0原文

我有一个由三个二进制文件和两个库组成的项目。今天,我每个部分都有 2 个 CMakeLists.txt 文件,因为我希望 make install 将编译后的文件复制到 project/bin 目录以供开发和生产使用,我希望它将文件安装到 < code>/usr/...

我想要一个单独的 make install-devmake install 或类似的东西。用cmake可以吗?我在 cmake 文档中搜索但没有找到相关内容。

I have a project consisting of three binaries and two libraries. Today I have 2 CMakeLists.txt files for each part, because I want make install to copy the compiled files to the project/bin directory for development and for production use I want it to install the files to /usr/...

I would like to have a separate make install-dev and make install or something like that. Is that possible with cmake? I searched in the cmake docs but found nothing relevant.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉月流沐 2024-11-04 15:15:29

我知道移动安装点的最简单方法是使用安装目录的相对路径

install(TARGETS t tlib
        RUNTIME DESTINATION bin
        LIBRARY DESTINATION lib
)

,然后当您运行 cmake 进行开发时,像这样运行它

cmake -D CMAKE_INSTALL_PREFIX=/projhome/bin 

以进行发布

cmake -D CMAKE_INSTALL_PREFIX=/usr

The easiest way I know of to move the install point is to use relative paths for your install directories

install(TARGETS t tlib
        RUNTIME DESTINATION bin
        LIBRARY DESTINATION lib
)

and then when you run cmake for development run it like this

cmake -D CMAKE_INSTALL_PREFIX=/projhome/bin 

for release like this

cmake -D CMAKE_INSTALL_PREFIX=/usr
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文