# Copyright (c) 2017-present, Status Research and Development GmbH. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. An additional grant # of patent rights can be found in the PATENTS file in the same directory. set(CMAKE_AUTOMOC ON) set(CMAKE_AUTORCC ON) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(APP_NAME "reportApp") set(MAIN_CPP_SOURCE reportpublisher.cpp main.cpp) add_executable( ${APP_NAME} ${MAIN_CPP_SOURCE} main.qrc ) set(USED_QT_MODULES Core Qml Quick WebSockets Widgets Svg) qt5_use_modules(${APP_NAME} ${USED_QT_MODULES}) set(REACT_NATIVE_DESKTOP_EXTERNAL_PROJECT_DEPS ${REACT_NATIVE_DESKTOP_EXTERNAL_PROJECT_DEPS} reportApp PARENT_SCOPE)