diff options
author | Brad King <brad.king@kitware.com> | 2016-08-24 10:56:53 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-08-24 10:56:57 -0400 |
commit | 828e763260c257920d91037395c7f88e59243367 (patch) | |
tree | c7207945750476271829827053720f8994ba6ca0 /Tests/RunCMake/CMP0040/CMP0040-OLD-missing-target.cmake | |
parent | 7bc6dccc0a993ddb3681100e28405189be09ff72 (diff) | |
download | cmake-828e763260c257920d91037395c7f88e59243367.tar.gz |
Tests: Fix RunCMake.CMP0040 custom command syntax
Diffstat (limited to 'Tests/RunCMake/CMP0040/CMP0040-OLD-missing-target.cmake')
-rw-r--r-- | Tests/RunCMake/CMP0040/CMP0040-OLD-missing-target.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/RunCMake/CMP0040/CMP0040-OLD-missing-target.cmake b/Tests/RunCMake/CMP0040/CMP0040-OLD-missing-target.cmake index ef7a0f731b..0f5cd1522e 100644 --- a/Tests/RunCMake/CMP0040/CMP0040-OLD-missing-target.cmake +++ b/Tests/RunCMake/CMP0040/CMP0040-OLD-missing-target.cmake @@ -1,5 +1,5 @@ cmake_policy(SET CMP0040 OLD) add_custom_command(TARGET foobar PRE_BUILD - COMMAND "${CMAKE_COMMAND} -E echo hello world" + COMMAND ${CMAKE_COMMAND} -E echo hello world ) |