Skip to content

Commit

Permalink
DTNN-653 Functional test cmake fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sara-gb committed Aug 6, 2024
1 parent dc5390c commit c1b9aad
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ list(APPEND BPLIB_COMPONENTS
bplib_cbor bplib_em bplib_job bplib_mem bplib_pl bplib_time
)

list(APPEND BPLIB_SRC test.c)

foreach(COMPONENT ${BPLIB_COMPONENTS})
list(APPEND BPLIB_SRC
$<TARGET_OBJECTS:${COMPONENT}>
Expand Down
7 changes: 7 additions & 0 deletions test.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

#include "bplib.h"

int blah_test(void)
{
return 0;
}

0 comments on commit c1b9aad

Please sign in to comment.