Skip to content

Commit c1b9aad

Browse files
committed
DTNN-653 Functional test cmake fix
1 parent dc5390c commit c1b9aad

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ list(APPEND BPLIB_COMPONENTS
109109
bplib_cbor bplib_em bplib_job bplib_mem bplib_pl bplib_time
110110
)
111111

112+
list(APPEND BPLIB_SRC test.c)
113+
112114
foreach(COMPONENT ${BPLIB_COMPONENTS})
113115
list(APPEND BPLIB_SRC
114116
$<TARGET_OBJECTS:${COMPONENT}>

test.c

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
#include "bplib.h"
3+
4+
int blah_test(void)
5+
{
6+
return 0;
7+
}

0 commit comments

Comments
 (0)