File: biicode.conf

package info (click to toggle)
ucommon 7.0.0-16
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 4,736 kB
  • sloc: cpp: 45,905; sh: 11,645; ansic: 698; makefile: 177
file content (41 lines) | stat: -rw-r--r-- 1,343 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Biicode configuration file

[requirements]
	 lasote/openssl: 2

[parent]
	dyfet/ucommon: 0
[paths]
    # Local directories to look for headers (within block)
    # /
    # include
    inc

[dependencies]
    CMakeLists.txt + ucommon-config.h.cmake
    # Manual adjust file implicit dependencies, add (+), remove (-), or overwrite (=)
    # hello.h + hello_imp.cpp hello_imp2.cpp
    # *.h + *.cpp


[mains]
    # Manual adjust of files that define an executable
    # !main.cpp  # Do not build executable from this file
    # main2.cpp # Build it (it doesnt have a main() function, but maybe it includes it)

[hooks]
    # These are defined equal to [dependencies],files names matching bii*stage*hook.py
    # will be launched as python scripts at stage = {post_process, clean}
    # CMakeLists.txt + bii/my_post_process1_hook.py bii_clean_hook.py

[includes]
    # Mapping of include patterns to external blocks
    # hello*.h: user3/depblock  # includes will be processed as user3/depblock/hello*.h
openssl/*.h: lasote/openssl/include

[data]
    # Manually define data files dependencies, that will be copied to bin for execution
    # By default they are copied to bin/user/block/... which should be taken into account
    # when loading from disk such data
    # image.cpp + image.jpg  # code should write open("user/block/image.jpg")