mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-15 11:10:19 -06:00
This creates an additional target and for its three source files a directory tree is created.
12 lines
138 B
C
12 lines
138 B
C
#include <stdio.h>
|
|
|
|
extern int qax(void);
|
|
extern int qux(void);
|
|
|
|
int main()
|
|
{
|
|
printf("qux: %d qax: %d\n", qux(), qax());
|
|
|
|
return 0;
|
|
}
|