ENH: add missing files

This commit is contained in:
Bill Hoffman 2008-01-30 13:02:32 -05:00
parent 2d0e838339
commit d51e9cf180
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,3 @@
project(foo)
add_executable(foo foo.cxx)
target_link_libraries(foo bar)

View File

@ -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;
}