Skip to content

Commit 112fb7b

Browse files
author
toddming
committed
#修改: 主题配置设置时机
#修复: 分割式窗口中错误指定父对象问题 #新增: 导航栏分类标签 #更新: 导航示例 Signed-off-by: toddming <toddming@qq.com>
1 parent 8644294 commit 112fb7b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+1328
-752
lines changed

CMakeLists.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,15 @@ endif()
7676
# 获取编译器信息
7777
set(COMPILER_INFO ${CMAKE_CXX_COMPILER_ID})
7878

79+
# 简单区分 32/64 位
80+
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
81+
set(ARCH_BIT "x64")
82+
else()
83+
set(ARCH_BIT "x86")
84+
endif()
85+
7986
# 拼接最终字符串
80-
set(QT_AND_COMPILER_STRING "${QT_VERSION_STRING}_${COMPILER_INFO}")
87+
set(QT_AND_COMPILER_STRING "${QT_VERSION_STRING}_${COMPILER_INFO}_${ARCH_BIT}")
8188

8289
# 输出
8390
message(STATUS "Detected build environment: ${QT_AND_COMPILER_STRING}")
-1.17 MB
Binary file not shown.
-1.17 MB
Binary file not shown.
4.94 MB
Binary file not shown.
361 KB
Binary file not shown.
130 KB
Binary file not shown.
2.24 MB
Binary file not shown.
92.5 KB
Binary file not shown.
36 KB
Binary file not shown.
1.15 MB
Binary file not shown.

0 commit comments

Comments
 (0)