forked from quickshell/quickshell
all: optimize build
This commit is contained in:
parent
1168879d6d
commit
7ffce72b31
51 changed files with 1526 additions and 1277 deletions
23
src/launch/CMakeLists.txt
Normal file
23
src/launch/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
find_package(CLI11 CONFIG REQUIRED)
|
||||
|
||||
qt_add_library(quickshell-launch STATIC
|
||||
parsecommand.cpp
|
||||
command.cpp
|
||||
launch.cpp
|
||||
main.cpp
|
||||
)
|
||||
|
||||
target_link_libraries(quickshell-launch PRIVATE
|
||||
Qt::Quick Qt::Widgets CLI11::CLI11 quickshell-build
|
||||
)
|
||||
|
||||
qs_add_pchset(launch
|
||||
DEPENDENCIES Qt::Core CLI11::CLI11
|
||||
HEADERS
|
||||
<CLI/App.hpp>
|
||||
<qcoreapplication.h>
|
||||
)
|
||||
|
||||
qs_pch(quickshell-launch SET launch)
|
||||
|
||||
target_link_libraries(quickshell PRIVATE quickshell-launch)
|
||||
Loading…
Add table
Add a link
Reference in a new issue