Warning, /sdk/dferry/applications/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 include_directories(${CMAKE_SOURCE_DIR}/connection ${CMAKE_SOURCE_DIR}/serialization)
0002 
0003 add_executable(dfer-bin dfer.cpp) # "dfer" is already the target name of the library
0004 SET_TARGET_PROPERTIES(dfer-bin PROPERTIES OUTPUT_NAME dfer) # call the output binary "dfer" anyway
0005 target_link_libraries(dfer-bin dfer)
0006 install(TARGETS dfer-bin DESTINATION ${CMAKE_INSTALL_BINDIR})
0007 
0008 if (DFERRY_BUILD_ANALYZER)
0009     find_package(Qt5Widgets)
0010     if (Qt5Widgets_FOUND)
0011         add_subdirectory(analyzer)
0012     else()
0013         message(STATUS "Not building the dfer-analyzer GUI because Qt5 was not found.")
0014     endif()
0015 endif()