Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions projects/hipblas-common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,17 @@
# SPDX-License-Identifier: MIT

cmake_minimum_required(VERSION 3.11)
project(hipblas-common VERSION 1.2.0 LANGUAGES CXX)
project(hipblas-common LANGUAGES CXX)

list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")

include(dependencies)
include(GNUInstallDirs)
include(CMakePackageConfigHelpers)

set(VERSION_STRING "1.3.0")
rocm_setup_version(VERSION ${VERSION_STRING})
Comment thread
TorreZuk marked this conversation as resolved.

Comment thread
TorreZuk marked this conversation as resolved.
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
if(WIN32)
set(CMAKE_INSTALL_PREFIX "C:/hipSDK" CACHE PATH "Install path prefix" FORCE)
Expand Down Expand Up @@ -51,9 +54,6 @@ set(HIPBLAS_CONFIG_DIR "\${CPACK_PACKAGING_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDI
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.md")
set(CPACK_RPM_PACKAGE_LICENSE "MIT")

set(VERSION_STRING "1.3.0")
rocm_setup_version(VERSION ${PROJECT_VERSION})

rocm_create_package(
NAME hipblas-common
DESCRIPTION "Common files for hipBLAS libraries"
Expand Down