File: CMakeLists.txt

package info (click to toggle)
qtbase-opensource-src-gles 5.15.8%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 346,596 kB
  • sloc: cpp: 2,033,865; ansic: 304,070; xml: 117,563; python: 9,430; java: 7,393; asm: 4,023; perl: 2,047; sh: 1,939; yacc: 1,687; lex: 1,333; javascript: 878; makefile: 279; objc: 70
file content (29 lines) | stat: -rw-r--r-- 1,009 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

cmake_minimum_required(VERSION 2.8)

project(test_add_resource_options)

if (EXISTS "${CMAKE_CURRENT_LIST_DIR}/FindPackageHints.cmake")
    include("${CMAKE_CURRENT_LIST_DIR}/FindPackageHints.cmake")
endif()

find_package(Qt5Core REQUIRED HINTS ${Qt5Tests_PREFIX_PATH})

include_directories(${Qt5Core_INCLUDE_DIRS})

add_definitions(${Qt5Core_DEFINITIONS})

qt5_wrap_cpp(moc_files myobject.h)

# Test options. The -binary option generates a binary to dlopen instead of
# a source file to compile. The compiler will consider it garbage when used
# in the add_executable call.
qt5_add_resources(rcc_files "test_macro_options.qrc" OPTIONS -binary)

# Test if OPTIONS can handle a quoted parameter. CMake would fail immediately!
qt5_add_resources(rcc_files_quoted_option "test_macro_options.qrc" OPTIONS -root "/")

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt5Core_EXECUTABLE_COMPILE_FLAGS}")

add_executable(myobject myobject.cpp ${moc_files} ${rcc_files})
target_link_libraries(myobject ${Qt5Core_LIBRARIES})