mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-18 03:56:41 +00:00
16 lines
325 B
CMake
16 lines
325 B
CMake
# The LLVM Version number information
|
|
|
|
if(NOT DEFINED LLVM_VERSION_MAJOR)
|
|
set(LLVM_VERSION_MAJOR 19)
|
|
endif()
|
|
if(NOT DEFINED LLVM_VERSION_MINOR)
|
|
set(LLVM_VERSION_MINOR 1)
|
|
endif()
|
|
if(NOT DEFINED LLVM_VERSION_PATCH)
|
|
set(LLVM_VERSION_PATCH 0)
|
|
endif()
|
|
if(NOT DEFINED LLVM_VERSION_SUFFIX)
|
|
set(LLVM_VERSION_SUFFIX)
|
|
endif()
|
|
|