mirror of
https://github.com/reactos/CMake.git
synced 2024-12-20 10:38:08 +00:00
626fc717c6
Instead of relying on that some development package is installed on the system, now a tiny library is built, which is the searched and used during the test. Alex
9 lines
95 B
C++
9 lines
95 B
C++
#include <stdio.h>
|
|
#include <foo.h>
|
|
|
|
int main()
|
|
{
|
|
printf("foo is: %d\n", foo());
|
|
return 0;
|
|
}
|