cmake_minimum_required(VERSION 3.5)

project(littlesnitch LANGUAGES CXX)

set(CMAKE_INCLUDE_CURRENT_DIR ON)
link_directories(/usr/local/lib)

set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

# QtCreator supports the following variables for Android, which are identical to qmake Android variables.
# Check http://doc.qt.io/qt-5/deployment-android.html for more information.
# They need to be set before the find_package(Qt5 ...) call.

#if(ANDROID)
#    set(ANDROID_PACKAGE_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/android")
#    if (ANDROID_ABI STREQUAL "armeabi-v7a")
#        set(ANDROID_EXTRA_LIBS
#            ${CMAKE_CURRENT_SOURCE_DIR}/path/to/libcrypto.so
#            ${CMAKE_CURRENT_SOURCE_DIR}/path/to/libssl.so)
#    endif()
#endif()

find_package(Qt5 COMPONENTS Widgets REQUIRED)
find_package(cppzmq REQUIRED)
find_package(nlohmann_json REQUIRED)
find_package(SQLite3 REQUIRED)

add_executable(littlesnitch
    main.cpp
    mainwindow.cpp
    networkthread.cpp
    session.cpp
    httpflow.cpp
    historymodel.cpp
    mainwindow.h
    httpflow.h
    networkthread.h
    session.h
    includes.h
    historymodel.h
    mainwindow.ui
)

target_link_libraries(littlesnitch PRIVATE Qt5::Widgets cppzmq sqlite3)
