mirror of
https://github.com/reactos/CMake.git
synced 2024-12-13 22:58:41 +00:00
875c478b64
This teaches the 'testing' test to try generator expressions in arguments to add_test(NAME). This test case mimics a common use-case of passing executables to test driver scripts. We excercise the syntax for per-configuration target file names.
9 lines
112 B
C
9 lines
112 B
C
#include "pcShared.h"
|
|
extern const char* pcStatic(void);
|
|
int main()
|
|
{
|
|
pcStatic();
|
|
pcShared();
|
|
return 0;
|
|
}
|