mirror of
https://github.com/hyprwm/hyprlang.git
synced 2024-11-17 02:25:59 +01:00
CMake: add SOVERSION
This commit is contained in:
parent
4c28464a7d
commit
8118461c52
1 changed files with 4 additions and 1 deletions
|
@ -24,7 +24,10 @@ target_include_directories( hyprlang
|
||||||
PUBLIC "./include"
|
PUBLIC "./include"
|
||||||
PRIVATE "./src"
|
PRIVATE "./src"
|
||||||
)
|
)
|
||||||
set_target_properties(hyprlang PROPERTIES PUBLIC_HEADER include/hyprlang.hpp)
|
set_target_properties(hyprlang PROPERTIES
|
||||||
|
VERSION ${HYPRLANG_VERSION}
|
||||||
|
SOVERSION 0
|
||||||
|
PUBLIC_HEADER include/hyprlang.hpp)
|
||||||
|
|
||||||
install(TARGETS hyprlang)
|
install(TARGETS hyprlang)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue