Add unit test for AppDir::deployExecutable

This commit is contained in:
Alexis Lopez Zubieta
2018-10-12 17:56:42 +02:00
committed by TheAssassin
parent a0503a7102
commit 4c9943f0d1
5 changed files with 44 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
#include <cstdio>
extern "C" { void hello_world(); }
int main() {
printf("Hello World");
hello_world();
return 0;
}