NOISSUE import google analytics from third party

See: https://github.com/HSAnet/qt-google-analytics

Sadly, the API and its internals are not acceptable and it needs changes
upstream likely wouldn't allow.
This commit is contained in:
Petr Mrázek
2016-11-20 12:04:29 +01:00
parent 69be23c5f6
commit 2ec15c32e4
6 changed files with 1100 additions and 0 deletions

View File

@ -0,0 +1,10 @@
project(ganalytics)
find_package(Qt5Core)
find_package(Qt5Gui)
find_package(Qt5Network)
add_library(ganalytics STATIC ganalytics.cpp ganalytics.h)
qt5_use_modules(ganalytics Core Gui Network)
target_include_directories(ganalytics PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
target_compile_definitions(ganalytics PRIVATE -DQT_GUI_LIB)