You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
653 B
16 lines
653 B
5 months ago
|
macro(saribbon_set_bin_name _var)
|
||
|
set(DA_MIN_QT_VERSION 5.14)
|
||
|
find_package(QT NAMES Qt6 Qt5 COMPONENTS Core REQUIRED)
|
||
|
########################################################
|
||
|
# 平台判断
|
||
|
########################################################
|
||
|
if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "4")
|
||
|
set(_platform_name "x86")
|
||
|
else()
|
||
|
set(_platform_name "x64")
|
||
|
endif()
|
||
|
########################################################
|
||
|
# 安装路径设置
|
||
|
########################################################
|
||
|
set(_var bin_qt${QT_VERSION}_${CMAKE_BUILD_TYPE}_${_platform_name})
|
||
|
endmacro(damacro_set_bin_name)
|