From 5692805fd0bb1aa70cd6965de83068db60743b34 Mon Sep 17 00:00:00 2001 From: ruki Date: Mon, 17 Oct 2022 22:39:59 +0800 Subject: add components tests --- tests/projects/package/components/src/main.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/projects/package/components/src/main.cpp (limited to 'tests/projects/package/components/src/main.cpp') diff --git a/tests/projects/package/components/src/main.cpp b/tests/projects/package/components/src/main.cpp new file mode 100644 index 000000000..bf0ad1553 --- /dev/null +++ b/tests/projects/package/components/src/main.cpp @@ -0,0 +1,14 @@ +#include +#include + +extern "C" { +void network(); +void graphics(); +} + +int main(int argc, char** argv) { + network(); + graphics(); + return 0; +} + -- cgit v1.3.1