First test of QT Remote Monitor WASM
This commit is contained in:
21
CMakeLists.txt
Normal file
21
CMakeLists.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
project(wsapp VERSION 1.0 LANGUAGES CXX)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
|
||||
find_package(Qt6 REQUIRED COMPONENTS Core Widgets WebSockets)
|
||||
|
||||
add_executable(wsapp
|
||||
main.cpp
|
||||
GamesPanel.cpp GamesPanel.h
|
||||
SettingsTree.cpp SettingsTree.h
|
||||
VersionsPanel.cpp VersionsPanel.h
|
||||
WebSocketController.cpp WebSocketController.h
|
||||
)
|
||||
|
||||
target_link_libraries(wsapp PRIVATE
|
||||
Qt6::Core
|
||||
Qt6::Widgets
|
||||
Qt6::WebSockets
|
||||
)
|
||||
Reference in New Issue
Block a user