xmake - 如何打印我的库或可执行文件的构建路径?

问题描述 投票:0回答:1

我正在尝试使用 xmake 在 shell 中打印我的库或可执行文件的构建路径。构建后,我的库或可执行文件位于

build/linux/x86_64/release
目录中,我想使用 xmake 的命令在 shell 中打印此目录,例如
print(os.projectdir())
在我的项目的 shell 根目录中打印。我该怎么做?

shell build g++ cross-platform xmake
1个回答
0
投票
print("$(buildir)")

import("core.project.config")
print(config.buildir())
© www.soinside.com 2019 - 2024. All rights reserved.