Merge pull request #3284 from taosdata/feature/os

minor changes
This commit is contained in:
Shengliang Guan 2020-08-28 15:48:54 +08:00 committed by GitHub
commit 46d0756242
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -40,7 +40,11 @@ ENDIF ()
IF (DEFINED CPUTYPE) IF (DEFINED CPUTYPE)
SET(TD_VER_CPUTYPE ${CPUTYPE}) SET(TD_VER_CPUTYPE ${CPUTYPE})
ELSE () ELSE ()
SET(TD_VER_CPUTYPE "x64") IF (TD_WINDOWS_32)
SET(TD_VER_CPUTYPE "x86")
ELSE ()
SET(TD_VER_CPUTYPE "x64")
ENDIF ()
ENDIF () ENDIF ()
IF (DEFINED OSTYPE) IF (DEFINED OSTYPE)