Move wayland utils to shared utils directory
This commit is contained in:
parent
2111facfcb
commit
e0074d6078
5 changed files with 8 additions and 8 deletions
|
@ -13,3 +13,11 @@ target_sources(kwin PRIVATE
|
||||||
xcbutils.cpp
|
xcbutils.cpp
|
||||||
xcursortheme.cpp
|
xcursortheme.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
||||||
|
target_sources(kwin PRIVATE executable_path_proc.cpp)
|
||||||
|
elseif(CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
|
||||||
|
target_sources(kwin PRIVATE executable_path_sysctl.cpp)
|
||||||
|
else()
|
||||||
|
message(FATAL_ERROR "Unsupported platform ${CMAKE_SYSTEM_NAME}")
|
||||||
|
endif()
|
||||||
|
|
|
@ -301,14 +301,6 @@ target_sources(kwin PRIVATE
|
||||||
xwaylandshell_v1.cpp
|
xwaylandshell_v1.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
|
||||||
target_sources(kwin PRIVATE utils/executable_path_proc.cpp)
|
|
||||||
elseif(CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
|
|
||||||
target_sources(kwin PRIVATE utils/executable_path_sysctl.cpp)
|
|
||||||
else()
|
|
||||||
message(FATAL_ERROR "Unsupported platform ${CMAKE_SYSTEM_NAME}")
|
|
||||||
endif()
|
|
||||||
|
|
||||||
install(FILES
|
install(FILES
|
||||||
appmenu.h
|
appmenu.h
|
||||||
blur.h
|
blur.h
|
||||||
|
|
Loading…
Reference in a new issue