From a1dca132a8fb5df0ab4a9b295b225857ac3769b8 Mon Sep 17 00:00:00 2001 From: Leland Lucius Date: Tue, 26 May 2020 13:50:34 -0500 Subject: [PATCH] Remove unnecessary ALIAS definition No longer needed after removal of old build system --- cmake-proxies/CMakeLists.txt | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/cmake-proxies/CMakeLists.txt b/cmake-proxies/CMakeLists.txt index 991941632..9f22b16d4 100644 --- a/cmake-proxies/CMakeLists.txt +++ b/cmake-proxies/CMakeLists.txt @@ -122,22 +122,6 @@ function( addlib dir name symbol required check ) endif() endforeach() endif() - - # Define a library alias for each of the packages - foreach( package ${packages} ) - # Convert the package spec to a list - string( REPLACE " " ";" package "${package}" ) - - # And extract just the package name - list( GET package 0 package ) - - # But only if the package name doesn't conflict with the - # target name. - if( NOT TARGET ${package} ) - # Create the alias - add_library( "${package}" ALIAS ${TARGET} ) - endif() - endforeach() endfunction() # Required libraries