设置目录具有 DSSS 的结构
我正在尝试使用 dsss 设置目录结构:
./proj -- project files
./src -- source
./dev -- dev files, test files
./lib -- source for libraries used
./res -- resource files
./doc -- documentation
./bin -- binary files
./obj -- object files
在 ./proj
目录中无法正常工作dsss.conf
。
name=SomeProject
srcdir+=../src # this doesn't work
[../lib/sqlite3-d]
type=subdir
# Test files
[../dev/sqlite-test.d]
target=../bin/test-sqlite
# Program
[../src/main.d]
target=../bin/main
知道从哪里可以获得有关如何更好地设置这种结构的更多信息。我无法找到放置文件夹结构信息的正确位置。
我想要完成的主要任务是将 dsss 生成的文件仅保留在 ./obj
和 ./bin
目录中。
I'm trying to setup directoy structure with dsss:
./proj -- project files
./src -- source
./dev -- dev files, test files
./lib -- source for libraries used
./res -- resource files
./doc -- documentation
./bin -- binary files
./obj -- object files
Not properly working dsss.conf
in the ./proj
directory.
name=SomeProject
srcdir+=../src # this doesn't work
[../lib/sqlite3-d]
type=subdir
# Test files
[../dev/sqlite-test.d]
target=../bin/test-sqlite
# Program
[../src/main.d]
target=../bin/main
Any idea where to get more information on how to setup such structure more nicely. I'm unable to find the proper location to put the folder structure information.
The main thing i'm trying to accomplish is to keep files generated by dsss only in ./obj
and ./bin
directories.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后使用
rebuild
和Makefile
让它工作:这是
Makefile
:Finally got it working with using
rebuild
andMakefile
:This the
Makefile
: