我正在尝试使用 xmake 在 shell 中打印我的库或可执行文件的构建路径。构建后,我的库或可执行文件位于
build/linux/x86_64/release
目录中,我想使用 xmake 的命令在 shell 中打印此目录,例如print(os.projectdir())
在我的项目的 shell 根目录中打印。我该怎么做?
print("$(buildir)")
或
import("core.project.config")
print(config.buildir())