diff options
author | Stephen Kelly <steveire@gmail.com> | 2012-09-20 21:28:09 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-09-28 12:50:16 (GMT) |
commit | 083de7ed35b26dceff6edeb4fc8f9d2500855a9b (patch) | |
tree | 4b7a4812445c850a5544c503a6bd454991f9f142 /Tests/CompileDefinitions/compiletest.cpp | |
parent | 08cb4fa4c0378468fc2757666701617f6fe8270e (diff) | |
download | CMake-083de7ed35b26dceff6edeb4fc8f9d2500855a9b.zip CMake-083de7ed35b26dceff6edeb4fc8f9d2500855a9b.tar.gz CMake-083de7ed35b26dceff6edeb4fc8f9d2500855a9b.tar.bz2 |
Process generator expressions in the COMPILE_DEFINITIONS target property.
Diffstat (limited to 'Tests/CompileDefinitions/compiletest.cpp')
-rw-r--r-- | Tests/CompileDefinitions/compiletest.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/CompileDefinitions/compiletest.cpp b/Tests/CompileDefinitions/compiletest.cpp index 6db6f3f..4a68a07 100644 --- a/Tests/CompileDefinitions/compiletest.cpp +++ b/Tests/CompileDefinitions/compiletest.cpp @@ -27,6 +27,15 @@ enum { #endif }; +#ifdef TEST_GENERATOR_EXPRESSIONS +#ifndef CMAKE_IS_DECLARATIVE +#error Expect declarative definition +#endif +#ifdef GE_NOT_DEFINED +#error Expect not defined generator expression +#endif +#endif + int main(int argc, char **argv) { return 0; |