ladybird/Userland/Applications/Assistant/CMakeLists.txt
Spencer Dixon 66c13edb98 Userland: Add new app called Assistant
'Assistant' is similar to macOS spotlight where you can quickly open a
text input, start typing, and hit 'enter' to launch apps or open
directories.
2021-06-28 16:29:02 +02:00

15 lines
259 B
CMake

serenity_component(
Assistant
RECOMMENDED
TARGETS Assistant
)
set(SOURCES
Providers.cpp
FuzzyMatch.cpp
main.cpp
)
serenity_app(Assistant ICON app-run)
target_link_libraries(Assistant LibCore LibDesktop LibGUI LibJS LibThreading)