From b7deca4a54991c4c596cbd7ee209988785bfcd44 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Mon, 6 Jan 2014 16:15:23 +0100 Subject: [PATCH] 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). --- Tests/LinkDirectory/CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/Tests/LinkDirectory/CMakeLists.txt b/Tests/LinkDirectory/CMakeLists.txt index b8d5a048c7..c60de84e96 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)