2
0
Fork 0
mirror of https://github.com/bazel-contrib/rules_foreign_cc synced 2024-11-25 17:31:25 +00:00
rules_foreign_cc/examples/cmake_android/hello_lib-example.cpp
2018-08-13 11:55:05 +02:00

8 lines
103 B
C++

#include <stdio.h>
#include "hello.h"
int main(int argc, char* argv[])
{
hello_func();
return 0;
}