mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
9ce9467dd7
Downgrade to 3.16 that ships with Ubuntu 20.04 Fix QML modules that does not exists ( cmake on Windows just ignores this lol)
60 lines
1.3 KiB
CMake
60 lines
1.3 KiB
CMake
project(ScreenPlaySysInfo)
|
|
|
|
set(CMAKE_AUTORCC ON)
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
find_package(
|
|
Qt5
|
|
COMPONENTS Quick
|
|
Core
|
|
REQUIRED)
|
|
|
|
|
|
set(src screenplaysysinfo_plugin.cpp
|
|
sysinfo.cpp
|
|
cpu.cpp
|
|
ram.cpp
|
|
storage.cpp)
|
|
set(headers screenplaysysinfo_plugin.h
|
|
sysinfo.h
|
|
cpu.h
|
|
ram.h
|
|
mathhelper.h
|
|
storage.h)
|
|
|
|
add_library(${PROJECT_NAME} ${src} ${headers})
|
|
|
|
target_link_libraries(${PROJECT_NAME}
|
|
PRIVATE
|
|
Qt5::Core
|
|
Qt5::Quick)
|
|
|
|
|
|
# QML module deployment
|
|
set(URI "ScreenPlay/Sysinfo")
|
|
string(REPLACE "." "/" TARGETPATH ${URI})
|
|
if (NOT DEFINED QT_QMAKE_EXECUTABLE)
|
|
get_target_property (QT_QMAKE_EXECUTABLE Qt5::qmake IMPORTED_LOCATION)
|
|
if (NOT QT_QMAKE_EXECUTABLE)
|
|
message(FATAL_ERROR "Cannot find qmake")
|
|
endif()
|
|
endif()
|
|
|
|
execute_process(COMMAND ${QT_QMAKE_EXECUTABLE} -query QT_INSTALL_QML OUTPUT_VARIABLE QT_INSTALL_QML_RAW)
|
|
string(STRIP ${QT_INSTALL_QML_RAW} QT_INSTALL_QML)
|
|
set(DESTDIR "${QT_INSTALL_QML}/${TARGETPATH}")
|
|
message("DESTDIR ${DESTDIR}")
|
|
|
|
install(FILES
|
|
qmldir
|
|
DESTINATION
|
|
${DESTDIR} )
|
|
|
|
|
|
# Copies ScreenPlaySysInfo.* into qt qml plugins folder
|
|
add_custom_command(
|
|
TARGET ${PROJECT_NAME}
|
|
POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E copy $<TARGET_FILE:ScreenPlaySysInfo>
|
|
${DESTDIR}/$<TARGET_FILE_NAME:ScreenPlaySysInfo>)
|