diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-01-06 15:15:23 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-01-07 14:38:00 (GMT) |
commit | b7deca4a54991c4c596cbd7ee209988785bfcd44 (patch) | |
tree | 8eb19c375f30ff337d49acf17034740f527e566f /Tests | |
parent | 9c9f69fb9c0c1ab1f62de646cffe48485bd893af (diff) | |
download | CMake-b7deca4a54991c4c596cbd7ee209988785bfcd44.zip CMake-b7deca4a54991c4c596cbd7ee209988785bfcd44.tar.gz CMake-b7deca4a54991c4c596cbd7ee209988785bfcd44.tar.bz2 |
Test: Remove obsolete commented code.
This should not have survived in commit a247911a (Tests: Don't read
the LOCATION property from build targets., 2013-11-18).
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/LinkDirectory/CMakeLists.txt | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Tests/LinkDirectory/CMakeLists.txt b/Tests/LinkDirectory/CMakeLists.txt index b8d5a04..c60de84 100644 --- a/Tests/LinkDirectory/CMakeLists.txt +++ b/Tests/LinkDirectory/CMakeLists.txt @@ -11,13 +11,11 @@ endif() add_library(mylibA STATIC mylibA.c) set_property(TARGET mylibA PROPERTY ARCHIVE_OUTPUT_DIRECTORY "${LinkDirectory_BINARY_DIR}/External/lib") -# get_property(mylibA TARGET mylibA PROPERTY LOCATION) # Build a library into our build tree relative to the subproject build tree. add_library(mylibB STATIC mylibB.c) set_property(TARGET mylibB PROPERTY ARCHIVE_OUTPUT_DIRECTORY "${LinkDirectory_BINARY_DIR}/lib") -# get_property(mylibB TARGET mylibB PROPERTY LOCATION) # Create a custom target to drive the subproject build. include(ExternalProject) |