# Find includes in corresponding build directories set(CMAKE_INCLUDE_CURRENT_DIR ON) # Instruct CMake to run moc automatically when needed. set(CMAKE_AUTOMOC ON) set(CMAKE_AUTOUIC ON) set(CMAKE_AUTORCC ON) set(srclist # main main.cpp browser.cpp browser.h session.cpp session.h util.cpp util.h # resources (icons, etc) ${PROJECT_SOURCE_DIR}/data/resources.qrc # main window mainwindow/mainwindow.cpp mainwindow/mainwindow.h mainwindow/mainwindow.ui mainwindow/widgets/dockwidget.cpp mainwindow/widgets/dockwidget.h mainwindow/widgets/navigationbar.cpp mainwindow/widgets/navigationbar.h mainwindow/widgets/searchform.cpp mainwindow/widgets/searchform.h mainwindow/widgets/searchform.ui # subwindow subwindow/subwindow.cpp subwindow/subwindow.h subwindow/tabwidget.cpp subwindow/tabwidget.h # webengine webengine/urlinterceptor.cpp webengine/urlinterceptor.h webengine/webpage.cpp webengine/webpage.h webengine/webview.cpp webengine/webview.h # plugin interfaces plugin.h ) # if you are using a custom build location for breakpad: #if(Breakpad) # link_directories("${BREAKPAD_LIBRARY_DIRS}") #endif() if(${CMAKE_SYSTEM_NAME} MATCHES "Windows") add_executable(${poi_exe} WIN32 ${srclist} ${PROJECT_SOURCE_DIR}/data/windows.rc) else() add_executable(${poi_exe} ${srclist}) endif() target_include_directories(${poi_exe} PRIVATE ${Boost_INCLUDE_DIRS} PRIVATE ${PROJECT_SOURCE_DIR}/3rd-party PRIVATE ${PROJECT_SOURCE_DIR}/lib PRIVATE ${PROJECT_SOURCE_DIR}/plugins ) target_link_libraries(${poi_exe} Qt5::Core Qt5::Widgets Qt5::Concurrent Qt5::WebEngineWidgets ${Boost_LIBRARIES} SingleApplication about addressbar configuration bookmarks downloads web urlfilter ) if(Breakpad) find_package(Threads REQUIRED) target_link_libraries(${poi_exe} Threads::Threads ${BREAKPAD_LIBRARIES}) target_include_directories(${poi_exe} PRIVATE ${BREAKPAD_INCLUDE_DIRS}) target_compile_options(${poi_exe} PRIVATE ${BREAKPAD_CFLAGS_OTHER}) target_compile_definitions(${poi_exe} PRIVATE BreakpadEnabled) endif() if(Plasma) target_link_libraries(${poi_exe} KF5::WindowSystem) target_compile_definitions(${poi_exe} PRIVATE PLASMA_BLUR # give the main window a translucent background and blur ) endif(Plasma) target_compile_definitions(${poi_exe} PRIVATE QAPPLICATION_CLASS=QApplication PRIVATE POI_NAME=\"${poi_name}\" PRIVATE QTBUG_65223_WORKAROUND #PRIVATE QTBUG_68224_WORKAROUND ) install(TARGETS ${poi_exe} RUNTIME DESTINATION ${installPath_bin} CONFIGURATIONS Release)