diff options
author | Brad King <brad.king@kitware.com> | 2017-10-02 12:25:22 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-10-03 12:03:33 (GMT) |
commit | 303cd7037a5de2b26373ed4184fd36e68e0f01da (patch) | |
tree | 49398fbc6dd15245f8f922cdb6ff58b8c16efd5d /Tests/GeneratorExpression/echo.c | |
parent | db730f3e5092bbfcd1cee8c0cdf5150c88fb65b3 (diff) | |
download | CMake-303cd7037a5de2b26373ed4184fd36e68e0f01da.zip CMake-303cd7037a5de2b26373ed4184fd36e68e0f01da.tar.gz CMake-303cd7037a5de2b26373ed4184fd36e68e0f01da.tar.bz2 |
VS,Xcode: Fix TARGET_PROPERTY genex in source COMPILE_FLAGS property
This already worked in other generators. Also add a test case.
Fixes: #17314
Diffstat (limited to 'Tests/GeneratorExpression/echo.c')
-rw-r--r-- | Tests/GeneratorExpression/echo.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Tests/GeneratorExpression/echo.c b/Tests/GeneratorExpression/echo.c index 41596a2..06b0844 100644 --- a/Tests/GeneratorExpression/echo.c +++ b/Tests/GeneratorExpression/echo.c @@ -3,9 +3,6 @@ int main(int argc, char* argv[]) { -#ifndef SRC_GENEX_WORKS -#error SRC_GENEX_WORKS not defined -#endif printf("%s\n", argv[1]); return EXIT_SUCCESS; } |