Warning, /graphics/kdiagram/tests/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 add_subdirectory( Gantt )
0002 
0003 include_directories(
0004     ${CMAKE_SOURCE_DIR}/src/KChart
0005     ${CMAKE_SOURCE_DIR}/src/KChart/include
0006     ${CMAKE_SOURCE_DIR}/src/KChart/Cartesian
0007     ${CMAKE_SOURCE_DIR}/src/KChart/Cartesian/DiagramFlavors
0008     ${CMAKE_SOURCE_DIR}/src/KChart/Polar
0009     ${CMAKE_SOURCE_DIR}/src/KChart/Ternary
0010 )
0011 remove_definitions(
0012     -DQT_NO_KEYWORDS
0013     -DQT_NO_SIGNALS_SLOTS_KEYWORDS
0014     -DQT_NO_CAST_FROM_ASCII
0015 )
0016 
0017 # Disabled for Windows cause compiling the RootIndex and DelayedData samples
0018 # with mingw or nmake results in a Q_ASSERT in qmake (cause QList.first()
0019 # is used while the QList is empty, removing the required
0020 # OBJECTS_DIR from the RootIndex.pro fixes it) if qmake was
0021 # compiled with debug enabled or in a crash if not.
0022 if(NOT WIN32)
0023     add_subdirectory( DelayedData )
0024     add_subdirectory( RootIndex )
0025 endif()