mirror of
https://github.com/hyprwm/hyprlang.git
synced 2024-11-17 02:25:59 +01:00
cmakelists: make library shared
This commit is contained in:
parent
1c46cc857b
commit
b355124950
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ set(CMAKE_CXX_STANDARD 23)
|
||||||
|
|
||||||
file(GLOB_RECURSE SRCFILES CONFIGURE_DEPENDS "src/*.cpp" "include/hyprlang.hpp")
|
file(GLOB_RECURSE SRCFILES CONFIGURE_DEPENDS "src/*.cpp" "include/hyprlang.hpp")
|
||||||
|
|
||||||
add_library(hyprlang ${SRCFILES})
|
add_library(hyprlang SHARED ${SRCFILES})
|
||||||
target_include_directories( hyprlang
|
target_include_directories( hyprlang
|
||||||
PUBLIC "./include"
|
PUBLIC "./include"
|
||||||
PRIVATE "./src"
|
PRIVATE "./src"
|
||||||
|
|
Loading…
Reference in a new issue