Files
UltimMC_Launcher/libraries/ganalytics/CMakeLists.txt
Petr Mrázek 2ec15c32e4 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.
2016-11-20 12:04:29 +01:00

11 lines
328 B
CMake

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)