ENH: add missing files
This commit is contained in:
parent
2d0e838339
commit
d51e9cf180
|
@ -0,0 +1,3 @@
|
||||||
|
project(foo)
|
||||||
|
add_executable(foo foo.cxx)
|
||||||
|
target_link_libraries(foo bar)
|
|
@ -0,0 +1,15 @@
|
||||||
|
int bar();
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main(int ac, char** av)
|
||||||
|
{
|
||||||
|
(void)ac;
|
||||||
|
(void)av;
|
||||||
|
int ret = bar();
|
||||||
|
printf("bar = %d\n", ret);
|
||||||
|
if(ret == 10)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
Loading…
Reference in New Issue