File: CMakeLists.txt

package info (click to toggle)
qtremoteobjects-everywhere-src 5.15.8-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,196 kB
  • sloc: cpp: 23,858; ansic: 39; sh: 35; makefile: 24
file content (12 lines) | stat: -rw-r--r-- 339 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
cmake_minimum_required(VERSION 2.8)

project(test_qremoteobjects_module)

find_package(Qt5RemoteObjects REQUIRED)

include_directories(${CMAKE_CURRENT_BINARY_DIR})

set(MAIN_SRCS main.cpp)
qt5_generate_repc(MAIN_SRCS ../../integration/pod.rep REPLICA)
add_executable(mainapp ${MAIN_SRCS})
target_link_libraries(mainapp Qt5::RemoteObjects)