From 8485a487562cbc8e9af4d052618be2d8e157ac58 Mon Sep 17 00:00:00 2001 From: Sean Keely Date: Thu, 4 Jun 2020 23:50:33 -0500 Subject: [PATCH] Remove additional legacy build file. Change-Id: Ib166ad9856114a4a846f37ff99bac4f870c414d9 --- .../hsa-runtime/libamdhsacode/CMakeLists.txt | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 runtime/hsa-runtime/libamdhsacode/CMakeLists.txt diff --git a/runtime/hsa-runtime/libamdhsacode/CMakeLists.txt b/runtime/hsa-runtime/libamdhsacode/CMakeLists.txt deleted file mode 100644 index 2b1573044c..0000000000 --- a/runtime/hsa-runtime/libamdhsacode/CMakeLists.txt +++ /dev/null @@ -1,17 +0,0 @@ -# -# amdhsacode library -# -# This file is expected to be included from top-level CMakeLists.txt. -# -# Dependencies: -# - Compiler definitions -# - elf library -# -# Defines: -# - amdhsacode library and target include directories - -file(GLOB sources *.cpp *.hpp) -find_package(LibElf REQUIRED) -add_library(amdhsacode ${sources}) -target_include_directories(amdhsacode PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) -target_link_libraries(amdhsacode elf)