Converted project to CPP and use Qt instead of Gtk.
This commit is contained in:
parent
22c991cd26
commit
966314dae7
10 changed files with 253 additions and 641 deletions
19
CMakeLists.txt
Normal file
19
CMakeLists.txt
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
cmake_minimum_required(VERSION 3.10)
|
||||
project(spacetray)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
set(CMAKE_AUTOUIC ON)
|
||||
set(CMAKE_AUTORCC ON)
|
||||
|
||||
find_package(Qt5 REQUIRED COMPONENTS Widgets Network)
|
||||
|
||||
add_executable(spacetray
|
||||
main.cpp
|
||||
spacetray.cpp
|
||||
spacetray.h
|
||||
)
|
||||
|
||||
target_link_libraries(spacetray Qt5::Widgets Qt5::Network)
|
||||
Loading…
Add table
Add a link
Reference in a new issue