19 lines
383 B
CMake
19 lines
383 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
project(gitmoji VERSION 1.0.0)
|
|
|
|
find_package(Albert REQUIRED)
|
|
|
|
albert_plugin(
|
|
INCLUDE
|
|
INTERFACE include
|
|
PRIVATE include/albert/plugin
|
|
QT
|
|
Concurrent Widgets
|
|
)
|
|
|
|
# Add the resource file manually
|
|
qt6_add_resources(RESOURCES src/gitmojis.qrc)
|
|
|
|
# Add resources to the target
|
|
target_sources(gitmoji PRIVATE ${RESOURCES})
|