4
0
mirror of https://github.com/QuasarApp/CMake.git synced 2025-05-10 00:19:36 +00:00
CMake/Version.cmake
2019-08-31 18:58:48 +03:00

19 lines
436 B
CMake

#
# Copyright (C) 2018-2019 QuasarApp.
# Distributed under the MIT software license, see the accompanying
# Everyone is permitted to copy and distribute verbatim copies
# of this license document, but changing it is not allowed.
#
function(setVersion maj min rev)
SET_TARGET_PROPERTIES(
${PROJECT_NAME}
PROPERTIES
VERSION "${maj}.${min}.${rev}"
SOVERSION "${maj}.${min}.${rev}"
)
endfunction()