summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/global/qlogging/CMakeLists.txt
blob: 7c74656215fa0f63e1cbd11eda19f512bb8e6168 (plain)
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
if(NOT WINRT)
    add_qt_executable(qlogging_helper
        NO_INSTALL # special case
        OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} # special case
        SOURCES app/main.cpp
        DEFINES QT_MESSAGELOGCONTEXT
        LIBRARIES Qt::Core)

    #special case begin
    # Fixes required for the backtrace stack to be correct
    if (${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU" AND NOT MINGW)
        target_link_options(qlogging_helper PRIVATE -rdynamic)
    endif()
    set_target_properties(qlogging_helper PROPERTIES CXX_VISIBILITY_PRESET default)
    # special case end
endif()

add_qt_test(tst_qlogging SOURCES tst_qlogging.cpp
    DEFINES
        QT_MESSAGELOGCONTEXT
        QT_DISABLE_DEPRECATED_BEFORE=0
        HELPER_BINARY="${CMAKE_CURRENT_BINARY_DIR}/qlogging_helper" # special case
)

target_compile_definitions(tst_qlogging PRIVATE QT_CMAKE_BUILD) # special case # to fix the binary name