Skip to content

Commit 1a63709

Browse files
committed
build: conf: fix target definition for generated headers (#1242)
Build system for static files is broken due to wrong custom command definition. This patch uses a custom target instead and fix dependencies for 'flb-static-conf' target. note: this gist helped to solve the problem: https://gist.github.com/baiwfg2/39881ba703e9c74e95366ed422641609 Signed-off-by: Eduardo Silva <eduardo@treasure-data.com>
1 parent dbd8de7 commit 1a63709

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

gen_static_conf/CMakeLists.txt

+6-4
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,26 @@ set(CONF_DIR ${PROJECT_SOURCE_DIR}/include/fluent-bit/conf/)
88

99
# Iterate list creating custom commands for each entry
1010
set(OUT_FILES "")
11+
set(STATIC_DEPS "")
1112
set(FLB_STATIC_CONF_ARR "")
1213
set(FLB_STATIC_CONF_ARR_SIZE 0)
1314
foreach(file ${files})
1415
# Convert configuration file using xxd-c
1516
message(STATUS "Processing configuration file: '${file}'")
1617
get_filename_component(in_file ${file} NAME)
1718

18-
add_custom_command(
19+
add_custom_target(
20+
flb-static-file-${in_file}.h ALL
1921
COMMAND xxd-c
2022
ARGS
2123
-i ${file}
2224
-o ${CONF_DIR}${in_file}.h
2325
-s ${in_file}
24-
DEPENDS ${file}
25-
OUTPUT ${in_file}.h
26+
DEPENDS ${file} xxd-c
2627
COMMENT "Generating static configuration file: ${in_file}.h"
2728
)
2829
LIST(APPEND OUT_FILES "${in_file}.h")
30+
LIST(APPEND STATIC_DEPS "flb-static-file-${in_file}.h")
2931

3032
string(REPLACE "." "_" stname ${in_file})
3133
string(REPLACE "-" "_" stname ${stname})
@@ -48,4 +50,4 @@ configure_file(
4850

4951
# Register the custom target, this will be a later dependency
5052
# of fluent-bit-static target
51-
add_custom_target(flb-static-conf DEPENDS ${OUT_FILES})
53+
add_custom_target(flb-static-conf DEPENDS ${STATIC_DEPS})

0 commit comments

Comments
 (0)