~yofel/kile/master

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: Michel Ludwig
  • Date: 2017-12-29 16:55:49 UTC
  • Revision ID: git-v1:d3b90c64c6321e6e402995d375fff2b113b8ceaf
Ensure that "RelWithDebInfo" builds are built with -DQT_MESSAGELOGCONTEXT to improve debug output

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
  -DQT_NO_SIGNALS_SLOTS_KEYWORDS
85
85
)
86
86
 
 
87
if(CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo")
 
88
  add_definitions(-DQT_MESSAGELOGCONTEXT)
 
89
endif(CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo")
 
90
 
87
91
add_subdirectory(doc)
88
92
add_subdirectory(src)
89
93