SWDEV-509213 - make cmake_minimum_required consistent across clr (#51)

Change-Id: Ib0b1df7af8984a37d6bf7ca68ec99597d5978821
Dieser Commit ist enthalten in:
Chaudhary, Jatin Jaikishan
2025-04-15 10:53:41 +01:00
committet von GitHub
Ursprung 588cf0fc69
Commit fcaefe97b8
15 geänderte Dateien mit 9 neuen und 47 gelöschten Zeilen
-2
Datei anzeigen
@@ -18,8 +18,6 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
cmake_minimum_required(VERSION 3.5)
project(ROCclr)
if (${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR})
-6
Datei anzeigen
@@ -18,12 +18,6 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
cmake_minimum_required(VERSION 3.5)
if (POLICY CMP0072)
cmake_policy(SET CMP0072 NEW)
endif()
# ROCclr abstracts the usage of multiple AMD compilers and runtimes.
# It is possible to support multiple backends concurrently in the same binary.
option(ROCCLR_ENABLE_HSAIL "Enable support for HSAIL compiler" OFF)
-1
Datei anzeigen
@@ -19,7 +19,6 @@
# THE SOFTWARE.
#-------------------------------------elf_test--------------------------------------#
cmake_minimum_required(VERSION 3.5.1)
# This is unit test for amd::Elf.
# The test is on top of rocclr, so rocclr must be built and installed firstly.
# This file is seperate from cmake file of rocclr to prevent interference.