如何仅为 WAF 中库的一个文件添加编译选项?

发布于 2024-10-03 08:04:27 字数 739 浏览 1 评论 0原文

我正在为我的 d 项目尝试使用 waf。 D 的优点之一是在编译时将整个文件“导入”到代码中。为此,您必须指定将在其中查找要导入的文件的文件夹。对于 dmd 编译器,您必须使用 -Jpath 命令行选项。

我正在构建一个在不同文件夹中包含一百个文件的库,并且我希望能够指定 -J 选项仅用于某些特定文件的编译。这是在 cmake 中完成的,类似于:

set_source_files_properties( 
    core/shader.d PROPERTIES COMPILE_FLAGS 
        -J${CMAKE_CURRENT_SOURCE_DIR}/core/gl2/shaders )

但在 waf 中我不知道该怎么做。我的 wscript 看起来像这样,但这将 -J 标志传递给所有文件:

#! /usr/bin/env python
# encoding: utf-8

def build(bld):

 bld.stlib(
  source   = 
   '''
   app/action.d
   app/client.d
<...snip..>
   core/shader.d
   core/stream.d
   ''',
  includes = ['..', '../extern' ],
  name     = 'mylib',
  target   = 'mylib
  dflags  = '-J/some/path/core/gl2/shaders')

I am experimenting with waf for my d project. One of the nice features of D is the "import" of entire files into the code at compile time. To do this you have to specify the folders that will be looked in for the files to import. In the case of the dmd compiler you have to use the -Jpath command-line option.

I am building a library with a hundred files in different folders, and i want to be able to specify the -J option only for the copilation of some specific files. This is done in cmake with something like:

set_source_files_properties( 
    core/shader.d PROPERTIES COMPILE_FLAGS 
        -J${CMAKE_CURRENT_SOURCE_DIR}/core/gl2/shaders )

But in waf i don't know how to do it. My wscript lookes like this but this passes the -J flags to all the files:

#! /usr/bin/env python
# encoding: utf-8

def build(bld):

 bld.stlib(
  source   = 
   '''
   app/action.d
   app/client.d
<...snip..>
   core/shader.d
   core/stream.d
   ''',
  includes = ['..', '../extern' ],
  name     = 'mylib',
  target   = 'mylib
  dflags  = '-J/some/path/core/gl2/shaders')

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

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

发布评论

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

评论(1

↙温凉少女 2024-10-10 08:04:27

你可以这样做:

bld(
 target="specialfile",
 features="d",
 source="specialfile.c",
 defines=["SPECIAL=1"],
)

bld.stlib(
 ...,
 use=["specialfile"],
)

You can do:

bld(
 target="specialfile",
 features="d",
 source="specialfile.c",
 defines=["SPECIAL=1"],
)

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