mirror of
https://github.com/reactos/CMake.git
synced 2025-02-03 10:31:55 +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.
17 lines
256 B
C
17 lines
256 B
C
#ifndef pcShared_h
|
|
#define pcShared_h
|
|
|
|
#ifdef _WIN32
|
|
# ifdef pcShared_EXPORTS
|
|
# define PC_EXPORT __declspec(dllexport)
|
|
# else
|
|
# define PC_EXPORT __declspec(dllimport)
|
|
# endif
|
|
#else
|
|
# define PC_EXPORT
|
|
#endif
|
|
|
|
PC_EXPORT const char* pcShared(void);
|
|
|
|
#endif
|