diff options
author | Brad King <brad.king@kitware.com> | 2009-09-28 21:34:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-09-28 21:34:34 (GMT) |
commit | 65a78ec5b81529507bed1375a13fca23bed60be7 (patch) | |
tree | 92499f72eb6092239b8bcf60438f7085a5bffe72 /Tests/Policy0002 | |
parent | 0089f9cf8f0ff484b83b03d1fc11fbd2536d59b9 (diff) | |
download | CMake-65a78ec5b81529507bed1375a13fca23bed60be7.zip CMake-65a78ec5b81529507bed1375a13fca23bed60be7.tar.gz CMake-65a78ec5b81529507bed1375a13fca23bed60be7.tar.bz2 |
Test support for OLD behavior of policy CMP0002
Policy CMP0002's OLD behavior allows duplicate non-custom targets. We
test it with a project that builds two executables of the same name by
setting CMP0002 to OLD.
Diffstat (limited to 'Tests/Policy0002')
-rw-r--r-- | Tests/Policy0002/A/CMakeLists.txt | 1 | ||||
-rw-r--r-- | Tests/Policy0002/CMakeLists.txt | 5 | ||||
-rw-r--r-- | Tests/Policy0002/policy0002.c | 4 |
3 files changed, 10 insertions, 0 deletions
diff --git a/Tests/Policy0002/A/CMakeLists.txt b/Tests/Policy0002/A/CMakeLists.txt new file mode 100644 index 0000000..cee6422 --- /dev/null +++ b/Tests/Policy0002/A/CMakeLists.txt @@ -0,0 +1 @@ +add_executable(Policy0002 ../policy0002.c) diff --git a/Tests/Policy0002/CMakeLists.txt b/Tests/Policy0002/CMakeLists.txt new file mode 100644 index 0000000..0f6d331 --- /dev/null +++ b/Tests/Policy0002/CMakeLists.txt @@ -0,0 +1,5 @@ +cmake_minimum_required(VERSION 2.6) +project(Policy0002 C) +cmake_policy(SET CMP0002 OLD) +add_subdirectory(A) +add_executable(Policy0002 policy0002.c) diff --git a/Tests/Policy0002/policy0002.c b/Tests/Policy0002/policy0002.c new file mode 100644 index 0000000..8488f4e --- /dev/null +++ b/Tests/Policy0002/policy0002.c @@ -0,0 +1,4 @@ +int main(void) +{ + return 0; +} |