2017-01-02 00:29:46 +05:30
|
|
|
project(systeminfo)
|
|
|
|
|
|
|
|
find_package(Qt5Core)
|
|
|
|
|
|
|
|
set(systeminfo_SOURCES
|
|
|
|
include/sys.h
|
2018-03-12 03:30:54 +05:30
|
|
|
include/distroutils.h
|
|
|
|
src/distroutils.cpp
|
2017-01-02 00:29:46 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
if (WIN32)
|
2018-07-15 18:21:05 +05:30
|
|
|
list(APPEND systeminfo_SOURCES src/sys_win32.cpp)
|
2017-01-02 00:29:46 +05:30
|
|
|
elseif (UNIX)
|
2018-07-15 18:21:05 +05:30
|
|
|
if(APPLE)
|
|
|
|
list(APPEND systeminfo_SOURCES src/sys_apple.cpp)
|
|
|
|
else()
|
|
|
|
list(APPEND systeminfo_SOURCES src/sys_unix.cpp)
|
|
|
|
endif()
|
2017-01-02 00:29:46 +05:30
|
|
|
endif()
|
|
|
|
|
|
|
|
add_library(systeminfo STATIC ${systeminfo_SOURCES})
|
2018-06-01 19:50:33 +05:30
|
|
|
target_link_libraries(systeminfo Qt5::Core Qt5::Gui Qt5::Network)
|
2017-01-02 00:29:46 +05:30
|
|
|
target_include_directories(systeminfo PUBLIC include)
|
|
|
|
|
|
|
|
include (UnitTest)
|
|
|
|
add_unit_test(sys
|
2018-07-15 18:21:05 +05:30
|
|
|
SOURCES src/sys_test.cpp
|
|
|
|
LIBS systeminfo
|
2017-01-02 00:29:46 +05:30
|
|
|
)
|