feat: rename project to quickshell

This commit is contained in:
outfoxxed 2024-02-12 02:16:22 -08:00
parent ae5363a351
commit 5de0ae095b
Signed by untrusted user: outfoxxed
GPG key ID: 4C88A185FB89301E
10 changed files with 54 additions and 55 deletions

View file

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.20)
project(qtshell VERSION "0.0.1")
project(quickshell VERSION "0.0.1")
set(QT_MIN_VERSION "6.6.0")
set(CMAKE_CXX_STANDARD 20)
@ -27,7 +27,7 @@ endif()
qt_standard_project_setup(REQUIRES 6.6)
qt_add_executable(qtshell
qt_add_executable(quickshell
src/cpp/main.cpp
src/cpp/shell.cpp
src/cpp/variants.cpp
@ -40,16 +40,16 @@ qt_add_executable(qtshell
src/cpp/watcher.cpp
)
qt_add_qml_module(qtshell URI QtShell)
qt_add_qml_module(quickshell URI QuickShell)
# qml type registration requires this
target_include_directories(qtshell PRIVATE src/cpp)
target_include_directories(quickshell PRIVATE src/cpp)
target_link_libraries(qtshell PRIVATE Qt6::Gui Qt6::Qml Qt6::Quick Qt6::QuickControls2)
target_link_libraries(quickshell PRIVATE Qt6::Gui Qt6::Qml Qt6::Quick Qt6::QuickControls2)
if (LAYERSHELL)
target_link_libraries(qtshell PRIVATE LayerShellQtInterface)
target_compile_definitions(qtshell PRIVATE CONF_LAYERSHELL)
target_link_libraries(quickshell PRIVATE LayerShellQtInterface)
target_compile_definitions(quickshell PRIVATE CONF_LAYERSHELL)
target_sources(qtshell PRIVATE src/cpp/layershell.cpp)
target_sources(quickshell PRIVATE src/cpp/layershell.cpp)
endif()