49d6dd67f1
Run the test executable as a custom command instead of depending on cmSystemTools::RunSingleCommand.
10 lines
172 B
C++
10 lines
172 B
C++
// Include code from a header that should not be compiled separately.
|
|
#include "A.hh"
|
|
|
|
#include <stdio.h>
|
|
int main()
|
|
{
|
|
printf("#define A_VALUE %d\n", A());
|
|
return 0;
|
|
}
|