mirror of https://github.com/cutefishos/core
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
404 B
CMake
18 lines
404 B
CMake
project(cutefish-cpufreq)
|
|
set(TARGET cutefish-cpufreq)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
)
|
|
|
|
add_executable(${TARGET} ${SOURCES} ${DBUS_SOURCES})
|
|
target_link_libraries(${TARGET}
|
|
Qt5::Core
|
|
Qt5::Quick
|
|
Qt5::DBus
|
|
Qt5::X11Extras
|
|
)
|
|
|
|
install(TARGETS ${TARGET} DESTINATION ${CMAKE_INSTALL_BINDIR})
|
|
install(FILES org.cutefish.cpufreq.pkexec.policy DESTINATION /usr/share/polkit-1/actions/)
|