CMake/Tests/Complex/Executable/A.cxx

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