blob: bad3f8928bd26fdbce75b23c14476e031f5a8e28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
-- the option comes from the includes file of an addon
includes("@addon/custom-include/check")
target("hello")
set_kind("binary")
add_files("src/main.c")
add_rules("@addon/custom-rule/hello")
set_toolchains("@addon/custom-toolchain/my-c6000")
if has_config("myoption") then
add_defines("MYOPTION")
end
|